/* Raya — public landing page.
   Ported from the Claude Design handoff (project/Raya Landing.dc.html).
   House rules: colors only via var(--token) (no raw hex); translucent
   overlays via color-mix on a token; buttons reuse .btn from components.css.
   Loaded only by _LandingLayout (light-only marketing chrome). */

.landing {
  margin: 0;
  background: var(--bg-app);
  color: var(--text-body);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.landing * { box-sizing: border-box; }
.landing a { color: var(--blue-600); text-decoration: none; }
.landing a:hover { color: var(--blue-700); }

/* Buttons are <a> tags here, and `.landing a` (0,1,1) outranks `.btn`'s own
   color (0,1,0) — restore each variant's intended text so the filled/gradient
   CTAs read as white and stand out. */
.landing a.btn,
.landing a.btn:hover { color: var(--text-on-brand); }
.landing a.btn--secondary,
.landing a.btn--secondary:hover { color: var(--text-strong); }
.landing a.btn--inverse,
.landing a.btn--inverse:hover { color: var(--text-on-inverse); }
.landing a.btn--ghost,
.landing a.btn--ghost:hover { color: var(--brand-primary); }

.lp-shell { min-height: 100%; }
.lp-wrap { max-width: 1180px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.lp-ic { width: 22px; height: 22px; flex: none; }
.lp-ic-lg { width: 26px; height: 26px; flex: none; }
.lp-ic-sm { width: 18px; height: 18px; flex: none; }
.lp-ic-xs { width: 13px; height: 13px; flex: none; }

.lp-eyebrow {
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.lp-h2 {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.12;
  letter-spacing: var(--tracking-tight);
  color: var(--text-strong);
  margin: 0;
}

/* ===================== NAV ===================== */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg-app) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.lp-nav__bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.lp-brand { display: flex; align-items: center; gap: 11px; }
.lp-brand img { width: 32px; height: 32px; object-fit: contain; }
.lp-brand__name {
  font-family: var(--font-brand);
  font-size: 21px;
  letter-spacing: var(--tracking-heading);
  color: var(--text-strong);
  text-transform: uppercase;
}
.lp-nav__links { display: none; align-items: center; gap: 34px; }
.lp-nav__links a { color: var(--text-body); font-size: 15px; }
.lp-nav__actions { display: flex; align-items: center; gap: 12px; }
/* Hidden with the desktop links below 780px — it lives in the burger menu
   there, otherwise brand + login + CTA + burger overflow a 375px bar. */
.lp-nav__login { display: none; color: var(--text-body); font-size: 15px; }
.lp-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-strong);
}
.lp-menu {
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-card);
  padding: 14px 24px 20px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.lp-menu.is-open { display: flex; }
.lp-menu a { color: var(--text-body); font-size: 16px; padding: 10px 0; }
/* `.lp-menu a` (0,1,1) would outrank a bare `.lp-menu__login` color. */
.lp-menu a.lp-menu__login {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  color: var(--blue-600);
}

/* Small phones (≤400px): tighten the bar so brand + CTA + burger fit 320px. */
@media (max-width: 400px) {
  .lp-nav__bar { padding: 0 16px; gap: 12px; }
  .lp-nav__actions { gap: 8px; }
  .lp-menu { padding-left: 16px; padding-right: 16px; }
}

@media (min-width: 780px) {
  .lp-nav__links { display: flex; }
  .lp-nav__login { display: inline-flex; align-items: center; }
  .lp-menu-btn { display: none; }
  .lp-menu { display: none !important; }
}
/* Six links + login + CTA only breathe at 34px past ~1040px; below that the
   row would push the "Crear cuenta" button off the bar. */
@media (min-width: 780px) and (max-width: 1039px) {
  .lp-nav__links { gap: 20px; }
  .lp-nav__links a { font-size: 14px; }
}

