/* ============================================================
   SERENZA · landing.css
   Estilos específicos para la landing page pública
   Topbar, botones y wrap están en components/topbar.css (cargado por base.html)
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(180,154,110,.28); }
img, svg { display: block; }

/* ---------- shared type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold);
  display: inline-block;
}
.display {
  font-family: var(--serif); font-weight: 400; color: var(--forest);
  font-size: clamp(46px, 8.5vw, 112px); line-height: 0.95;
  letter-spacing: -0.02em; margin: 0;
}
.display .accent { color: var(--gold); font-style: italic; }
.serif-2 {
  font-family: var(--serif); font-weight: 400; color: var(--forest);
  font-size: var(--fs-h2); line-height: 1.02; letter-spacing: -0.01em; margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding: clamp(140px, 20vh, 220px) 0 clamp(80px, 12vh, 130px);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.hero-eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.pill-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage); background: rgba(94,107,90,.12); padding: 6px 13px; border-radius: 100px;
}
.pill-live .ping { position: relative; width: 7px; height: 7px; }
.pill-live .ping i { position: absolute; inset: 0; border-radius: 50%; background: var(--sage); }
.pill-live .ping i:first-child { animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2.6); opacity: 0; } }
.hero-sub {
  font-family: var(--sans); font-weight: 300; font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65; color: var(--ink-soft); max-width: 46ch; margin: 28px 0 0;
}
.hero-cta { display: flex; align-items: center; gap: 20px; margin-top: 38px; flex-wrap: wrap; }
.hero-note {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 13px; color: var(--ink-faint);
}
.hero-note .dia { color: var(--gold); }

/* hero mockup */
.hero-visual { position: relative; overflow: hidden; }
.hero-visual .float { will-change: transform; }
.arch-bg {
  position: absolute; top: -8%; right: -6%; width: 70%; max-width: 360px;
  opacity: .5; z-index: 0; pointer-events: none;
}
.arch-bg svg { width: 100%; height: auto; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: 2; }
}
@media (max-width: 560px) {
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero-grid { gap: 40px; }
  .hero-cta { gap: 14px; }
  .hero-note { font-size: 12px; }
}

