/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
   JF2 ACADEMY — PADEL PLATFORM
   Design system: warm near-black · cream · champagne gold · editorial
   ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */

:root {
  --bg-primary: #0E0B08;
  --bg-elevated: #161210;
  --bg-overlay: #1F1B17;

  --text-primary: #F2EADB;
  --text-secondary: #A89F90;
  --text-tertiary: #6E6657;

  --gold: #C9A961;
  --gold-hi: #DCBE7A;
  --gold-lo: #8E7641;

  --border-subtle: rgba(242, 234, 219, 0.10);
  --border-strong: rgba(242, 234, 219, 0.22);

  --success: #7FA67A;

  --serif: "Fraunces", "Tiempos Headline", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(20px, 4vw, 80px);
  --max: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

em { font-style: italic; color: var(--gold); }

.rule { border: none; border-top: 1px solid var(--border-subtle); margin: 0; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--bg-primary); }

/* ░░ TYPOGRAPHY HELPERS ░░ */
.eyebrow, .section-eyebrow, .card-kicker, .stat-label, .row-tag, .plan-tag {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-secondary);
}

.section-title, .hero-title, .final-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ░░ BUTTONS ░░ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  padding: 13px 22px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: background .24s var(--ease), border-color .24s var(--ease), color .24s var(--ease);
  white-space: nowrap;
}
.btn .bullet { color: var(--gold); font-size: 9px; line-height: 1; }
.btn-primary { border-color: var(--gold); color: var(--gold-hi); }
.btn-primary:hover { background: rgba(201,169,97,0.10); }
.btn-secondary:hover { background: rgba(242,234,219,0.05); border-color: var(--border-strong); }
.btn-lg { padding: 16px 30px; font-size: 13px; }
.btn-text {
  border: none; padding: 13px 0; color: var(--text-primary);
  font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0;
  font-size: 17px;
}
.btn-text:hover { color: var(--gold-hi); }

/* ░░ HEADER ░░ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,11,8,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 20px; }
.brand-mark { color: var(--gold); font-size: 18px; }
.brand-name { letter-spacing: 0.01em; }
.nav { display: flex; gap: 28px; margin-left: 12px; }
.nav a {
  font-size: 13px; color: var(--text-secondary);
  letter-spacing: 0.02em; transition: color .2s var(--ease);
}
.nav a:hover { color: var(--text-primary); }
.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.lang-toggle { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--text-tertiary); }
.lang-toggle button { background: none; border: none; color: var(--text-tertiary); cursor: pointer; font: inherit; padding: 2px; transition: color .2s var(--ease); }
.lang-toggle button.is-active { color: var(--gold); }
.lang-toggle button:hover { color: var(--text-primary); }
.nav-burger { display: none; background: none; border: none; color: var(--text-primary); font-size: 20px; cursor: pointer; margin-left: auto; }

/* ░░ HERO ░░ */
.hero { padding: clamp(64px, 12vh, 140px) 0 clamp(48px, 8vh, 96px); }
.eyebrow { margin-bottom: 28px; color: var(--gold); }
.hero-title { font-size: clamp(44px, 8vw, 84px); margin-bottom: 28px; max-width: 16ch; }
.hero-title em { display: block; }
.hero-lede {
  font-family: var(--serif); font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5; color: var(--text-secondary); max-width: 56ch; margin-bottom: 40px;
}
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta { font-family: var(--mono); font-size: 13px; color: var(--text-tertiary); letter-spacing: 0.02em; }

