/* ============================================
   MESA LLENA — DESIGN TOKENS
   Editá esta sección para cambiar la marca.
   ============================================ */
:root {
  /* Colores de marca (extraídos del sitio original) */
  --color-bg: #F5F1E8;
  --color-bg-light: #FDF9F0;
  --color-surface: #E8E2D5;
  --color-text: #1C1412;
  --color-text-muted: #7A6E68;
  --color-accent: #B8381B;        /* terracota Mesa Llena */
  --color-accent-hover: #9E2F16;
  --color-gold: #C9A66B;
  --color-gold-dark: #B8955A;
  --color-border: #E0D8C8;
  --color-wa: #25D366;
  --color-success-bg: #d9ead9;
  --color-success-text: #15803D;
  --color-error-bg: #f6dcd6;
  --color-error-text: #9E2F16;

  /* Tipografía */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --fs-h1: clamp(2.1rem, 6vw, 3.8rem);
  --fs-h2: clamp(1.6rem, 3.5vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2.5vw, 1.6rem);
  --fs-body: clamp(1rem, 1.2vw, 1.0625rem);
  --fs-small: 0.875rem;

  /* Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Layout */
  --container-max: 1140px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(28, 20, 18, 0.08);
  --shadow-md: 0 6px 18px rgba(28, 20, 18, 0.12);
  --transition: 200ms ease;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img, picture, video { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-hover); }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-md); }
}
.text-center { text-align: center; }
.muted { color: var(--color-text-muted); }

/* Eyebrow estilo "comanda" de restaurante */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px dashed var(--color-gold);
  background: var(--color-bg-light);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: var(--space-sm);
}

/* ============================================
   HEADER + NAV (mobile-first)
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text);
}
.logo:hover { color: var(--color-text); }
.logo-mark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-bg-light);
  background: var(--color-accent);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.logo-text span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.nav-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 102;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}
.site-nav {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 101;
}
.site-nav.open { transform: translateX(0); }
.site-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}
.site-nav a {
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 500;
}
.site-nav a.active { color: var(--color-accent); }
.lang-toggle { display: flex; gap: 0.25rem; }
.lang-toggle button {
  background: none;
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}
.lang-toggle button.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    transform: none;
    flex-direction: row;
    gap: var(--space-md);
    background: transparent;
  }
  .site-nav ul { flex-direction: row; gap: var(--space-md); }
  .site-nav a { font-size: 0.95rem; }
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }
section { padding: var(--space-lg) 0; }
@media (min-width: 768px) {
  section { padding: var(--space-xl) 0; }
}
.section-alt { background: var(--color-bg-light); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.section-dark { background: var(--color-text); color: var(--color-bg); }
.section-dark h2, .section-dark h3 { color: var(--color-bg-light); }
.section-dark p { color: rgba(245, 241, 232, 0.85); }

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}
.btn:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: #fff; }
.btn-gold {
  background: var(--color-gold);
  color: var(--color-text);
}
.btn-gold:hover { background: var(--color-gold-dark); color: var(--color-text); }
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================
   HERO con mock de chat WhatsApp
   ============================================ */
.hero { padding: var(--space-lg) 0; }
.hero-grid {
  display: grid;
  gap: var(--space-md);
  align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: var(--space-xl) 0; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--space-lg); }
}
.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 32rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}
.hero-badges span::before {
  content: "✓ ";
  color: var(--color-accent);
  font-weight: 700;
}

/* Mock de chat — el agente respondiendo a las 23:47 */
.chat-mock {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-text);
  color: var(--color-bg-light);
  padding: 0.7rem 1rem;
  font-size: var(--fs-small);
}
.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.chat-header small { display: block; opacity: 0.7; font-size: 0.7rem; }
.chat-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background:
    radial-gradient(rgba(201, 166, 107, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
}
.bubble {
  max-width: 85%;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
}
.bubble time {
  display: block;
  font-size: 0.62rem;
  color: var(--color-text-muted);
  text-align: right;
  margin-top: 0.2rem;
}
.bubble-in {
  background: #fff;
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}
.bubble-out {
  background: #e3f6da;
  border-bottom-right-radius: 3px;
  align-self: flex-end;
}
.chat-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  padding: 0.6rem 1rem 0.9rem;
  border-top: 1px dashed var(--color-border);
  background: var(--color-bg-light);
}

/* ============================================
   CARDS genéricas
   ============================================ */