/* ===================== HERO ===================== */
.lp-hero { position: relative; overflow: hidden; }
.lp-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 85% -10%, var(--blue-100), transparent 60%),
    radial-gradient(760px 420px at 0% 10%, var(--purple-100), transparent 55%);
  pointer-events: none;
}
.lp-hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 24px clamp(56px, 8vw, 90px);
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.lp-hero__copy { animation: lpFade 0.6s var(--ease-out) both; }
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.lp-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-blue); }
.lp-badge__text {
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}
.lp-h1 {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.02;
  letter-spacing: var(--tracking-tight);
  color: var(--text-strong);
  margin: 0 0 22px;
}
.lp-lede {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 32px;
}
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-cta-row--center { justify-content: center; }
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--text-muted);
  font-size: 13.5px;
}
.lp-trust span { display: flex; align-items: center; gap: 7px; }
.lp-trust .lp-ic-sm { color: var(--green-600); }

/* ---- Product mockup ---- */
.lp-mock-wrap { animation: lpFloat 6s ease-in-out infinite; }
.lp-mock {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  /* The mock is dense: its inner table/grid columns react to the card's own
     width (which is not a simple function of the viewport), so it queries
     itself rather than the screen. */
  container-type: inline-size;
}
.lp-mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--slate-50);
}
.lp-mock__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--slate-300); }
.lp-mock__url { margin-left: 10px; font-size: 12px; color: var(--text-muted); }
.lp-mock__body { padding: 22px; }
.lp-mock__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}
.lp-mock__eyebrow {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}
.lp-mock__day { font-size: 12px; color: var(--blue-600); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.lp-mock__period {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 18px;
  color: var(--text-strong);
  margin: 0 0 4px;
}
.lp-mock__progress {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--slate-100);
  overflow: hidden;
  margin-bottom: 16px;
}
.lp-mock__progress-fill { display: block; height: 100%; background: var(--grad-blue); border-radius: var(--radius-pill); }
.lp-mock__caption {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  margin-bottom: 10px;
}

/* Tinted squares/chips inside the mock (icon tiles, category pills). */
.lp-tint--blue { background: var(--blue-100); color: var(--blue-600); }
.lp-tint--green { background: var(--green-100); color: var(--green-600); }
.lp-tint--purple { background: var(--purple-100); color: var(--purple-600); }
.lp-tint--orange { background: var(--orange-100); color: var(--orange-600); }

/* Ingresos / gastos */
.lp-flow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.lp-flow__card { border-radius: var(--radius-md); padding: 13px; }
.lp-flow__card--in { background: var(--green-100); }
.lp-flow__card--out { background: var(--orange-100); }
.lp-flow__label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lp-flow__card--in .lp-flow__label { color: var(--green-600); }
.lp-flow__card--out .lp-flow__label { color: var(--orange-600); }
.lp-flow__value { font-size: 22px; font-weight: 500; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.lp-flow__track {
  height: 5px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--ink-900) 8%, transparent);
  overflow: hidden;
  margin: 9px 0 6px;
}
.lp-flow__fill { display: block; height: 100%; border-radius: var(--radius-pill); }
.lp-flow__card--in .lp-flow__fill { background: var(--green-600); }
.lp-flow__card--out .lp-flow__fill { background: var(--orange-600); }
.lp-flow__note { font-size: 10.5px; color: var(--text-muted); }

/* Balance de la semana */
.lp-balance { background: var(--ink-900); border-radius: var(--radius-md); padding: 13px 15px; margin-bottom: 18px; }
.lp-balance__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lp-balance__row + .lp-balance__row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
}
.lp-balance__label {
  font-size: 10.5px;
  color: color-mix(in srgb, var(--white) 60%, transparent);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
}
.lp-balance__value { font-size: 22px; font-weight: 500; color: var(--white); font-variant-numeric: tabular-nums; }
.lp-balance__value--sm { font-size: 16px; color: var(--green-400); }