/* ░░ STATS ░░ */
.stats { padding: clamp(40px, 6vh, 64px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 10px; }
.stat-num { font-family: var(--serif); font-size: clamp(40px, 5vw, 60px); color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; }

/* ░░ SECTIONS ░░ */
.band, .method, .loop, .modules, .levels, .pricing, .founders { padding: clamp(64px, 10vh, 120px) 0; }
.section-eyebrow { color: var(--gold); margin-bottom: 24px; }
.section-title { font-size: clamp(32px, 5vw, 56px); max-width: 20ch; margin-bottom: 24px; }
.section-lede { font-family: var(--serif); font-size: clamp(17px, 2vw, 20px); color: var(--text-secondary); max-width: 56ch; line-height: 1.5; margin-bottom: 48px; }

/* ░░ CHIPS ░░ */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.chip {
  font-size: 13px; letter-spacing: 0.04em; color: var(--text-primary);
  border: 1px solid var(--border-subtle); border-radius: 999px;
  padding: 9px 18px; transition: border-color .24s var(--ease), color .24s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold-hi); }

/* ░░ NUMBERED ROWS ░░ */
.rows { display: flex; flex-direction: column; }
.row {
  display: grid; grid-template-columns: 84px 1fr auto 24px;
  align-items: center; gap: 28px;
  padding: 28px 0; border-top: 1px solid var(--border-subtle);
  transition: background .24s var(--ease); cursor: default;
}
.row:last-child { border-bottom: 1px solid var(--border-subtle); }
.row:hover { background: rgba(242,234,219,0.02); }
.row-num { font-family: var(--mono); color: var(--gold); font-size: 14px; }
.row-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); font-weight: 500; margin-bottom: 6px; }
.row-desc { color: var(--text-secondary); font-size: 15px; max-width: 52ch; }
.row-tag { font-size: 10px; text-align: right; }
.row-dot { color: var(--text-tertiary); text-align: center; transition: color .24s var(--ease); }
.row:hover .row-dot { color: var(--gold); }

/* ░░ LOOP GRID ░░ */
.loop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); }
.loop-step { background: var(--bg-primary); padding: 32px; display: flex; flex-direction: column; gap: 10px; transition: background .24s var(--ease); }
.loop-step:hover { background: var(--bg-elevated); }
.loop-n { font-family: var(--mono); color: var(--gold); font-size: 15px; }
.loop-step h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.loop-step p { color: var(--text-secondary); font-size: 14px; }
.loop-step--loopback { background: var(--bg-elevated); }
.loop-step--loopback .loop-n { font-size: 20px; }

