:root {
  --orange: #ff5a0a;
  --orange-light: #ff762f;
  --ink: #08090a;
  --charcoal: #111214;
  --surface: #17191c;
  --surface-2: #202328;
  --line: #30343a;
  --white: #ffffff;
  --text: #f4f5f6;
  --muted: #a9adb3;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,9,10,.78);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Roboto Condensed", sans-serif; font-style: italic; font-size: 1.35rem; letter-spacing: -.03em; }
.brand img { width: 44px; height: 44px; border-radius: 11px; }
.brand span { color: var(--orange); }
.brand strong { color: white; }
nav { display: flex; align-items: center; gap: 30px; font-size: .9rem; font-weight: 600; }
nav a { color: #d7d9dc; transition: .2s ease; }
nav a:hover { color: white; }
.nav-cta { padding: 10px 16px; border: 1px solid rgba(255,90,10,.7); border-radius: 999px; color: white; }
.menu-button, .mobile-menu { display: none; }

.hero { min-height: 920px; padding: 155px 0 90px; position: relative; overflow: hidden; background: radial-gradient(circle at 76% 30%, rgba(255,90,10,.14), transparent 32%), linear-gradient(180deg, #090a0b, #0d0f11); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.lane-lines { position: absolute; right: -8%; bottom: -20%; width: 62%; height: 70%; opacity: .18; background: repeating-linear-gradient(100deg, transparent 0 66px, rgba(255,90,10,.65) 68px 70px, transparent 72px 132px); transform: perspective(600px) rotateX(50deg) rotateZ(-8deg); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
.eyebrow, .section-kicker { color: var(--orange-light); font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 22px; height: 2px; background: var(--orange); }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 { margin-top: 18px; font-size: clamp(3.6rem, 7vw, 6.8rem); text-transform: uppercase; letter-spacing: -.055em; font-style: italic; font-family: "Roboto Condensed", sans-serif; }
h1 em { color: var(--orange); font-style: inherit; }
.hero-lede { max-width: 650px; margin: 28px 0 0; color: #c4c7cb; font-size: 1.12rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 8px; font-weight: 800; font-size: .92rem; transition: transform .2s ease, background .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #0b0c0d; background: var(--orange); box-shadow: 0 12px 35px rgba(255,90,10,.22); }
.button-primary:hover { background: var(--orange-light); }
.button-secondary { border: 1px solid #3b3f45; color: white; background: rgba(255,255,255,.025); }
.proof-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 35px; color: #8f949a; font-size: .82rem; }
.proof-row span::before { content: "✓"; color: var(--orange); margin-right: 7px; font-weight: 800; }
.phone-stage { position: relative; min-height: 690px; display: grid; place-items: center; }
.orange-orbit { position: absolute; width: 470px; aspect-ratio: 1; border: 1px solid rgba(255,90,10,.34); border-radius: 50%; box-shadow: 0 0 100px rgba(255,90,10,.14) inset; }
.phone-preview { position: relative; width: min(370px, 82%); height: 720px; object-fit: cover; object-position: top; border: 8px solid #22252a; border-radius: 50px; box-shadow: 0 36px 100px rgba(0,0,0,.65); }
.floating-card { position: absolute; width: 190px; padding: 16px 18px; background: rgba(25,27,31,.9); border: 1px solid rgba(255,255,255,.11); border-left: 3px solid var(--orange); backdrop-filter: blur(12px); border-radius: 12px; box-shadow: 0 20px 45px rgba(0,0,0,.4); }
.floating-card small, .recommendation-item small { display: block; color: var(--orange-light); letter-spacing: .12em; font-size: .63rem; font-weight: 800; }
.floating-card strong { display: block; margin: 3px 0; font-size: 1rem; }
.floating-card span { color: var(--muted); font-size: .75rem; }
.card-one { top: 27%; right: -3%; }
.card-two { bottom: 17%; left: -8%; }

.problem-section { padding: 100px 0; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); background: #0c0d0f; }
.split-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.045em; }
.split-copy h2 { max-width: 560px; }
.split-copy > p { color: #b4b8bd; font-size: 1.08rem; margin: 0 0 4px; }

.steps-section { padding: 120px 0; background: var(--charcoal); }
.section-heading.centered { text-align: center; max-width: 760px; margin: 0 auto 58px; }
.section-heading .section-kicker { margin-bottom: 12px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 345px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, #191b1f, #141619); }
.step-card.featured { border-color: rgba(255,90,10,.68); box-shadow: 0 22px 70px rgba(255,90,10,.08); }
.step-number { position: absolute; top: 22px; right: 24px; color: #4a4e54; font-size: .8rem; font-weight: 800; }
.step-icon { width: 60px; height: 60px; margin: 42px 0 40px; border-radius: 15px; background: rgba(255,90,10,.09); position: relative; }
.profile-icon::before { content: ""; position: absolute; width: 16px; height: 16px; border: 3px solid var(--orange); border-radius: 50%; left: 19px; top: 10px; }
.profile-icon::after { content: ""; position: absolute; width: 30px; height: 15px; border: 3px solid var(--orange); border-bottom: 0; border-radius: 20px 20px 0 0; left: 12px; bottom: 10px; }
.ball-icon::before { content: ""; position: absolute; inset: 11px; border: 3px solid var(--orange); border-radius: 50%; }
.ball-icon::after { content: "•••"; color: var(--orange); position: absolute; font-weight: 900; letter-spacing: 1px; top: 14px; left: 18px; transform: rotate(-18deg); }
.adjust-icon::before { content: "↗"; color: var(--orange); font-size: 42px; line-height: 1; position: absolute; left: 10px; top: 7px; font-weight: 500; }
.step-card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.step-card p { margin: 0; color: var(--muted); }

.recommendation-section { padding: 120px 0; background: #0b0c0e; }
.recommendation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.recommendation-panel { padding: 28px; border: 1px solid #34383e; border-radius: 24px; background: linear-gradient(145deg, #1a1c20, #111316); box-shadow: 0 35px 90px rgba(0,0,0,.4); }
.panel-label { margin-bottom: 18px; color: #777d84; letter-spacing: .14em; font-size: .67rem; font-weight: 800; }
.recommendation-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center; padding: 21px 0; border-top: 1px solid #30343a; }
.recommendation-item strong { display: block; margin: 4px 0; font-size: 1.08rem; }
.recommendation-item span { color: var(--muted); font-size: .82rem; }
.recommendation-symbol { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,90,10,.08); position: relative; }
.speedometer::after { content: "↘"; position: absolute; inset: 5px; display: grid; place-items: center; color: var(--orange); font-size: 28px; }
.target::after { content: "◎"; position: absolute; inset: 3px; display: grid; place-items: center; color: var(--orange); font-size: 34px; }
.mini-ball::after { content: "•••"; position: absolute; inset: 8px; display: grid; place-items: center; color: #a5a9af; font-weight: 900; border: 2px solid #858a91; border-radius: 50%; }
.muted-item { opacity: .78; }
.recommendation-copy h2 { margin: 12px 0 24px; }
.recommendation-copy > p:not(.section-kicker) { color: #b4b8bd; font-size: 1.02rem; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.check-list li { color: #d8dade; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 11px; background: rgba(255,90,10,.12); color: var(--orange); border-radius: 50%; font-size: .72rem; font-weight: 900; }

.feature-band { padding: 75px 0; background: var(--orange); color: #111; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-grid article { display: grid; grid-template-columns: 58px 1fr; column-gap: 18px; }
.feature-grid h3 { font-size: 1.05rem; align-self: end; }
.feature-grid p { margin: 5px 0 0; grid-column: 2; opacity: .77; font-size: .88rem; }
.line-icon { grid-row: 1 / 3; width: 56px; height: 56px; position: relative; }
.crosshair::before { content: "◎"; font-size: 51px; position: absolute; top: -13px; }
.chart::before { content: "↗"; font-size: 54px; position: absolute; top: -16px; }
.bowling-ball::before { content: "•••"; position: absolute; inset: 5px; display: grid; place-items: center; border: 3px solid #111; border-radius: 50%; font-weight: 900; }

.early-access { padding: 110px 0; background: #0b0c0d; }
.early-access-card { display: grid; grid-template-columns: 120px 1fr auto; gap: 34px; align-items: center; padding: 44px; border: 1px solid #34383e; border-radius: 24px; background: radial-gradient(circle at 12% 50%, rgba(255,90,10,.16), transparent 24%), #15171a; }
.early-access-card img { width: 110px; border-radius: 24px; }
.early-access-card h2 { font-size: clamp(1.9rem, 3vw, 3.1rem); margin: 8px 0 12px; }
.early-access-card p:not(.section-kicker) { color: var(--muted); margin: 0; max-width: 690px; }
.email-button { white-space: nowrap; }

.legal-section { padding: 150px 0 100px; background: var(--charcoal); min-height: 100vh; }
.legal-page { max-width: 760px; }
.legal-page h1 { margin: 14px 0 6px; font-size: clamp(2.4rem, 5vw, 3.6rem); text-transform: uppercase; letter-spacing: -.045em; font-style: italic; font-family: "Roboto Condensed", sans-serif; }
.legal-updated { color: var(--muted); font-size: .85rem; margin: 0 0 40px; }
.legal-page h2 { font-size: 1.3rem; letter-spacing: -.02em; margin: 44px 0 14px; }
.legal-page p { color: #c4c7cb; font-size: .98rem; margin: 0 0 16px; }
.legal-page a { color: var(--orange-light); text-decoration: underline; }
.legal-list { color: #c4c7cb; font-size: .98rem; margin: 0 0 16px; padding-left: 22px; }
.legal-list li { margin-bottom: 8px; }

footer { border-top: 1px solid #24272c; padding: 38px 0; background: #08090a; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 28px; }
.footer-brand { font-size: 1rem; }
.footer-brand img { width: 34px; height: 34px; border-radius: 8px; }
footer p, footer small { color: #7e838a; font-size: .8rem; }
.footer-links { display: flex; gap: 18px; font-size: .8rem; color: #b8bbc0; }

@media (max-width: 960px) {
  .hero { padding-top: 125px; }
  .hero-grid, .recommendation-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .proof-row { justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .phone-stage { margin-top: 10px; }
  .split-copy { grid-template-columns: 1fr; gap: 25px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .early-access-card { grid-template-columns: 90px 1fr; }
  .early-access-card img { width: 84px; }
  .email-button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  nav { display: none; }
  .menu-button { display: grid; width: 42px; height: 42px; place-content: center; gap: 5px; background: transparent; border: 1px solid #34383e; border-radius: 8px; }
  .menu-button span { width: 19px; height: 2px; background: white; }
  .mobile-menu.open { display: grid; padding: 10px 20px 18px; gap: 5px; border-top: 1px solid #24272c; }
  .mobile-menu a { padding: 10px; color: #d5d7da; }
  h1 { font-size: 3.35rem; }
  .hero { min-height: auto; padding-bottom: 75px; }
  .phone-stage { min-height: 600px; }
  .phone-preview { height: 610px; width: 310px; }
  .orange-orbit { width: 350px; }
  .floating-card { width: 165px; padding: 12px; }
  .card-one { right: -1%; }
  .card-two { left: -2%; }
  .problem-section, .steps-section, .recommendation-section, .early-access { padding: 80px 0; }
  .early-access-card { grid-template-columns: 1fr; text-align: center; padding: 30px 22px; }
  .early-access-card img { margin: auto; }
  .email-button { grid-column: auto; justify-self: stretch; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 430px) {
  h1 { font-size: 2.85rem; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .phone-stage { min-height: 530px; }
  .phone-preview { height: 530px; width: 270px; border-radius: 39px; }
  .floating-card { display: none; }
  .orange-orbit { width: 290px; }
  .recommendation-panel { padding: 20px; }
  .recommendation-item { grid-template-columns: 46px 1fr; gap: 12px; }
  .recommendation-symbol { width: 44px; height: 44px; }
}