/* ---------- browser mockup ---------- */
.browser {
  background: var(--paper-soft); border: 1px solid var(--paper-deep);
  border-radius: 14px; box-shadow: var(--shadow-md); overflow: hidden; position: relative; z-index: 1;
}
@media (max-width: 480px) {
  .browser { border-radius: 10px; }
  .browser__bar { padding: 10px 12px; }
  .browser__url { font-size: 10px; padding: 5px 10px; }
  .browser__body { min-height: 240px; }
  .app-side { display: none; }
  .app-main { padding: 16px; }
  .app-greet { font-size: 20px; }
  .app-stat .v { font-size: 22px; }
  .app-row .who b { font-size: 14px; }
}
.browser__bar {
  display: flex; align-items: center; gap: 14px; padding: 13px 16px;
  border-bottom: 1px solid var(--paper-deep); background: var(--paper);
}
.browser__dots { display: flex; gap: 7px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; }
.browser__dots i:nth-child(1) { background: #d9b9af; }
.browser__dots i:nth-child(2) { background: var(--sand); }
.browser__dots i:nth-child(3) { background: var(--sage-soft); }
.browser__url {
  flex: 1; background: var(--paper-soft); border: 1px solid var(--paper-deep);
  border-radius: 100px; padding: 6px 16px; font-family: var(--sans); font-size: 12px;
  color: var(--ink-faint); letter-spacing: .02em;
}
.browser__body { display: flex; min-height: 320px; }

/* app skeleton inside browser */
.app-side {
  width: 142px; flex: 0 0 auto; background: var(--forest); padding: 20px 16px;
  display: flex; flex-direction: column; gap: 5px;
}
.app-side .swm { font-family: var(--serif); font-size: 19px; color: var(--paper); letter-spacing: .04em; margin-bottom: 16px; }
.app-nav { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 6px;
  font-family: var(--sans); font-size: 12.5px; color: rgba(243,238,231,.62); }
.app-nav .dia { color: var(--sand); font-size: 9px; }
.app-nav.active { background: rgba(243,238,231,.08); color: var(--paper); }
.app-main { flex: 1; padding: 24px 26px; background: var(--paper); min-width: 0; }
.app-greet { font-family: var(--serif); font-size: 26px; color: var(--forest); line-height: 1.04; }
.app-greet small { display: block; font-family: var(--sans); font-size: 11.5px; font-weight: 300; color: var(--ink-faint); margin-top: 6px; letter-spacing: .01em; }
.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.app-stat { background: var(--paper-soft); border: 1px solid var(--paper-deep); border-radius: 8px; padding: 12px 13px; }
.app-stat .k { font-family: var(--sans); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.app-stat .v { font-family: var(--serif); font-size: 27px; color: var(--forest); line-height: 1; margin-top: 5px; }
.app-list-label { font-family: var(--sans); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin: 22px 0 12px; }
.app-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid var(--paper-deep); }
.app-row .date { text-align: center; font-family: var(--serif); }
.app-row .date b { display: block; font-size: 20px; color: var(--forest); line-height: 1; }
.app-row .date span { font-family: var(--sans); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.app-row .who { flex: 1; min-width: 0; }
.app-row .who b { font-family: var(--serif); font-size: 16px; color: var(--forest); }
.app-row .who span { display: block; font-family: var(--sans); font-size: 11px; font-weight: 300; color: var(--ink-faint); margin-top: 2px; }
.app-row .prog { width: 64px; flex: 0 0 auto; }
.app-row .prog .bar { height: 4px; background: var(--paper-deep); border-radius: 100px; overflow: hidden; }
.app-row .prog .bar i { display: block; height: 100%; background: var(--sage); border-radius: 100px; }
.app-row .prog .pc { font-family: var(--sans); font-size: 10px; color: var(--sage); text-align: right; margin-bottom: 4px; }

/* floating mini card on mockup */
.mock-chip {
  position: absolute; z-index: 2; background: var(--paper-soft); border: 1px solid var(--paper-deep);
  border-radius: 12px; box-shadow: var(--shadow-sm); padding: 13px 16px; will-change: transform;
}
.mock-chip .ttl { font-family: var(--sans); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.mock-chip .big { font-family: var(--serif); font-size: 22px; color: var(--forest); line-height: 1; margin-top: 4px; display: flex; align-items: baseline; gap: 6px; }
.mock-chip .big em { font-family: var(--sans); font-style: normal; font-size: 11px; color: var(--sage); }

/* ============================================================
   GENERIC BANDS
   ============================================================ */
.band { padding: clamp(80px, 13vh, 160px) 0; border-top: 1px solid var(--paper-deep); position: relative; }
@media (max-width: 560px) { .band { padding: 56px 0; } }
.band.alt { background: var(--paper-soft); }
.band.dark { background: var(--forest); border-top: 1px solid var(--forest); color: var(--paper); }
.band.dark .serif-2, .band.dark .display { color: var(--paper); }
.band.dark .eyebrow { color: var(--sand); }
.band.dark .eyebrow::before { background: var(--sand); }
.section-head { max-width: 44ch; margin: 0 0 clamp(44px, 6vw, 72px); }
@media (max-width: 560px) { .section-head { margin-bottom: 36px; } }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head p { font-family: var(--sans); font-weight: 300; font-size: clamp(17px, 1.5vw, 19px); line-height: 1.65; color: var(--ink-soft); margin: 20px 0 0; }

/* ---------- statement / problem ---------- */
.statement { text-align: center; max-width: 1000px; margin: 0 auto; }
.statement .serif-2 { font-size: clamp(28px, 5.4vw, 70px); max-width: 14em; margin: 0 auto; }
@media (max-width: 560px) {
  .statement .serif-2 { max-width: 100%; padding: 0 8px; }
}
.statement .mute { color: var(--ink-faint); }

/* ---------- benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
@media (max-width: 820px) { .benefits { grid-template-columns: 1fr; } }
.benefit { padding: 34px 32px; background: var(--paper-soft); border: 1px solid var(--paper-deep); border-radius: var(--radius-lg); transition: box-shadow .35s, transform .35s; }
@media (max-width: 560px) {
  .benefit { padding: 24px 20px; }
  .benefit h3 { font-size: 22px; }
}
.band.alt .benefit { background: var(--paper); }
.benefit:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.benefit .no { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); }
.benefit h3 { font-family: var(--serif); font-weight: 400; font-size: 27px; color: var(--forest); line-height: 1.08; margin: 18px 0 0; }
.benefit p { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 12px 0 0; }
.benefit .hair { width: 40px; height: 1px; background: var(--gold); margin: 24px 0 0; }

/* ---------- preview ---------- */
.preview-grid { display: grid; grid-template-columns: minmax(0,0.8fr) minmax(0,1.2fr); gap: clamp(40px, 6vw, 80px); align-items: center; overflow: hidden; }
@media (max-width: 880px) { .preview-grid { grid-template-columns: 1fr; } }
.preview-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 20px; }
.preview-points li { display: flex; gap: 14px; align-items: flex-start; }
.preview-points .dia { color: var(--gold); font-size: 12px; margin-top: 5px; flex: 0 0 auto; }
.preview-points b { font-family: var(--serif); font-size: 19px; color: var(--forest); font-weight: 400; }
.preview-points span { display: block; font-family: var(--sans); font-weight: 300; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin-top: 3px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 40px; } }
.step { position: relative; }
.step .n { font-family: var(--serif); font-size: 56px; color: var(--paper-deep); line-height: 1; }
.band.dark .step .n { color: rgba(243,238,231,.18); }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 25px; color: var(--forest); margin: 10px 0 0; }
@media (max-width: 560px) {
  .step .n { font-size: 44px; }
  .step h3 { font-size: 22px; }
}
.band.dark .step h3 { color: var(--paper); }
.step p { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 12px 0 0; }
.band.dark .step p { color: rgba(243,238,231,.78); }