/* ░░ CARD GRID ░░ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  padding: 32px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .24s var(--ease), transform .24s var(--ease);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card-kicker { color: var(--gold); font-size: 11px; }
.card-title { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.card-desc { color: var(--text-secondary); font-size: 15px; }

/* ░░ LADDER ░░ */
.ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); }
.rung { background: var(--bg-primary); padding: 28px 22px; display: flex; flex-direction: column; gap: 10px; position: relative; transition: background .24s var(--ease); }
.rung:hover { background: var(--bg-elevated); }
.rung-i { font-family: var(--mono); color: var(--gold); font-size: 14px; }
.rung h4 { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.rung p { color: var(--text-secondary); font-size: 13px; }

/* ░░ PRICING ░░ */
.billing-toggle { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--border-strong); padding: 4px; margin-bottom: 48px; }
.billing-toggle button {
  background: none; border: none; color: var(--text-secondary); cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 9px 20px; transition: background .24s var(--ease), color .24s var(--ease);
}
.billing-toggle button.is-active { background: var(--gold); color: var(--bg-primary); }
.save-badge { font-size: 11px; color: var(--success); letter-spacing: 0.08em; margin-left: 12px; text-transform: uppercase; font-weight: 500; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan {
  border: 1px solid var(--border-subtle); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px; position: relative; background: var(--bg-primary);
}
.plan--featured { border-color: var(--gold); background: var(--bg-elevated); }
.plan-flag {
  position: absolute; top: -11px; left: 32px; background: var(--gold); color: var(--bg-primary);
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em; padding: 4px 12px; text-transform: uppercase;
}
.plan-name { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.plan-tag { color: var(--text-secondary); }
.plan-price { display: flex; align-items: baseline; gap: 8px; padding: 8px 0 6px; border-bottom: 1px solid var(--border-subtle); }
.plan-amount { font-family: var(--serif); font-size: 48px; color: var(--gold); line-height: 1; }
.plan-period { font-size: 13px; color: var(--text-secondary); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-feats li { font-size: 14px; color: var(--text-secondary); padding-left: 20px; position: relative; }
.plan-feats li::before { content: "●"; color: var(--gold); font-size: 7px; position: absolute; left: 0; top: 6px; }
.plan-cta { justify-content: center; margin-top: 8px; }
.pricing-note { margin-top: 28px; font-size: 13px; color: var(--text-tertiary); font-family: var(--serif); font-style: italic; }

/* ░░ FOUNDERS ░░ */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.quote p { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 28px); font-style: italic; line-height: 1.4; color: var(--text-primary); margin-bottom: 18px; }
.quote cite { font-style: normal; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }

/* ░░ FINAL CTA ░░ */
.final-cta { padding: clamp(80px, 14vh, 160px) 0; text-align: center; border-top: 1px solid var(--border-subtle); }
.final-title { font-size: clamp(38px, 7vw, 72px); margin-bottom: 20px; }
.final-lede { font-family: var(--serif); font-size: clamp(17px, 2vw, 21px); color: var(--text-secondary); margin-bottom: 40px; }

/* ░░ FOOTER ░░ */
.site-footer { border-top: 1px solid var(--border-subtle); padding: 56px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 32px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand .brand-mark, .footer-brand .brand-name { display: inline; font-family: var(--serif); font-size: 20px; }
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--text-secondary); font-size: 15px; margin-top: 8px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 13px; color: var(--text-secondary); transition: color .2s var(--ease); }
.footer-nav a:hover { color: var(--gold-hi); }
.footer-copy { font-family: var(--mono); font-size: 12px; color: var(--text-tertiary); align-self: end; text-align: right; }

/* ░░ BRAND LOGOS ░░ */
.brand-logo { height: 34px; width: auto; display: block; }
.brand-tagline { font-family: var(--sans); font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.13em; color: var(--text-secondary); padding-left: 16px; margin-left: 4px; border-left: 1px solid var(--border-subtle); line-height: 1.3; max-width: 210px; }
@media (max-width: 1100px) { .brand-tagline { display: none; } }
.footer-logo { height: 46px; width: auto; display: block; margin-bottom: 10px; }

/* ░░ SCENARIOS ░░ */
.scenarios { margin-top: 56px; border-top: 1px solid var(--border-subtle); padding-top: 48px; }
.scen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.scen { border: 1px solid var(--border-subtle); padding: 28px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-primary); }
.scen--base { border-color: var(--gold); background: var(--bg-elevated); }
.scen-tag { font-size: 11px; letter-spacing: 0.14em; font-weight: 500; color: var(--text-secondary); }
.scen--base .scen-tag { color: var(--gold); }
.scen-x { font-family: var(--serif); font-size: clamp(40px, 5vw, 56px); color: var(--gold); line-height: 1; }
.scen-irr { font-size: 13px; color: var(--text-secondary); }

/* ░░ INVESTMENT TIERS ░░ */
.tiers { padding: clamp(64px, 10vh, 120px) 0; }
.tier-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); }
.tier { background: var(--bg-primary); padding: 24px 18px; display: flex; flex-direction: column; gap: 10px; transition: background .24s var(--ease); }
.tier:hover { background: var(--bg-elevated); }
.tier-name { font-size: 11px; letter-spacing: 0.12em; font-weight: 600; color: var(--text-secondary); }
.tier-amt { font-family: var(--serif); font-size: clamp(20px, 2vw, 24px); color: var(--gold); }
.tier-perk { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.tier--lead { background: var(--bg-elevated); }
.tier--lead .tier-name, .tier--lead .tier-amt { color: var(--gold-hi); }

/* ░░ TEAM PHOTO ░░ */
.quote--photo { display: flex; flex-direction: column; }
.team-photo {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 30%;
  border: 1px solid var(--border-subtle); margin-bottom: 22px;
  filter: grayscale(0.2) contrast(1.05);
}

/* ░░ INVESTOR PITCH EXTRAS ░░ */
.returns, .stats { padding-top: clamp(64px, 10vh, 120px); padding-bottom: clamp(64px, 10vh, 120px); }
.stats .section-title { margin-bottom: 48px; }
.opp-note { margin-top: 40px; margin-bottom: 0; }

/* callout line */
.opp-callout {
  margin-top: 44px; font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2.4vw, 26px); line-height: 1.4; color: var(--gold-hi);
  max-width: 60ch; border-left: 2px solid var(--gold); padding-left: 24px;
}

