/* ═══════════════════════════════════════
   TAKEWARD — Landing
   Accent lock: --accent (burnt orange). One accent, whole page.
   Radius lock: cards 14px · controls 10px · pills 999px
   ═══════════════════════════════════════ */

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

:root {
  --black:      #000000;
  --surface-1:  #070707;
  --surface-2:  #0d0d0d;
  --surface-3:  #141414;
  --line:       #1f1f1f;
  --line-soft:  #161616;

  --accent:     #d4874a;
  --accent-hi:  #e89d5e;
  --accent-ink: #1a0f05;

  --fg:         #f2f2f0;
  --fg-2:       #a1a1a0;
  --fg-3:       #6e6e6d;

  --r-card:     14px;
  --r-ctl:      10px;

  --ease:       cubic-bezier(.16, 1, .3, 1);
  --maxw:       1180px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--fg);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--accent-ink); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--line); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── TYPE SCALE ─────────────────────────
   Display 900 · Heading 700/800 · Body 400 · Eyebrow 600 mono */

.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -.035em; line-height: 1.04; }

.display {
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .96;
}
.display .accent { color: var(--accent); }
.display .thin { font-weight: 300; color: var(--fg-2); }

.h2 {
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  margin: 14px 0 16px;
}
.h2 .thin { font-weight: 300; color: var(--fg-2); }

.lede {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 56ch;
}

/* ── NAV ─────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), padding .35s var(--ease);
}
.nav.pinned { border-bottom-color: var(--line); padding-block: 11px; }

.brand {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.05em;
  text-decoration: none;
  color: var(--fg);
  white-space: nowrap;
}
.brand .accent { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-2);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .28s var(--ease);
}
.nav-menu a:not(.btn):hover { color: var(--fg); }
.nav-menu a:not(.btn):hover::after { width: 100%; }

.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-ctl);
  background: none;
  cursor: pointer;
  color: var(--fg);
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: border-color .2s;
}
.burger:hover { border-color: var(--fg-3); }

/* ── BUTTONS ────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform .18s var(--ease), background .22s, border-color .22s, color .22s;
}
.btn i { font-size: 18px; }
.btn:active { transform: scale(.975); }

.btn-solid { background: var(--accent); color: var(--accent-ink); }
.btn-solid:hover { background: var(--accent-hi); transform: translateY(-2px); }

.btn-line { border-color: var(--line); color: var(--fg); }
.btn-line:hover { border-color: var(--fg-3); transform: translateY(-2px); }

.btn-sm { padding: 9px 20px; font-size: 13.5px; }
.btn-block { display: flex; width: 100%; }

/* ── HERO (asymmetric split) ────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 140px 0 72px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 8% 8%, rgba(212,135,74,.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 92% 88%, rgba(212,135,74,.05), transparent 70%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 78%);
  opacity: .55;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-2);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-tag .live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 34px; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--fg-3);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { color: var(--accent); font-size: 15px; }

/* hero right rail — stat stack */
.rail {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.rail-row { background: var(--surface-1); padding: 22px 24px; }
.rail-row .k {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: block;
  margin-bottom: 7px;
}
.rail-row .v { font-size: 30px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.rail-row .v small { font-size: 14px; font-weight: 400; color: var(--fg-3); letter-spacing: 0; }
.rail-row .v .accent { color: var(--accent); }

/* ── SECTION SHELL ──────────────── */
.sec { padding: 108px 0; position: relative; }
.sec-alt { background: var(--surface-1); border-block: 1px solid var(--line); }
.sec-head { max-width: 640px; margin-bottom: 60px; }
.sec-head.wide { max-width: 780px; }

/* ── PROBLEM ────────────────────── */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.prob { background: var(--surface-1); padding: 32px 26px; }
.prob i { font-size: 26px; color: var(--accent); display: block; margin-bottom: 16px; }
.prob h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.02em; }
.prob p { font-size: 14px; color: var(--fg-2); line-height: 1.62; }

/* ── DELIVERABLES ───────────────── */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 16px;
}
.deliv {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 24px;
  transition: border-color .3s, transform .3s var(--ease);
}
.deliv:hover { border-color: #2e2e2e; transform: translateY(-3px); }
.deliv-ico {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-ctl);
  background: rgba(212,135,74,.09);
  border: 1px solid rgba(212,135,74,.2);
  color: var(--accent);
  font-size: 21px;
  margin-bottom: 18px;
}
.deliv h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.02em; }
.deliv p { font-size: 13.5px; color: var(--fg-2); line-height: 1.6; }

/* ── PLANS ──────────────────────── */
.switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 44px;
}
.switch button {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg-3);
  background: none;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s;
}
.switch button.on { background: var(--accent); color: var(--accent-ink); }
.switch button:not(.on):hover { color: var(--fg); }