/* Cuentas */
.lp-accounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.lp-account {
  background: var(--slate-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 11px;
  overflow: hidden;
}
.lp-account__top { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 9px; }
.lp-account__icon {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.lp-account__chip {
  font-size: 8.5px;
  color: var(--purple-600);
  background: var(--purple-100);
  border-radius: var(--radius-pill);
  padding: 2px 6px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.lp-account__chip .lp-ic-xs { width: 10px; height: 10px; }
.lp-account__name {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-account__balance { font-size: 15px; color: var(--text-strong); font-weight: 500; font-variant-numeric: tabular-nums; }

/* Pagos de la semana */
.lp-pays {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
}
.lp-pays__head,
.lp-pay {
  display: grid;
  /* Fixed columns trimmed vs. the mock (80/90/66/62 @ 9px gap) so the
     movement name keeps a readable width inside the ~510px hero card. */
  grid-template-columns: 44px minmax(0, 1fr) 74px 84px 66px 58px;
  column-gap: 8px;
  align-items: center;
}
.lp-pays__head {
  padding: 8px 13px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 9.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
}
.lp-pays__h--center { text-align: center; }
.lp-pays__h--right { text-align: right; }
.lp-pay { padding: 11px 13px; border-bottom: 1px solid var(--border-subtle); }
.lp-pay:last-child { border-bottom: none; }
.lp-pay__day { font-size: 11px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.lp-pay__name {
  font-size: 13px;
  color: var(--text-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-pay__cat {
  justify-self: start;
  font-size: 9.5px;
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-pay__status {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
}
.lp-pay__status .lp-ic-xs { width: 12px; height: 12px; }
.lp-pay__status--ok { color: var(--green-600); }
.lp-pay__status--pending { color: var(--orange-600); }
.lp-pay__amt { justify-self: end; font-size: 13px; font-weight: 500; font-variant-numeric: tabular-nums; }
.lp-pay__amt--in { color: var(--green-600); }
.lp-pay__amt--out { color: var(--danger); }
.lp-pay__act { justify-self: center; display: flex; gap: 5px; }
.lp-pay__btn {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.lp-pay__btn--pay { border: none; background: var(--grad-blue); color: var(--text-on-brand); }
.lp-pay__btn--pay .lp-ic-xs { width: 14px; height: 14px; }

/* Próximas semanas */
.lp-upnext { display: flex; flex-direction: column; gap: 10px; }
.lp-upnext__card {
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-sunken);
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp-upnext__label {
  font-size: 10.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  margin-bottom: 3px;
}
.lp-upnext__sub { font-size: 13.5px; color: var(--text-body); }
.lp-upnext__amt { font-size: 20px; font-weight: 500; color: var(--blue-600); font-variant-numeric: tabular-nums; }

/* Narrow card: drop the two least essential columns and the apartados chip
   so the row keeps its shape instead of overflowing. */
@container (max-width: 470px) {
  .lp-col-cat,
  .lp-col-act,
  .lp-account__chip { display: none; }
  .lp-pays__head,
  .lp-pay { grid-template-columns: 42px minmax(0, 1fr) 88px 66px; }
}
@container (max-width: 400px) {
  .lp-col-status { display: none; }
  .lp-pays__head,
  .lp-pay { grid-template-columns: 42px minmax(0, 1fr) 70px; }
}

@media (min-width: 940px) {
  .lp-hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}

/* ===================== PROBLEM / SOLUTION ===================== */
.lp-problem { background: var(--ink-900); color: var(--white); }
.lp-problem__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 24px;
}
.lp-problem__eyebrow {
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 18px;
}
.lp-problem__h2 {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
  margin: 0 0 20px;
  max-width: 900px;
}
.lp-problem__p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: color-mix(in srgb, var(--white) 72%, transparent);
  max-width: 720px;
  margin: 0;
}
.lp-swap { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }
.lp-swap__pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
}
.lp-swap__pill--bad {
  background: color-mix(in srgb, var(--white) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
}
.lp-swap__pill--bad .lp-ic-sm { color: var(--orange-400); }
.lp-swap__pill--good { background: var(--grad-blue); }
.lp-swap__arrow { color: color-mix(in srgb, var(--white) 50%, transparent); }

/* ===================== FEATURES ===================== */
.lp-section { max-width: 1180px; margin: 0 auto; padding: clamp(64px, 9vw, 104px) 24px; }
.lp-section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.lp-section__head p { font-size: 17px; line-height: 1.6; color: var(--text-muted); margin: 16px 0 0; }
.lp-section__head .lp-h2 { margin-bottom: 0; }

/* min() keeps the track from forcing a wider-than-viewport row on small phones. */
.lp-grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px; }
.lp-feature {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
.lp-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lp-feature__icon--blue { background: var(--blue-100); color: var(--blue-600); }
.lp-feature__icon--purple { background: var(--purple-100); color: var(--purple-600); }
.lp-feature__icon--green { background: var(--green-100); color: var(--green-600); }
.lp-feature__icon--orange { background: var(--orange-100); color: var(--orange-600); }
.lp-feature h3 {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 20px;
  color: var(--text-strong);
  margin: 0 0 10px;
}
.lp-feature p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ===================== HOW IT WORKS ===================== */
.lp-how {
  background: var(--surface-sunken);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.lp-how__inner { max-width: 1180px; margin: 0 auto; padding: clamp(64px, 9vw, 104px) 24px; }
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; }
.lp-step {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}
.lp-step__n {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.lp-step h3 {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 20px;
  color: var(--text-strong);
  margin: 0 0 10px;
}
.lp-step p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ===================== DEBT TOOL HOOK ===================== */
/* Teaser band for /tools/debt-plan — the calculator itself lives on its own
   page (tools.css); this only sells the before/after. */
.lp-hook { max-width: 1180px; margin: 0 auto; padding: clamp(56px, 8vw, 88px) 24px; }
.lp-hook__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 5vw, 52px);
}
@media (min-width: 900px) {
  .lp-hook__inner { grid-template-columns: 1.35fr 1fr; gap: 48px; }
}
.lp-hook .lp-eyebrow { color: var(--purple-600); }
.lp-hook__p { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 16px 0 26px; }
.lp-hook__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.lp-hook__caption {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 16px 0 0;
}
.lp-hook__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  padding: 20px 22px;
  min-width: 150px;
}
.lp-hook__stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--text-muted);
}
.lp-hook__stat-value {
  font-family: var(--font-brand);
  font-size: 24px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.lp-hook__stat-value--bad { color: var(--danger); }
.lp-hook__stat-value--good { color: var(--green-600); }
.lp-hook__arrow { color: var(--purple-400); }

/* ===================== PRICING ===================== */
.lp-price-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.lp-price-head p { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 16px 0 26px; }
.lp-price-head .lp-h2 { margin-bottom: 0; }
.lp-toggle {
  display: inline-flex;
  background: var(--surface-sunken);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.lp-toggle__btn {
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  background: transparent;
  color: var(--text-muted);
  box-shadow: none;
}
.lp-toggle__btn.is-active {
  background: var(--surface-card);
  color: var(--text-strong);
  box-shadow: var(--shadow-sm);
}

.lp-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 22px; align-items: start; }
.lp-tier {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  position: relative;
}
.lp-tier--featured { border: 1.5px solid var(--blue-400); box-shadow: var(--shadow-lg); }
.lp-tier__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-orange);
  color: var(--white);
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.lp-tier__name {
  font-family: var(--font-brand);
  font-size: 15px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.lp-tier--featured .lp-tier__name { color: var(--blue-600); }
.lp-tier__price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.lp-tier__price { font-size: 44px; font-weight: 500; color: var(--text-strong); line-height: 1; }
.lp-tier__period { font-size: 15px; color: var(--text-muted); }
.lp-tier__sub { font-size: 14px; color: var(--text-muted); margin: 0 0 22px; min-height: 20px; }
.lp-tier__cta { margin-bottom: 26px; }
.lp-tier__feats { display: flex; flex-direction: column; gap: 13px; }
.lp-tier__feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.45; color: var(--text-body); }
.lp-tier__feat .lp-ic-sm { color: var(--green-600); margin-top: 1px; }
.lp-tier--featured .lp-tier__feat .lp-ic-sm { color: var(--blue-600); }
/* Toggle-driven price/sub swap (mensual default). */
.lp-price-anual { display: none; }
.landing.is-anual .lp-price-mensual { display: none; }
.landing.is-anual .lp-price-anual { display: inline; }
.lp-note { text-align: center; font-size: 12.5px; color: var(--text-muted); margin: 26px 0 0; }

/* ===================== FAQ ===================== */
.lp-faq { background: var(--surface-sunken); border-top: 1px solid var(--border-subtle); }
.lp-faq__inner { max-width: 820px; margin: 0 auto; padding: clamp(64px, 9vw, 104px) 24px; }
.lp-faq__head { text-align: center; margin: 0 auto 44px; }
.lp-faq__list { display: flex; flex-direction: column; gap: 12px; }
.lp-faq__item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.lp-faq__q {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sans);
}
.lp-faq__q span { font-size: 17px; color: var(--text-strong); }
.lp-faq__q .lp-ic { color: var(--blue-600); }
.lp-faq__q .lp-icon-minus { display: none; }
.lp-faq__item.is-open .lp-faq__q .lp-icon-plus { display: none; }
.lp-faq__item.is-open .lp-faq__q .lp-icon-minus { display: block; }
.lp-faq__a { padding: 0 24px 24px; display: none; }
.lp-faq__item.is-open .lp-faq__a { display: block; }
.lp-faq__a p { font-size: 15px; line-height: 1.65; color: var(--text-muted); margin: 0; }

/* ===================== FINAL CTA ===================== */
.lp-final { max-width: 1180px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) 24px; }
.lp-final__card {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
  border-radius: var(--radius-xl);
  padding: clamp(44px, 7vw, 80px) clamp(28px, 5vw, 64px);
  text-align: center;
}
.lp-final__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 340px at 50% -30%, color-mix(in srgb, var(--blue-500) 35%, transparent), transparent 60%);
  pointer-events: none;
}
.lp-final__inner { position: relative; }
.lp-final__mark { width: 48px; height: 48px; object-fit: contain; margin-bottom: 22px; }
.lp-final__h2 {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: clamp(30px, 4.8vw, 50px);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  margin: 0 0 18px;
}
.lp-final__p {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--white) 72%, transparent);
  max-width: 520px;
  margin: 0 auto 34px;
}

/* ===================== FOOTER ===================== */
.lp-footer { background: var(--ink-900); color: color-mix(in srgb, var(--white) 70%, transparent); }
.lp-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
.lp-footer__brand { min-width: 220px; }
.lp-footer__brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.lp-footer__brand-row img { width: 30px; height: 30px; object-fit: contain; }
.lp-footer__brand-row span {
  font-family: var(--font-brand);
  font-size: 20px;
  letter-spacing: var(--tracking-heading);
  color: var(--white);
  text-transform: uppercase;
}
.lp-footer__tag { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--white) 55%, transparent); max-width: 280px; margin: 0; }
.lp-footer__col-title {
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 45%, transparent);
  margin-bottom: 16px;
}
.lp-footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.lp-footer__links a { color: color-mix(in srgb, var(--white) 72%, transparent); }
.lp-footer__links a:hover { color: var(--white); }
.lp-footer__bar { border-top: 1px solid color-mix(in srgb, var(--white) 10%, transparent); }
.lp-footer__bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: color-mix(in srgb, var(--white) 45%, transparent);
}

/* ===================== ANIMATIONS ===================== */
@keyframes lpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes lpFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .lp-mock-wrap { animation: none; }
  .lp-hero__copy { animation: none; }
}