/* ============================================================
   PRICING
   ============================================================ */

/* section heading override (replaces inline styles) */
.pricing-head {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  max-width: 1060px;
  margin: 12px auto 0;
  align-items: stretch;
  overflow: hidden;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 2.5vw, 36px);
  position: relative;
  transition: box-shadow .3s, border-color .3s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--sand);
}

/* featured */
.pricing-card--featured {
  border-color: var(--gold);
  background: var(--paper-soft);
  box-shadow: var(--shadow-sm);
}
.pricing-card--featured:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

/* badge — inline, not absolute */
.pricing-card__badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--forest);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* head */
.pricing-card__head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--paper-deep);
}
.pricing-card--featured .pricing-card__head {
  border-bottom-color: var(--sand);
}

.pricing-card__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--forest);
  margin: 0;
  line-height: 1.1;
}

.pricing-card__tag {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-faint);
  margin: 8px 0 0;
  line-height: 1.4;
}

/* Selector de moneda sobre la cuadrícula de precios */
.currency-switcher {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 28px;
}
.currency-pill {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-soft);
  background: var(--paper-soft);
  border: 1px solid var(--paper-deep);
  border-radius: 999px;
  padding: 5px 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.currency-pill:hover {
  border-color: var(--sand);
  color: var(--forest);
}
.currency-pill.is-active {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pricing-card__amount {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 60px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ARS: el importe tiene muchas más cifras (p. ej. $149.900,00), reducimos
   el cuerpo para que no desborde ni descuadre las tarjetas. */
.pricing-grid--compact .pricing-card__amount {
  font-size: clamp(34px, 3.8vw, 44px);
}

/* El símbolo de moneda va dentro del importe (filtro `currency`), no en CSS. */

.pricing-card__period {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-faint);
  line-height: 1;
}

/* precio habitual tachado (junto al precio promocional) */
.pricing-card__amount-old {
  font-family: var(--sans);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--ink-faint);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  line-height: 1;
}
.pricing-card__hint {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--gold-deep);
  margin: 12px 0 0;
  letter-spacing: .02em;
}

/* banner de oferta de lanzamiento */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 560px;
  margin: 0 auto 28px;
  padding: 12px 22px;
  background: rgba(180, 154, 110, .12);
  border: 1px solid rgba(180, 154, 110, .35);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--ink-soft);
  text-align: center;
}
.promo-banner strong { font-weight: 500; color: var(--forest); }
.promo-banner__dia {
  color: var(--gold);
  font-size: 1em;
  line-height: 1;
  flex: 0 0 auto;
}
@media (max-width: 480px) {
  .promo-banner {
    padding: 10px 18px;
    font-size: 12.5px;
    gap: 8px;
  }
  .promo-banner__dia { font-size: .9em; }
}

/* features list */
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.pricing-card__list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 11px;
}