/* return engines */
.card--engine { background: var(--bg-elevated); border-color: var(--border-subtle); }
.card--engine .card-kicker { color: var(--gold); }
.card--engine .card-title { font-size: 24px; }

/* reference terms */
.terms { margin-top: 64px; border-top: 1px solid var(--border-subtle); padding-top: 48px; }
.terms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 28px; }
.term { display: flex; flex-direction: column; gap: 10px; }
.term-num { font-family: var(--serif); font-size: clamp(34px, 4.5vw, 52px); color: var(--gold); line-height: 1; }
.term-label { font-size: 12px; color: var(--text-secondary); letter-spacing: 0.02em; }

/* use of funds bars */
.funds { display: flex; flex-direction: column; gap: 22px; max-width: 720px; }
.fund-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; font-size: 15px; }
.fund-pct { font-family: var(--mono); color: var(--gold); font-size: 14px; }
.fund-bar { height: 6px; background: var(--bg-overlay); overflow: hidden; }
.fund-bar span { display: block; height: 100%; background: var(--gold); }

/* pricing inline within model */
.pricing-inline { margin-top: 72px; border-top: 1px solid var(--border-subtle); padding-top: 48px; }
.pricing-inline .billing-toggle { margin-top: 20px; }

/* disclaimer */
.disclaimer { margin-top: 40px; font-size: 11px; line-height: 1.7; color: var(--text-tertiary); max-width: 90ch; }

/* investor form */
.invest-form { padding: clamp(64px, 10vh, 120px) 0; border-top: 1px solid var(--border-subtle); }
.iform { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; max-width: 760px; margin-top: 8px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field-label { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 8px; }
.field-input {
  background: transparent; border: none; border-bottom: 1px solid var(--border-strong);
  color: var(--text-primary); font-family: var(--sans); font-size: 16px; padding: 10px 0;
  transition: border-color .24s var(--ease);
}
.field-input:focus { outline: none; border-bottom-color: var(--gold); }
.field-input::placeholder { color: var(--text-tertiary); }
select.field-input { color: var(--text-primary); }
select.field-input option { background: var(--bg-elevated); color: var(--text-primary); }
.field-textarea { resize: vertical; min-height: 64px; }
.form-status { grid-column: 1 / -1; font-family: var(--serif); font-style: italic; font-size: 16px; margin-top: 4px; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: #B85C4A; }

/* unit economics simulator */
.sim { margin-top: 56px; border-top: 1px solid var(--border-subtle); padding-top: 48px; }
.sim-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; margin-top: 24px; }
.sim-controls { display: flex; flex-direction: column; gap: 30px; justify-content: center; }
.sim-field { display: flex; flex-direction: column; gap: 14px; }
.sim-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--text-secondary); }
.sim-val { font-family: var(--mono); color: var(--gold); font-size: 14px; }
.jf-range { -webkit-appearance: none; appearance: none; width: 100%; height: 3px; background: var(--border-strong); border-radius: 2px; outline: none; accent-color: var(--gold); }
.jf-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); cursor: pointer; }
.jf-range::-moz-range-thumb { width: 16px; height: 16px; border: none; border-radius: 50%; background: var(--gold); cursor: pointer; }
.sim-output { background: var(--bg-elevated); border: 1px solid var(--gold); padding: 28px; display: flex; flex-direction: column; gap: 8px; justify-content: center; text-align: center; }
.sim-out-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-secondary); }
.sim-out-num { font-family: var(--serif); font-size: clamp(44px, 6vw, 64px); color: var(--gold); line-height: 1; }
.sim-out-row { display: flex; justify-content: space-between; border-top: 1px solid var(--border-subtle); margin-top: 14px; padding-top: 14px; font-size: 13px; color: var(--text-secondary); }
.sim-out-row span:last-child { font-family: var(--mono); color: var(--text-primary); }