.cards-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .cards-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); } }
@media (min-width: 1024px) { .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card .icon { font-size: 1.6rem; }
.card h3 { margin-bottom: 0.25rem; }
.card p { color: var(--color-text-muted); font-size: 0.95rem; }
.card .card-link { margin-top: auto; font-weight: 600; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.price-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}
.price-tag-top {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.price-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}
.price-patagonia {
  font-size: var(--fs-small);
  color: var(--color-accent);
  font-weight: 600;
}
.price-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
  flex-grow: 1;
}
.price-card ul li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 0.5rem;
}
.price-note {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* Banner precio fundador */
.founder-banner {
  background: var(--color-text);
  color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: grid;
  gap: var(--space-sm);
  border: 1px solid var(--color-gold);
}
@media (min-width: 860px) {
  .founder-banner { grid-template-columns: 1fr auto; align-items: center; }
}
.founder-banner h3 { color: var(--color-gold); margin-bottom: 0.25rem; }
.founder-banner p { color: rgba(245, 241, 232, 0.85); font-size: 0.95rem; margin: 0; }

/* ============================================
   DEMO / CASO REAL
   ============================================ */
.demo-panel {
  display: grid;
  gap: var(--space-md);
  align-items: center;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
@media (min-width: 860px) {
  .demo-panel { grid-template-columns: 1fr 1fr; padding: var(--space-lg); }
}
.demo-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.demo-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-surface);
  padding: 0.45rem 0.75rem;
  font-size: 0.7rem;
  color: var(--color-text-muted);
}
.demo-frame-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-border);
}
.demo-frame-body {
  padding: var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.demo-frame-body .demo-title { font-family: var(--font-heading); font-size: 1.3rem; }

/* ============================================
   PROCESO (3 pasos)
   ============================================ */
.steps {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding-top: var(--space-md);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.faq-item summary::after {
  content: "+";
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================
   SOBRE MÍ
   ============================================ */
.about-grid {
  display: grid;
  gap: var(--space-md);
  align-items: start;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 320px 1fr; gap: var(--space-lg); }
}
.about-photo {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-photo-placeholder {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-gold);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--space-sm);
  background: var(--color-bg-light);
}
.quote-block {
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-sm);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-text);
  margin: var(--space-sm) 0;
}

/* ============================================
   FORMULARIO
   ============================================ */
.contact-grid {
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-lg); }
}
.form-group { margin-bottom: var(--space-sm); }
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font: inherit;
  background: var(--color-bg-light);
  color: var(--color-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}
.form-status {
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius);
}
.form-status.success { background: var(--color-success-bg); color: var(--color-success-text); }
.form-status.error { background: var(--color-error-bg); color: var(--color-error-text); }
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact-aside .card { gap: 0.25rem; }

/* ============================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--color-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-lg) 0 var(--space-md);
}
.site-footer a { color: var(--color-gold); }
.site-footer a:hover { color: var(--color-gold-dark); }
.footer-grid { display: grid; gap: var(--space-md); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer h4 {
  color: var(--color-bg-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer p, .site-footer li { font-size: 0.95rem; color: rgba(245, 241, 232, 0.8); }
.site-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-bottom {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  text-align: center;
  font-size: var(--fs-small);
  color: rgba(245, 241, 232, 0.6);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-final .btn { margin-top: var(--space-sm); }

/* ============================================
   BLOG — índice y posts
   ============================================ */
.post-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px dashed var(--color-gold);
  background: var(--color-bg);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.post-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0;
}
.post-card h2 a { color: var(--color-text); }
.post-card h2 a:hover { color: var(--color-accent); }
.post-meta {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}
.post-card .card-link { margin-top: auto; font-weight: 600; }

/* Página de artículo */
.post-header { padding: var(--space-lg) 0 var(--space-sm); }
.post-header h1 { max-width: 18em; }
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: var(--space-lg);
}
.post-content h2 {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px dashed var(--color-border);
}
.post-content h3 { margin-top: var(--space-md); }
.post-content ul { margin: 0 0 var(--space-sm) 1.2rem; padding: 0; }
.post-content li { margin-bottom: 0.4rem; }
.post-content li::marker { color: var(--color-accent); }
.stat-callout {
  background: var(--color-text);
  color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  margin: var(--space-md) 0;
}
.stat-callout strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1.1;
}
.stat-callout span { font-size: 0.95rem; color: rgba(245,241,232,0.85); }
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.92rem;
  background: var(--color-bg-light);
}
.post-content th, .post-content td {
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.post-content th {
  background: var(--color-surface);
  font-weight: 700;
}
.cta-box {
  background: var(--color-bg-light);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-top: var(--space-lg);
}
.cta-box h3 { color: var(--color-accent); }
.back-link {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}


/* ============================================
   CREDENCIALES (Sobre mí)
   ============================================ */
.creds {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.creds h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}
.creds-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.creds-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}
.creds-badge {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: conic-gradient(#4285F4 0 25%, #EA4335 0 50%, #FBBC04 0 75%, #34A853 0 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.creds-badge::after {
  content: "";
  width: 16px; height: 16px;
  background: var(--color-bg-light);
  border-radius: 50%;
}