/* cta — push to bottom of flex card */
.pricing-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare {
  max-width: 940px;
  margin: clamp(56px, 8vw, 88px) auto 0;
  text-align: center;
}
.compare__title { font-size: clamp(26px, 3.4vw, 38px); }
.compare__sub {
  font-family: var(--sans); font-weight: 300; font-size: 15px;
  color: var(--ink-soft); margin: 12px 0 0;
}
.compare__scroll {
  overflow-x: auto;
  margin-top: 32px;
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius-lg);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
}
.compare__table thead th {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 18px 14px;
  border-bottom: 1px solid var(--paper-deep);
  text-align: center;
}
.compare__table thead .compare__feat-head { text-align: left; }
.compare__table tbody th {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14.5px;
  color: var(--ink);
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--paper-deep);
}
.compare__table tbody td {
  text-align: center;
  padding: 13px 14px;
  border-bottom: 1px solid var(--paper-deep);
  font-family: var(--sans);
  font-size: 15px;
}
.compare__table tbody td[data-l="y"] { color: var(--sage); font-weight: 500; }
.compare__table tbody td[data-l="n"] { color: var(--paper-deep); }
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__group td {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: .02em;
  background: var(--paper-soft);
  text-align: left;
  padding: 14px 14px 8px;
  border-bottom: 1px solid var(--paper-deep);
}
.compare__scroll:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* abreviaturas de plan: ocultas en escritorio, visibles en móvil */
.c-abbr { display: none; }

/* tablet y móvil: la tabla cabe siempre sin scroll lateral */
@media (max-width: 880px) {
  .compare__scroll {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    margin: 28px 0 0;
  }
  .compare__table {
    table-layout: fixed;
  }
  .compare__table thead .compare__feat-head { width: 52%; }
  .compare__table thead th:not(.compare__feat-head) { width: 16%; }
  .compare__table thead th { padding: 14px 6px; font-size: 11px; letter-spacing: .04em; word-break: break-word; }
  .compare__table tbody th {
    padding: 12px 10px;
    line-height: 1.25;
    word-break: break-word;
    hyphens: auto;
  }
  .compare__table tbody td { padding: 12px 4px; }
}

/* móvil estrecho: abreviaturas y tamaños compactos */
@media (max-width: 560px) {
  .compare__table thead th { font-size: 10px; letter-spacing: .04em; }
  .compare__table thead .compare__feat-head { letter-spacing: .02em; word-break: break-word; }
  .c-full { display: none; }
  .c-abbr { display: inline; }
  .compare__table tbody th {
    font-size: 12px;
    padding: 11px 8px;
  }
  .compare__table tbody td { padding: 11px 2px; font-size: 14px; }
  .compare__table tbody td[data-l="n"] { font-size: 12px; }
  .compare__group td { font-size: 11px; padding: 12px 8px 6px; }
}

/* responsive — tablet single-column */
@media (max-width: 880px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
/* responsive — mobile refinements */
@media (max-width: 560px) {
  .pricing-card {
    padding: 28px 20px;
  }
  .pricing-card__head {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }
  .pricing-card__price {
    margin-top: 18px;
    gap: 6px;
  }
  .pricing-card__amount {
    font-size: clamp(44px, 12vw, 56px);
  }
  .pricing-grid--compact .pricing-card__amount {
    font-size: clamp(30px, 9vw, 40px);
  }
  .pricing-card__list {
    gap: 10px;
    margin-bottom: 24px;
  }
  .pricing-card__list li {
    font-size: 14px;
  }
  .pricing-card__list li::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: minmax(0,0.7fr) minmax(0,1.3fr); gap: clamp(40px, 6vw, 80px); align-items: start; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; gap: 36px; } }
.faq-list { border-top: 1px solid var(--paper-deep); }
.faq-item { border-bottom: 1px solid var(--paper-deep); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 2.2vw, 26px); color: var(--forest); }
@media (max-width: 560px) {
  .faq-q { padding: 20px 0; font-size: 18px; gap: 16px; }
  .faq-a > div { padding: 0 0 20px; font-size: 15px; }
}
.faq-q .mk { font-size: 18px; color: var(--gold-deep); transition: transform .3s; flex: 0 0 auto; }
.faq-item[data-open="true"] .faq-q .mk { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a > div { padding: 0 0 28px; font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 60ch; }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final { text-align: center; }
.final .display { font-size: clamp(36px, 7vw, 96px); }
@media (max-width: 560px) {
  .final .display { font-size: clamp(32px, 10vw, 48px); }
  .final p { font-size: 15px; max-width: 100%; padding: 0 8px; }
  .final { padding-bottom: 110px; }
  .final-cta .btn--lg { padding: 15px 28px; font-size: 14px; }
  .final-cta .hero-note { font-size: 12px; }
  .trust-bar { margin-top: 30px; gap: 12px 20px; }
  .trust-bar .dia { font-size: 9px; }
}
.final p { font-family: var(--sans); font-weight: 300; font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); margin: 26px auto 0; max-width: 48ch; line-height: 1.6; }