/* generic 2-col grid (scenarios, shield, cac) */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.card-impact { color: var(--text-primary) !important; border-top: 1px solid var(--border-subtle); margin-top: 6px; padding-top: 12px; }

/* CAC + executive summary */
.cac { margin-top: 56px; border-top: 1px solid var(--border-subtle); padding-top: 48px; }
.cac-hi { color: var(--gold); }
.sum-list { list-style: none; display: flex; flex-direction: column; margin-top: 24px; }
.sum-list li { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: baseline; padding: 24px 0; border-top: 1px solid var(--border-subtle); }
.sum-list li:last-child { border-bottom: 1px solid var(--border-subtle); }
.sum-n { font-family: var(--mono); color: var(--gold); font-size: 14px; }
.sum-list p { font-family: var(--serif); font-size: clamp(17px, 2vw, 20px); color: var(--text-primary); line-height: 1.5; }

/* linktree CTA (igual que newsletters) */
.linktree { padding: clamp(40px, 7vh, 72px) 0 4px; text-align: center; }
.linktree-eyebrow { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px; }
.linktree-cta {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 18px 26px; border: 1px solid var(--border-strong);
  text-decoration: none; color: var(--text-primary);
  transition: border-color .25s var(--ease), padding .25s var(--ease), background .25s var(--ease);
}
.linktree-cta:hover { border-color: var(--gold); padding-right: 32px; background: rgba(201,169,97,0.05); }
.linktree-cta .lt-label { font-family: var(--serif); font-style: italic; font-size: 18px; }
.linktree-cta .lt-url { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border-left: 1px solid var(--border-strong); padding-left: 18px; }
.linktree-cta .lt-arrow { color: var(--text-secondary); font-size: 18px; margin-left: 4px; transition: transform .3s var(--ease), color .2s var(--ease); }
.linktree-cta:hover .lt-arrow { transform: translateX(6px); color: var(--gold); }

/* ░░░░░░░░░░░░░ RESPONSIVE ░░░░░░░░░░░░░ */
@media (max-width: 1100px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .tier--lead { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .nav-burger { display: block; }
  .header-actions { margin-left: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .terms-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .sim-grid { grid-template-columns: 1fr; }
  .loop-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .ladder { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 480px; }
  .plan--featured { order: -1; }
  .quote-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-copy { text-align: left; }

  /* mobile nav drawer */
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-elevated); border-bottom: 1px solid var(--border-subtle);
    padding: 8px var(--pad) 16px; margin: 0;
  }
  .nav.is-open a { padding: 14px 0; border-bottom: 1px solid var(--border-subtle); font-size: 15px; }
}

@media (max-width: 640px) {
  .scen-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .header-actions .btn { display: none; }
  .row { grid-template-columns: 56px 1fr; row-gap: 6px; }
  .row-tag { grid-column: 2; text-align: left; }
  .row-dot { display: none; }
  .loop-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .ladder { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .terms-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 34px; }
  .term-num { font-size: 32px; }
  .scen-x { font-size: 40px; }
  .opp-callout { font-size: 18px; padding-left: 18px; }
  .hero-cta { gap: 16px; }
  .billing-toggle { width: 100%; justify-content: center; flex-wrap: wrap; }
  .iform { grid-template-columns: 1fr; }
  .linktree-cta { flex-wrap: wrap; gap: 10px; padding: 16px 20px; }
  .linktree-cta .lt-url { border-left: none; padding-left: 0; width: 100%; order: 3; }
  .linktree-cta .lt-label { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