.pane { display: none; }
.pane.on { display: block; }

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 26px;
  transition: border-color .3s, transform .3s var(--ease);
}
.plan:hover { border-color: #2e2e2e; transform: translateY(-4px); }
.plan.best {
  background: var(--surface-3);
  border-color: rgba(212,135,74,.5);
  box-shadow: 0 0 0 1px rgba(212,135,74,.14), 0 30px 70px rgba(0,0,0,.8);
}

.plan-flag {
  position: absolute;
  top: -11px; left: 26px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 13px;
  border-radius: 999px;
}

.plan-tier {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.plan.best .plan-tier { color: var(--accent); }

.plan-cost { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.plan-cost .cur { font-size: 22px; font-weight: 700; color: var(--fg-2); }
.plan-cost .amt { font-size: 50px; font-weight: 900; letter-spacing: -.055em; line-height: .9; }
.plan-cost .per { font-size: 15px; color: var(--fg-3); font-weight: 400; }

.plan-note {
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.55;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.plan-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 22px; }
.num {
  background: var(--surface-3);
  border-radius: var(--r-ctl);
  padding: 13px 10px;
  text-align: center;
}
.plan.best .num { background: rgba(0,0,0,.45); }
.num b { display: block; font-size: 25px; font-weight: 800; letter-spacing: -.045em; line-height: 1; margin-bottom: 4px; }
.num b sub { font-size: 12px; font-weight: 400; color: var(--fg-3); vertical-align: baseline; }
.num span { font-size: 11px; color: var(--fg-3); }

.plan-list { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--fg-2);
  padding: 7px 0;
}
.plan-list li i { color: var(--accent); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.plan-list li b { color: var(--fg); font-weight: 600; }

/* ── NICHES ─────────────────────── */
.niche-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-card); }
.niche-tbl { width: 100%; border-collapse: collapse; min-width: 620px; }
.niche-tbl thead th {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: left;
  padding: 15px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.niche-tbl td {
  padding: 14px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface-1);
}
.niche-tbl tbody tr:last-child td { border-bottom: none; }
.niche-tbl tbody tr { transition: background .2s; }
.niche-tbl tbody tr:hover td { background: var(--surface-2); }
.niche-tbl .nm { font-weight: 600; color: var(--fg); }
.rpm {
  font-family: 'Geist Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(212,135,74,.1);
  border: 1px solid rgba(212,135,74,.2);
  padding: 3px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.est { font-family: 'Geist Mono', monospace; font-weight: 600; color: var(--fg); }
.foot-note { font-size: 12px; color: var(--fg-3); margin-top: 16px; line-height: 1.6; }

/* ── PROCESS ────────────────────── */
.steps { display: grid; gap: 0; border-left: 1px solid var(--line); }
.step {
  position: relative;
  padding: 30px 0 30px 40px;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step::before {
  content: '';
  position: absolute;
  left: -5px; top: 38px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--black);
}
.step-n {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--accent);
  display: block;
  margin-bottom: 9px;
}
.step h3 { font-size: clamp(19px, 2.4vw, 25px); font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--fg-2); line-height: 1.65; max-width: 62ch; }
.step-eta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
}
.step-eta i { color: var(--accent); font-size: 14px; }

/* ── ADD-ONS ────────────────────── */
.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 14px; }
.addon {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px 22px;
  transition: border-color .3s;
}
.addon:hover { border-color: #2e2e2e; }
.addon > i { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.addon .txt { flex-grow: 1; min-width: 0; }
.addon b { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.addon span { font-size: 12.5px; color: var(--fg-3); }
.addon .cost {
  font-family: 'Geist Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.addon .cost small { font-size: 11px; color: var(--fg-3); font-weight: 400; }

/* ── FAQ ────────────────────────── */
.faq { max-width: 760px; border-top: 1px solid var(--line); }
.q-item { border-bottom: 1px solid var(--line); }
.q-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--fg);
  text-align: left;
  padding: 24px 4px;
  cursor: pointer;
  transition: color .22s;
}
.q-btn:hover { color: var(--accent); }
.q-btn i {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.q-item.open .q-btn i { transform: rotate(45deg); }
.q-body { overflow: hidden; height: 0; }
.q-body p {
  padding: 0 4px 26px;
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.72;
  max-width: 64ch;
}

/* ── FINAL CTA ──────────────────── */
.close {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.close-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 55%, rgba(212,135,74,.11), transparent 72%);
  pointer-events: none;
}
.close-in { position: relative; text-align: center; }
.close h2 {
  font-size: clamp(34px, 6.2vw, 68px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
  margin-bottom: 20px;
}
.close h2 .accent { color: var(--accent); }
.close .lede { margin: 0 auto 34px; text-align: center; }
.close-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.close-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-3);
}
.close-trust span { display: inline-flex; align-items: center; gap: 7px; }
.close-trust i { color: var(--accent); font-size: 15px; }

/* ── FOOTER ─────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 46px 0 40px;
  background: var(--surface-1);
}
.foot-in {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.foot .brand { font-size: 21px; display: block; margin-bottom: 10px; }
.foot p { font-size: 13px; color: var(--fg-3); line-height: 1.75; max-width: 46ch; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { font-size: 13px; color: var(--fg-3); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--accent); }
.foot-legal {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 11.5px;
  color: var(--fg-3);
  line-height: 1.8;
}

/* ── REVEAL BASE ────────────────── */
.rv { opacity: 0; }

/* ── RESPONSIVE ─────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .rail { max-width: 460px; }
}

@media (max-width: 820px) {
  .nav { padding: 14px 20px; }
  .nav-menu {
    position: fixed;
    inset: 62px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--line);
    padding: 8px 0 18px;
    transform: translateY(-120%);
    transition: transform .42s var(--ease);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { border-bottom: 1px solid var(--line-soft); }
  .nav-menu li:last-child { border-bottom: none; padding: 14px 20px 0; }
  .nav-menu a:not(.btn) { display: block; padding: 15px 20px; font-size: 15.5px; }
  .nav-menu a:not(.btn)::after { display: none; }
  .burger { display: inline-flex; }
  .sec { padding: 76px 0; }
  .close { padding: 84px 0; }
  .step { grid-template-columns: 1fr; gap: 16px; padding-left: 30px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .sec { padding: 64px 0; }
  .plans { grid-template-columns: 1fr; }
  .deliv-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .close-btns .btn { width: 100%; }
}

/* ── REDUCED MOTION (mandatory) ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rv { opacity: 1 !important; transform: none !important; }
}