/* final CTA: botón y nota apilados y centrados en todos los viewports */
.final-cta {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.final-cta .hero-note {
  justify-content: center;
  text-align: center;
  max-width: 40ch;
}

/* trust bar (garantías) */
.trust-bar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  margin: 40px auto 0;
  padding: 0;
}
.trust-bar li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.trust-bar .dia { color: var(--gold); font-size: 11px; }

footer.foot { background: var(--forest); color: var(--paper); padding: 64px 0 40px; }
@media (max-width: 560px) { footer.foot { padding: 48px 0 32px; } }
footer.foot .frow { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
footer.foot .brand .wm { color: var(--paper); }
footer.foot .tag { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--sand); margin: 16px 0 0; max-width: 30ch; line-height: 1.3; }
footer.foot nav { display: flex; gap: 40px; flex-wrap: wrap; }
footer.foot nav a { font-family: var(--sans); font-size: 13px; color: rgba(243,238,231,.72); text-decoration: none; transition: color .2s; }
footer.foot nav a:hover { color: var(--sand); }
footer.foot .fbot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(243,238,231,.16); }
footer.foot .fine { font-family: var(--sans); font-size: 12px; color: rgba(243,238,231,.72); letter-spacing: .03em; }
footer.foot .fine-link { color: rgba(243,238,231,.72); text-decoration: none; transition: color .2s; }
footer.foot .fine-link:hover { color: var(--sand); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .pill-live .ping i:first-child { animation: none; }
}

/* ---------- accessibility: focus + skip link ---------- */
.landing-focus:focus-visible,
.btn:focus-visible,
.faq-q:focus-visible,
.currency-pill:focus-visible,
.topbar nav a:focus-visible,
.topbar__burger:focus-visible,
footer.foot a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  background: var(--forest);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   FOUNDING OFFER
   ============================================================ */
.founder {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.founder .serif-2 .accent { color: var(--gold); font-style: italic; }
.founder__sub {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.65;
  color: var(--ink-soft); max-width: 52ch; margin: 22px 0 0;
}
.founder__sub strong { font-weight: 500; color: var(--forest); }

/* progress bar */
.founder__bar { margin: 34px 0 30px; max-width: 520px; }
.founder__bar-top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; margin-bottom: 10px;
}
.founder__bar-label {
  font-family: var(--sans); font-size: 13px; letter-spacing: .04em;
  color: var(--ink-soft);
}
.founder__bar-left {
  font-family: var(--sans); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sage);
}
.founder__bar-sold {
  font-family: var(--sans); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 500;
}
.founder__track {
  height: 12px; background: var(--paper-deep); border-radius: 100px;
  overflow: hidden; border: 1px solid var(--paper-deep);
}
.founder__fill {
  display: block; height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
}

.founder__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.founder__cta .hero-note { font-size: 12.5px; }
.founder__gone {
  letter-spacing: .14em; text-transform: uppercase; font-size: 11px;
  background: rgba(180,154,110,.16); color: var(--gold-deep);
}

.founder__perks {
  list-style: none; margin: 0; padding: 28px;
  background: var(--paper); border: 1px solid var(--paper-deep);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 22px;
}
.founder__perks li { display: flex; gap: 14px; align-items: flex-start; }
.founder__perks .dia { color: var(--gold); font-size: 12px; line-height: 1; margin-top: 5px; flex: 0 0 auto; }
.founder__perks b { font-family: var(--serif); font-size: 19px; color: var(--forest); font-weight: 400; }
.founder__perks b + span {
  display: block; font-family: var(--sans); font-weight: 300;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin-top: 3px;
}

@media (max-width: 880px) {
  .founder { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .founder__perks { padding: 22px; }
  .founder__cta { gap: 14px; }
  .founder__copy .btn--lg {
    font-size: 13px;
    padding: 13px 22px;
    white-space: normal;
    max-width: 100%;
  }
}
