:root {
  --bg: #070a0a;
  --bg-soft: #0b1010;
  --panel: #101616;
  --panel-2: #151c1b;
  --line: rgba(255, 255, 255, .1);
  --text: #f5f3ed;
  --muted: #9ca5a2;
  --orange: #ff6b2c;
  --orange-soft: #ffb091;
  --green: #6bd9b4;
  --shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body::selection { background: var(--orange); color: #fff; }
a { color: inherit; }
img { max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 128px 0; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; background: white; color: black; padding: 12px 16px; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 30; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(7, 10, 10, .88); border-color: var(--line); backdrop-filter: blur(18px); }
.nav-wrap { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand img { display: block; width: 136px; height: auto; }
nav { display: flex; align-items: center; gap: 32px; }
nav a { text-decoration: none; color: #c3cac7; font-size: 14px; font-weight: 600; }
nav a:hover { color: white; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 56px; padding: 0 24px; border: 1px solid var(--orange); border-radius: 4px; background: var(--orange); color: white; text-decoration: none; font: 700 15px/1 inherit; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { background: #ff7b43; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255, 107, 44, .2); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(255, 107, 44, .35); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 0 18px; font-size: 13px; }
.button-full { width: 100%; }
.button:disabled { opacity: .6; cursor: wait; transform: none; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: #d6dbd9; text-decoration: none; font-size: 14px; font-weight: 700; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 25px; color: #bac1be; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.045em; }
h1 { margin-bottom: 28px; font-size: clamp(54px, 6.2vw, 88px); line-height: .98; font-weight: 760; }
h2 { margin-bottom: 28px; font-size: clamp(44px, 5vw, 70px); line-height: 1.02; }
h1 em, h2 em { color: var(--orange); font-style: normal; font-weight: inherit; }

.hero { position: relative; min-height: 900px; display: flex; align-items: center; padding: 150px 0 90px; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(to right, black, transparent 78%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.hero-glow-one { width: 550px; height: 550px; right: 5%; top: 12%; background: radial-gradient(circle, rgba(255,107,44,.16), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: -12%; bottom: -15%; background: radial-gradient(circle, rgba(107,217,180,.08), transparent 68%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.hero-lead { max-width: 650px; margin-bottom: 38px; color: #b2bab7; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.hero-proof { display: flex; gap: 24px; margin-top: 40px; color: #8f9895; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: "✓"; color: var(--green); font-weight: 900; }

.product-stage { position: relative; min-height: 660px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; }
.orbit-two { width: 420px; height: 420px; border-color: rgba(255,107,44,.15); }
.phone { position: relative; z-index: 2; width: 326px; min-height: 650px; padding: 12px 17px 22px; border: 1px solid rgba(255,255,255,.2); border-radius: 38px; background: linear-gradient(160deg, #18201f, #0b100f 45%); box-shadow: var(--shadow), inset 0 0 0 5px #050706; transform: rotate(2deg); }
.phone::after { content: ""; position: absolute; inset: 7px; pointer-events: none; border: 1px solid rgba(255,255,255,.05); border-radius: 31px; }
.phone-bar { height: 30px; display: flex; justify-content: space-between; align-items: center; padding: 0 8px; font-size: 9px; color: #aab2af; }
.phone-bar i { width: 70px; height: 18px; background: #030505; border-radius: 20px; }
.app-head { display: flex; align-items: center; gap: 10px; padding: 14px 4px 18px; }
.app-head img { border-radius: 11px; }
.app-head div { display: grid; flex: 1; }
.app-head small { color: #8f9995; font-size: 9px; }
.app-head strong { margin-top: 2px; font-size: 14px; }
.app-head b { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid #39413f; border-radius: 50%; color: var(--orange); font-size: 9px; }
.focus-card { padding: 17px; background: linear-gradient(145deg, rgba(255,107,44,.18), rgba(255,107,44,.04)); border: 1px solid rgba(255,107,44,.25); border-radius: 16px; }
.focus-label { color: var(--orange-soft); text-transform: uppercase; letter-spacing: .1em; font-size: 8px; font-weight: 800; }
.focus-label span { display: inline-block; width: 5px; height: 5px; margin-right: 4px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 10px var(--orange); }
.client-row { display: flex; align-items: center; gap: 10px; margin: 15px 0; }
.client-row div:nth-child(2) { display: grid; }
.client-row strong { font-size: 13px; }
.client-row small { margin-top: 3px; color: #a7afac; font-size: 9px; }
.avatar { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: #283331; color: #dfe5e2; font-size: 9px; font-weight: 800; }
.focus-card button { width: 100%; height: 34px; display: flex; justify-content: space-between; align-items: center; padding: 0 12px; border: 0; border-radius: 5px; color: #fff; background: var(--orange); font-size: 9px; font-weight: 800; }
.mini-title { display: flex; justify-content: space-between; margin: 22px 2px 9px; }
.mini-title strong { font-size: 11px; }.mini-title span { color: #8d9693; font-size: 8px; }
.appointment { display: flex; align-items: center; min-height: 48px; padding: 9px 5px; border-bottom: 1px solid rgba(255,255,255,.06); }
.appointment time { width: 42px; color: #c5ccca; font-size: 9px; }.appointment i { width: 5px; height: 5px; margin-right: 11px; border-radius: 50%; background: var(--green); }.appointment div { display: grid; }.appointment strong { font-size: 10px; }.appointment small { margin-top: 3px; color: #7e8985; font-size: 8px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stats div { padding: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; background: rgba(255,255,255,.025); display: grid; }
.stats small { color: #7f8a86; font-size: 7px; }.stats strong { margin: 6px 0 2px; font-size: 19px; }.stats span { color: #89918f; font-size: 7px; }.stats .trend { color: var(--green); }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; background: rgba(20,27,26,.92); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 50px rgba(0,0,0,.35); backdrop-filter: blur(15px); }
.float-result { right: -36px; top: 130px; width: 230px; padding: 14px; gap: 11px; border-radius: 12px; }
.float-icon { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--orange); font-weight: 900; }
.float-result div { display: grid; }.float-result small { color: #8f9995; font-size: 8px; }.float-result strong { margin-top: 3px; font-size: 10px; line-height: 1.3; }
.float-retention { left: -28px; bottom: 130px; padding: 17px 20px; border-radius: 12px; display: grid; }
.float-retention strong { color: var(--green); font-size: 23px; }.float-retention span { color: #9da6a3; font-size: 9px; }

.problem { background: #0a0e0e; }
.statement { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 100px; margin-bottom: 76px; }
.statement h2 { margin: 0; }.statement p, .section-heading > p { margin-bottom: 7px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.pain-card { min-height: 245px; padding: 35px 34px 20px 0; border-right: 1px solid var(--line); }
.pain-card + .pain-card { padding-left: 34px; }.pain-card:last-child { border-right: 0; }
.pain-card > span, .feature-num { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.pain-card h3 { margin: 48px 0 14px; font-size: 22px; }.pain-card p { color: var(--muted); line-height: 1.65; }

.features { background: #eef0ea; color: #121716; }
.features .eyebrow { color: #656d69; }.features h2 em { color: #ea5c24; }
.section-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 100px; align-items: end; margin-bottom: 70px; }
.section-heading h2 { margin: 0; }.section-heading > p { color: #5e6763; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature { min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; padding: 40px; overflow: hidden; background: #fff; border: 1px solid #daddd7; border-radius: 10px; }
.feature-large, .feature-wide { grid-column: 1 / -1; min-height: 450px; flex-direction: row; align-items: center; gap: 60px; }
.feature-copy { max-width: 470px; }.feature-copy h3 { margin: 25px 0 15px; font-size: 29px; letter-spacing: -.025em; }.feature-copy p { color: #606864; font-size: 16px; line-height: 1.7; }
.client-list { flex: 1; max-width: 540px; width: 100%; padding: 20px; background: #f3f4f0; border-radius: 9px; }
.client-list > div { display: flex; align-items: center; gap: 12px; padding: 15px; background: #fff; border-bottom: 1px solid #e7e9e4; }
.client-list p { flex: 1; display: grid; margin: 0; }.client-list p b { font-size: 13px; }.client-list p small { margin-top: 4px; color: #7c8581; font-size: 10px; }.client-list > div > strong { padding: 6px 8px; border-radius: 4px; font-size: 9px; }.client-list .ok { color: #267b61; background: #e5f5ed; }.client-list .attention { color: #b94c20; background: #fff0e9; }.avatar.coral { background: #ffd8c8; color: #9d3b17; }.avatar.green { background: #cceede; color: #176047; }
.workout-lines { padding-top: 45px; }.workout-lines i { position: relative; display: block; height: 10px; margin-top: 15px; border-radius: 10px; background: #e8eae5; }.workout-lines i::after { content: ""; display: block; width: var(--w); height: 100%; border-radius: inherit; background: #1e2825; }.workout-lines i:nth-child(2)::after { background: var(--orange); }.workout-lines span { display: block; margin-top: 16px; color: #69716d; font-size: 11px; text-align: right; }
.week { display: flex; justify-content: space-between; padding-top: 44px; }.week b { width: 50px; height: 70px; display: grid; place-items: center; padding: 8px 0; color: #737b77; font-size: 10px; }.week small { font-size: 16px; color: #1b2321; }.week .active { color: #fff; background: var(--orange); border-radius: 8px; }.week .active small { color: #fff; }
.milestone { flex: 1; max-width: 550px; display: flex; align-items: center; gap: 24px; padding: 34px; color: white; background: #111817; border-radius: 10px; }
.pulse { position: relative; flex: 0 0 78px; height: 78px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); font-size: 30px; box-shadow: 0 0 0 13px rgba(255,107,44,.12), 0 0 0 26px rgba(255,107,44,.05); }
.milestone p { display: grid; margin: 0; }.milestone small { color: var(--orange-soft); font-size: 9px; letter-spacing: .12em; }.milestone b { margin: 8px 0 15px; font-size: 18px; }.milestone span { color: #adb5b2; font-size: 11px; }

.beta { background: #0a0e0e; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.beta-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 110px; align-items: center; }
.beta-copy > p:not(.eyebrow) { max-width: 580px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.limited { display: flex; align-items: center; gap: 20px; margin-top: 45px; }.limited > span { color: var(--orange); font-size: 68px; line-height: 1; font-weight: 800; }.limited p { display: grid; margin: 0; }.limited strong { font-size: 15px; }.limited small { margin-top: 5px; color: #7f8985; }
.beta-panel { padding: 42px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
.beta-panel h3 { margin-bottom: 30px; font-size: 21px; }.beta-panel ul { margin: 0; padding: 0; list-style: none; }.beta-panel li { display: flex; align-items: center; gap: 15px; padding: 17px 0; color: #c8cecc; border-bottom: 1px solid var(--line); font-size: 14px; }.beta-panel li i { display: grid; place-items: center; flex: 0 0 26px; height: 26px; border-radius: 50%; color: var(--green); background: rgba(107,217,180,.1); font-style: normal; font-weight: 800; }
.beta-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 28px 0; }.beta-meta div { display: grid; }.beta-meta small { margin-bottom: 7px; color: #737d79; font-size: 8px; letter-spacing: .12em; }.beta-meta strong { font-size: 12px; }

.apply { background: #0d1211; }
.apply-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 100px; align-items: start; }
.apply-intro { position: sticky; top: 120px; }.apply-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }.steps { margin-top: 50px; border-top: 1px solid var(--line); }.steps > div { display: flex; align-items: center; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }.steps b { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid #48504d; border-radius: 50%; color: var(--orange); font-size: 10px; }.steps span { display: grid; }.steps strong { font-size: 13px; }.steps small { margin-top: 4px; color: #79827f; font-size: 10px; }
.apply-form { padding: 44px; background: #f0f1ec; color: #141918; border-radius: 10px; }
.form-head { display: flex; gap: 15px; padding-bottom: 28px; border-bottom: 1px solid #d5d8d2; }.form-head > span { color: #eb5c24; font-size: 11px; font-weight: 800; }.form-head h3 { margin-bottom: 5px; font-size: 22px; }.form-head p { margin: 0; color: #777f7b; font-size: 11px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.apply-form > label, .field-row label { display: grid; gap: 9px; margin-top: 23px; color: #333a37; font-size: 11px; font-weight: 700; }
.apply-form > label small { color: #747c77; font-size: 11px; font-weight: 500; line-height: 1.45; }
input, select, textarea { width: 100%; border: 1px solid #ccd0c9; border-radius: 5px; background: #fff; color: #171c1a; font: 14px/1.4 inherit; }
input, select { height: 48px; padding: 0 13px; }.apply-form textarea { padding: 13px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #9da59f; }
fieldset { margin: 26px 0 0; padding: 0; border: 0; } legend { margin-bottom: 14px; color: #333a37; font-size: 11px; font-weight: 700; }
.apply-form .check { display: flex; align-items: flex-start; gap: 11px; margin: 11px 0; color: #59615d; font-size: 12px; font-weight: 500; line-height: 1.5; }.check input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--orange); }.check a { color: #c74a1c; }.privacy-check { padding-top: 18px; border-top: 1px solid #d5d8d2; }
.apply-form .submit-button { margin-top: 24px; }.honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin: 16px 0 0; padding: 14px; border-radius: 5px; font-size: 12px; line-height: 1.55; }.form-status.error { display: block; color: #9d3512; background: #ffe3d7; }.form-status.success { display: block; color: #155943; background: #d9f3e8; }

.final-cta { position: relative; padding: 120px 0; text-align: center; overflow: hidden; background: radial-gradient(circle at 50% 80%, rgba(255,107,44,.13), transparent 45%), #070a0a; }
.final-cta img { border-radius: 20px; box-shadow: 0 15px 40px rgba(255,107,44,.16); }.final-cta .eyebrow { justify-content: center; margin-top: 32px; }.final-cta h2 { margin-bottom: 38px; }
footer { padding: 28px 0; color: #7d8783; border-top: 1px solid var(--line); background: #050707; }
.footer-row { display: flex; align-items: center; gap: 28px; }.footer-row img { width: 112px; height: auto; opacity: .8; }.footer-row p { flex: 1; margin: 0; font-size: 11px; }.footer-row div { display: flex; gap: 18px; }.footer-row a, .footer-row small { font-size: 10px; text-decoration: none; }

.legal-page { background: #0b100f; }.legal { max-width: 800px; padding: 160px 0 100px; }.legal h1 { font-size: clamp(42px, 7vw, 66px); }.legal h2 { margin-top: 48px; font-size: 22px; letter-spacing: -.02em; }.legal p { color: #adb5b2; line-height: 1.75; }.legal a:not(.button) { color: var(--orange-soft); }.legal-updated { padding-bottom: 30px; border-bottom: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }.reveal-delay { transition-delay: .16s; }.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.phone { transform: none; } }

@media (max-width: 1050px) {
  .hero { padding-top: 130px; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 780px; }.product-stage { margin-top: -20px; }.float-result { right: 8%; }.float-retention { left: 8%; }
  .statement, .section-heading, .beta-grid, .apply-grid { gap: 55px; }.apply-grid { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 32px, 620px); }.section-pad { padding: 86px 0; }
  .nav-wrap { height: 68px; } nav > a:not(.button) { display: none; }.brand img { width: 120px; }
  h1 { font-size: clamp(46px, 14vw, 66px); } h2 { font-size: clamp(39px, 11vw, 54px); }
  .hero { min-height: auto; padding: 125px 0 80px; }.hero-grid { gap: 35px; }.hero-lead { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }.hero-proof { flex-wrap: wrap; gap: 12px 18px; }
  .product-stage { min-height: 600px; transform: scale(.88); margin: -30px -40px -50px; }.phone { width: 310px; }.float-result { right: 0; }.float-retention { left: 0; }
  .statement, .section-heading, .beta-grid, .apply-grid { grid-template-columns: 1fr; gap: 42px; }.statement { margin-bottom: 45px; }.pain-grid { grid-template-columns: 1fr; }.pain-card, .pain-card + .pain-card { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }.pain-card h3 { margin-top: 30px; }
  .section-heading { margin-bottom: 46px; }.feature-grid { grid-template-columns: 1fr; }.feature, .feature-large, .feature-wide { grid-column: auto; min-height: 380px; padding: 28px; flex-direction: column; align-items: stretch; }.client-list, .milestone { max-width: none; }.milestone { margin-top: 25px; padding: 25px 20px; }.pulse { flex-basis: 56px; height: 56px; }
  .beta-panel { padding: 28px 22px; }.beta-meta { gap: 4px; }.beta-meta strong { font-size: 10px; }
  .apply-intro { position: static; }.apply-form { padding: 28px 20px; }.field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-row { flex-wrap: wrap; }.footer-row p { order: 3; flex-basis: 100%; }.footer-row small { margin-left: auto; }
  .legal { padding-top: 130px; }
}

@media (max-width: 430px) {
  .product-stage { transform: scale(.76); margin: -75px -80px -100px; }.float-result { right: -35px; }.float-retention { left: -25px; }
  .hero-proof { font-size: 10px; }.feature-copy h3 { font-size: 25px; }.milestone { align-items: flex-start; }.milestone b { font-size: 15px; }
}

/* Real SpotMe coach dashboard used in the hero. */
.product-stage-real {
  min-height: 720px;
  margin: 0;
  padding: 22px 0 28px;
  align-content: center;
  isolation: isolate;
}
.product-stage-real::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 44, .2), rgba(255, 107, 44, .04) 48%, transparent 72%);
  filter: blur(22px);
}
.product-stage-real > div { display: none; }
.pt-dashboard {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 720px;
  border: 1px solid rgba(255, 107, 44, .34);
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .55), 0 0 55px rgba(255, 107, 44, .09);
}
.product-caption {
  margin: 16px 0 0;
  color: #7f8985;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .product-stage-real {
    min-height: 650px;
    margin: 0;
    padding-bottom: 0;
    transform: none;
  }
  .pt-dashboard { max-height: 610px; border-radius: 24px; }
}

@media (max-width: 430px) {
  .product-stage-real { min-height: 590px; margin: 0; transform: none; }
  .pt-dashboard { max-height: 550px; border-radius: 22px; }
  .product-caption { font-size: 8px; }
}
