:root {
  --black: #090909;
  --black-2: #111111;
  --white: #f4f3ef;
  --offwhite: #e8e7e2;
  --red: #f3163b;
  --accent: var(--red);
  --accent-gradient: var(--red);
  --line: rgba(255,255,255,.18);
  --line-dark: rgba(0,0,0,.17);
  --muted: #9b9b94;
  --header-h: 78px;
  --pad: clamp(22px, 4vw, 68px);
  --display: Arial, Helvetica, sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; color: var(--white); font-family: var(--body); background: var(--black); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--white); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:fixed; top:12px; left:12px; z-index:3000; padding:12px 16px; border-radius:6px; background:var(--white); color:var(--black); font-size:13px; font-weight:700; transform:translateY(-160%); transition:transform .2s; }
.skip-link:focus { transform:translateY(0); }

.site-intro { position:fixed; inset:0; z-index:2000; display:grid; place-content:center; justify-items:center; gap:26px; background:var(--black); pointer-events:none; animation:intro-curtain .68s cubic-bezier(.76,0,.24,1) 1.3s both; }
.site-intro img { width:min(72vw,620px); opacity:0; transform:translateY(14px) scale(.98); animation:intro-logo .44s cubic-bezier(.2,.7,.2,1) .06s forwards; }
.start-lights { display:grid; grid-template-columns:repeat(5,1fr); gap:clamp(6px,1vw,12px); padding:9px 11px; border:1px solid #292929; border-radius:9px; background:#111; box-shadow:0 16px 36px rgba(0,0,0,.42); }
.start-lights i { position:relative; display:block; width:clamp(20px,3vw,32px); height:clamp(42px,5.5vw,58px); border-radius:5px; background:#080808; color:#292929; box-shadow:inset 0 0 0 1px rgba(255,255,255,.055); }
.start-lights i::before, .start-lights i::after { content:""; position:absolute; left:50%; width:clamp(10px,1.5vw,16px); aspect-ratio:1; border-radius:50%; background:currentColor; translate:-50% 0; box-shadow:0 0 0 2px #171717, 0 0 0 transparent; }
.start-lights i::before { top:7px; }
.start-lights i::after { bottom:7px; }
.start-lights i:nth-child(1) { animation:start-light-1 1.3s steps(1,end) .08s both; }
.start-lights i:nth-child(2) { animation:start-light-2 1.3s steps(1,end) .08s both; }
.start-lights i:nth-child(3) { animation:start-light-3 1.3s steps(1,end) .08s both; }
.start-lights i:nth-child(4) { animation:start-light-4 1.3s steps(1,end) .08s both; }
.start-lights i:nth-child(5) { animation:start-light-5 1.3s steps(1,end) .08s both; }

@keyframes intro-logo {
  to { opacity:1; transform:none; }
}
@keyframes start-light-1 { 0%,18% { color:#292929; } 19%,81% { color:var(--accent); filter:drop-shadow(0 0 7px rgba(243,22,59,.8)); } 82%,100% { color:#292929; filter:none; } }
@keyframes start-light-2 { 0%,30% { color:#292929; } 31%,81% { color:var(--accent); filter:drop-shadow(0 0 7px rgba(243,22,59,.8)); } 82%,100% { color:#292929; filter:none; } }
@keyframes start-light-3 { 0%,42% { color:#292929; } 43%,81% { color:var(--accent); filter:drop-shadow(0 0 7px rgba(243,22,59,.8)); } 82%,100% { color:#292929; filter:none; } }
@keyframes start-light-4 { 0%,54% { color:#292929; } 55%,81% { color:var(--accent); filter:drop-shadow(0 0 7px rgba(243,22,59,.8)); } 82%,100% { color:#292929; filter:none; } }
@keyframes start-light-5 { 0%,66% { color:#292929; } 67%,81% { color:var(--accent); filter:drop-shadow(0 0 7px rgba(243,22,59,.8)); } 82%,100% { color:#292929; filter:none; } }
@keyframes intro-curtain {
  0% { clip-path:inset(0 0 0 0); }
  100% { clip-path:inset(0 0 100% 0); visibility:hidden; }
}
@keyframes header-enter {
  from { opacity:0; transform:translateY(-18px); }
  to { opacity:1; transform:none; }
}
@keyframes hero-item-enter {
  from { opacity:0; transform:translateY(28px); }
  to { opacity:1; transform:none; }
}
@keyframes aurora-drift {
  0% { transform:translate3d(-5%,-3%,0) scale(.95) rotate(-3deg); }
  50% { transform:translate3d(4%,5%,0) scale(1.08) rotate(2deg); }
  100% { transform:translate3d(-1%,8%,0) scale(1.02) rotate(-1deg); }
}
@keyframes aurora-drift-reverse {
  0% { transform:translate3d(5%,4%,0) scale(1.06); opacity:.48; }
  100% { transform:translate3d(-7%,-5%,0) scale(.92); opacity:.82; }
}
@keyframes aurora-ring {
  from { transform:translate3d(0,-2%,0) rotate(0deg) scale(.96); }
  to { transform:translate3d(-5%,4%,0) rotate(360deg) scale(1.05); }
}
@keyframes faq-answer-enter {
  from { opacity:0; transform:translateY(-8px); }
  to { opacity:1; transform:none; }
}

.noise { position: fixed; inset: 0; opacity: .04; pointer-events: none; z-index: 1000; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }

.site-header { position: fixed; inset: 0 0 auto 0; height: var(--header-h); padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; z-index: 100; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, color .3s; animation:header-enter .7s cubic-bezier(.2,.7,.2,1) 1.35s both; }
.site-header.scrolled { background: rgba(9,9,9,.92); backdrop-filter: blur(18px); border-color: var(--line); }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: clamp(142px, 12vw, 190px); height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 36px); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--accent-gradient); transition: right .25s; }
.main-nav a:hover::after { right: 0; }
.nav-cta { background: var(--white); color: var(--black); padding: 14px 20px; border-radius: 999px; font-weight: 700; }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; margin: 8px 0; }

section { position: relative; }
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--white); color: var(--black); }
.section-offwhite { background: var(--offwhite); color: var(--black); }
.section-accent { background: var(--accent-gradient); color: var(--black); }
.section-index { position: absolute; top: calc(var(--header-h) + 25px); right: var(--pad); display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .1em; z-index: 3; }
.section-index i { display: block; width: 45px; height: 1px; background: rgba(255,255,255,.4); }
.dark-index i { background: rgba(0,0,0,.4); }
.eyebrow { margin: 0 0 24px; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow.dark { color: rgba(0,0,0,.65); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); letter-spacing: -.07em; line-height: .96; text-transform: uppercase; font-weight: 800; }
h1 em, h2 em { font-style:normal; color:var(--accent); background:none; -webkit-text-stroke:0; -webkit-text-fill-color:var(--accent); }
.section-accent h2 em { color:var(--black); -webkit-text-fill-color:var(--black); }
h2 { font-size: clamp(52px, 7.5vw, 126px); }
p { line-height: 1.55; }

.hero-sequence { position:relative; height:175svh; background:var(--black); }
.hero { --hero-progress:0; --hero-wipe:clamp(0, calc((var(--hero-progress) - .64) * 2.78), 1); position:sticky; top:0; height:100svh; min-height: 100svh; padding: calc(var(--header-h) + 72px) var(--pad) 62px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 4vw; align-items: center; overflow: hidden; isolation:isolate; }
.hero::before { content:""; position:absolute; left:var(--pad); right:var(--pad); bottom:0; z-index:1; height:2px; background:var(--accent); transform:scaleX(var(--hero-wipe)); transform-origin:left; box-shadow:0 0 28px rgba(243,22,59,.38); will-change:transform; }
.hero-motion { position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none; }
.hero-aurora { position:absolute; inset:-24%; opacity:.78; }
.hero-aurora::before { content:""; position:absolute; inset:0; background:radial-gradient(ellipse 38% 34% at 12% 76%, rgba(243,22,59,.12), transparent 72%), radial-gradient(ellipse 44% 40% at 78% 24%, rgba(243,22,59,.17), transparent 70%), radial-gradient(ellipse 35% 32% at 54% 62%, rgba(243,22,59,.08), transparent 76%); filter:blur(42px); animation:aurora-drift 19s ease-in-out infinite alternate; will-change:transform; }
.hero-aurora::after { content:""; position:absolute; width:82vw; height:82vw; right:-12vw; top:-28vw; border-radius:50%; background:conic-gradient(from 160deg, transparent 0 34%, rgba(243,22,59,.075) 43%, transparent 53% 76%, rgba(243,22,59,.04) 88%, transparent 96%); filter:blur(26px); animation:aurora-ring 34s linear infinite; will-change:transform; }
.hero-aurora span { position:absolute; display:block; border-radius:50%; pointer-events:none; }
.hero-aurora span:first-child { width:58vw; height:30vw; right:2vw; top:30%; background:radial-gradient(ellipse, rgba(243,22,59,.1), transparent 68%); filter:blur(54px); animation:aurora-drift-reverse 15s ease-in-out infinite alternate; }
.hero-aurora span:last-child { width:36vw; height:36vw; left:22%; top:6%; border:1px solid rgba(243,22,59,.055); box-shadow:0 0 80px rgba(243,22,59,.035), inset 0 0 80px rgba(243,22,59,.025); animation:aurora-ring 42s linear -12s infinite reverse; }
.hero-copy { position: relative; z-index: 4; translate:calc(var(--hero-progress) * -8vw) calc(var(--hero-progress) * -4vh); filter:opacity(clamp(0, calc(1 - var(--hero-progress) * 2.35), 1)); will-change:translate,filter; }
.hero-copy.reveal { opacity:1; transform:none; }
.hero-copy > * { opacity:0; animation:hero-item-enter .72s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-copy > .eyebrow { animation-delay:1.28s; }
.hero-copy > h1 { animation-delay:1.4s; }
.hero-copy > .hero-lead { animation-delay:1.54s; }
.hero-copy > .hero-actions { animation-delay:1.66s; }
.hero h1 { font-size: clamp(62px, 8.2vw, 145px); margin-bottom: 34px; }
.hero-lead { max-width: 640px; font-size: clamp(17px, 1.35vw, 22px); color: #c6c6bf; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 16px; border: 0; border-radius: 999px; padding: 17px 25px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: 12px; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--accent); color: var(--white); box-shadow: 0 12px 35px rgba(243,22,59,.22); }
.text-link { text-transform: uppercase; font-size: 12px; letter-spacing: .08em; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 7px; }
.text-link span { color: var(--accent); font-size: 18px; margin-left: 8px; }
.hero-visual { position: relative; min-height: min(69vw, 760px); display: flex; align-items: center; justify-content: center; z-index: 3; translate:calc(var(--hero-progress) * -24vw) calc(var(--hero-progress) * -1vh); scale:calc(1 + var(--hero-progress) * .25); filter:opacity(calc(1 - var(--hero-wipe) * .52)); will-change:translate,scale,filter; }
.hero-visual.reveal { transform:translateY(42px) scale(.96); transition-duration:1s; transition-delay:1.22s; }
.hero-visual.reveal.is-visible { transform:none; }
.hero-block { display: none; }
.product-frame { position: relative; width: min(82%, 760px); transform:rotate(calc(-2deg + var(--hero-progress) * 2deg)); margin: 0; overflow: visible; background: transparent; will-change:transform; }
.product-frame img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 36px 38px rgba(0,0,0,.45)); }
.hero-spec { position: absolute; z-index: 3; display: flex; flex-direction: column; background: var(--black); border: 1px solid var(--line); padding: 16px 18px; min-width: 165px; opacity:clamp(0, calc(1 - var(--hero-progress) * 3.2), 1); translate:0 calc(var(--hero-progress) * -18px); }
.hero-spec strong { font-size: 29px; letter-spacing: -.05em; color: var(--accent); }
.hero-spec span { font-size: 10px; text-transform: uppercase; letter-spacing: .09em; margin-top: 4px; }
.hero-spec-a { left: 2%; bottom: 15%; }
.hero-spec-b { right: -1%; top: 13%; }
.scroll-cue { position: absolute; bottom: 26px; left: var(--pad); z-index:4; display: flex; align-items:center; gap: 15px; text-transform: uppercase; font-size: 10px; letter-spacing: .14em; opacity:0; animation:hero-item-enter .6s ease 1.9s forwards; filter:opacity(clamp(0, calc(1 - var(--hero-progress) * 3), 1)); }
.scroll-cue i { height:2px; width:50px; background: var(--accent-gradient); }

.proof-band { position:relative; z-index:2; background: var(--accent-gradient); color: var(--black); display: grid; grid-template-columns: repeat(4,1fr); padding: 0 var(--pad); }
.proof-band > div { min-height: 160px; padding: 30px 26px; border-right: 1px solid rgba(0,0,0,.3); display:flex; flex-direction:column; justify-content:center; opacity:0; transform:translateY(28px); transition:opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.proof-band.is-entered > div { opacity:1; transform:none; }
.proof-band.is-entered > div:nth-child(1) { transition-delay:.25s; }
.proof-band.is-entered > div:nth-child(2) { transition-delay:.34s; }
.proof-band.is-entered > div:nth-child(3) { transition-delay:.43s; }
.proof-band.is-entered > div:nth-child(4) { transition-delay:.52s; }
.proof-band > div:first-child { border-left: 1px solid rgba(0,0,0,.3); }
.proof-band strong { font-size: clamp(34px, 4vw, 68px); letter-spacing: -.06em; line-height: .95; }
.proof-band span { margin-top: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; max-width: 220px; }

.statement { padding: 150px var(--pad) 100px; }
.statement-grid { display: grid; grid-template-columns: .4fr 1.4fr .7fr; gap: 3vw; align-items: start; }
.statement-grid h2 { grid-column: 2; margin-bottom: 50px; }
.statement-copy { grid-column: 3; grid-row: 2; align-self: end; font-size: 17px; }
.pillars { margin-top: 100px; display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line-dark); }
.pillar { padding: 35px 30px 0 0; border-right:1px solid var(--line-dark); min-height: 270px; }
.pillar + .pillar { padding-left: 30px; }
.pillar:last-child { border-right:0; }
.pillar-no { display:block; font-size:11px; font-weight:700; margin-bottom:60px; }
.pillar h3 { text-transform:uppercase; font-size:22px; letter-spacing:-.04em; }
.pillar p { color:#4d4d48; max-width:390px; }

.product { padding: 150px var(--pad) 120px; display:grid; grid-template-columns: .78fr 1.22fr; gap: 4vw; align-items:center; min-height: 88vh; }
.product-copy { padding-right: 4vw; }
.product-copy h2 { font-size: clamp(54px, 6.6vw, 104px); }
.product-copy > p { max-width: 550px; font-size:17px; }
.product-image { margin:0; background:transparent; overflow:visible; }
.product-image img { width:100%; height:auto; object-fit:contain; filter:drop-shadow(0 32px 36px rgba(0,0,0,.16)); }
.feature-list { list-style:none; padding:0; margin:60px 0 0; border-top:1px solid var(--line-dark); }
.feature-list li { padding:17px 0; border-bottom:1px solid var(--line-dark); display:flex; gap:18px; font-size:13px; text-transform:uppercase; letter-spacing:.04em; }
.feature-list span { color:#777; min-width:32px; }

.software { padding: 150px var(--pad) 120px; }
.software-head { display:grid; grid-template-columns: .45fr 1.55fr; }
.software-head h2 { grid-column:2; }
.ui-shell { max-width: 1180px; margin: 90px auto 55px; border:1px solid #34342f; background:#121212; box-shadow: 0 40px 100px rgba(0,0,0,.45); }
.ui-topbar { height:58px; padding:0 24px; border-bottom:1px solid #34342f; display:flex; align-items:center; justify-content:space-between; font-size:11px; letter-spacing:.1em; }
.live-dot { color:var(--accent); }
.live-dot::before { content:""; display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--accent); margin-right:8px; box-shadow:0 0 12px var(--accent); }
.ui-layout { display:grid; grid-template-columns:220px 1fr; min-height:520px; }
.ui-sidebar { border-right:1px solid #34342f; padding:28px 18px; display:flex; flex-direction:column; gap:7px; }
.ui-sidebar span { padding:15px 14px; color:#74746e; font-size:12px; text-transform:uppercase; }
.ui-sidebar .active { color:var(--black); background:var(--accent-gradient); }
.ui-content { padding:36px; }
.ui-heading { display:flex; justify-content:space-between; align-items:center; padding-bottom:26px; border-bottom:1px solid #34342f; }
.ui-heading span { font-size:31px; font-weight:800; letter-spacing:-.05em; }
.ui-heading small { color:#898982; text-transform:uppercase; }
.ui-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:#34342f; margin:26px 0; }
.ui-grid div { background:#151515; min-height:125px; padding:24px; display:flex; flex-direction:column; justify-content:space-between; }
.ui-grid small { color:#75756e; font-size:9px; letter-spacing:.1em; }
.ui-grid strong { font-size:18px; letter-spacing:-.04em; }
.ui-rigs { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.ui-rigs span { border:1px solid #35352f; padding:18px 12px; text-align:center; color:#777; font-size:11px; }
.ui-rigs .on { color:var(--accent); border-color:rgba(243,22,59,.58); background:rgba(243,22,59,.06); }
.fake-launch { margin-top:30px; width:100%; border:0; background:var(--accent-gradient); color:var(--black); padding:19px; font-weight:800; text-align:left; display:flex; justify-content:space-between; cursor:default; }
.software-note { display:grid; grid-template-columns:.55fr 1fr; gap:4vw; max-width:1180px; margin:0 auto; border-top:1px solid var(--line); padding-top:35px; }
.software-note strong { font-size:22px; text-transform:uppercase; letter-spacing:-.04em; }
.software-note p { margin:0; color:#aaa; max-width:650px; }

.offers { padding:150px var(--pad) 120px; }
.offers-head { display:grid; grid-template-columns:.45fr 1.05fr .6fr; gap:3vw; align-items:end; }
.offers-head h2 { grid-column:2; }
.offers-head > p:last-child { grid-column:3; font-size:17px; }
.offer-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:90px; }
.offer-card { position:relative; border:1px solid var(--line-dark); padding:42px; min-height:720px; display:flex; flex-direction:column; }
.offer-card.network { background:var(--black); color:var(--white); border-color:var(--black); }
.network-ribbon { position:absolute; top:0; right:0; background:var(--accent-gradient); color:var(--black); font-size:9px; letter-spacing:.11em; font-weight:800; padding:10px 14px; }
.offer-tag { font-size:10px; letter-spacing:.13em; font-weight:700; }
.offer-card h3 { font-size:clamp(50px,6vw,96px); text-transform:uppercase; letter-spacing:-.07em; line-height:.9; margin:54px 0 24px; }
.offer-top p { max-width:520px; color:#575750; }
.network .offer-top p { color:#b2b2aa; }
.price { display:flex; align-items:flex-end; gap:18px; padding:38px 0 28px; border-bottom:1px solid var(--line-dark); }
.network .price { border-color:var(--line); }
.price strong { font-size:52px; letter-spacing:-.06em; line-height:.9; }
.price span { font-size:10px; text-transform:uppercase; letter-spacing:.08em; line-height:1.5; }
.offer-card ul { list-style:none; padding:10px 0 20px; margin:0; }
.offer-card li { position:relative; padding:15px 0 15px 25px; border-bottom:1px solid var(--line-dark); font-size:13px; }
.network li { border-color:var(--line); }
.offer-card li::before { content:"+"; position:absolute; left:0; color:#666; }
.network li::before { color:var(--accent); }
.offer-card li.muted { color:#888; }
.offer-card li.muted::before { content:"–"; }
.card-link { margin-top:auto; display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line-dark); padding-top:22px; text-transform:uppercase; font-size:11px; letter-spacing:.1em; }
.network .card-link { border-color:var(--line); color:var(--accent); }
.price-scale { display:grid; grid-template-columns:repeat(3,1fr); margin-top:25px; border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); }
.price-scale div { padding:25px; border-right:1px solid var(--line-dark); display:flex; flex-direction:column; gap:8px; }
.price-scale div:last-child { border-right:0; }
.price-scale span { font-size:10px; text-transform:uppercase; letter-spacing:.09em; }
.price-scale strong { font-size:24px; letter-spacing:-.04em; }
.fine-print { font-size:11px; color:#666; margin-top:16px; }

.network-story { padding:150px var(--pad) 120px; }
.network-head { display:grid; grid-template-columns:.45fr 1.55fr; }
.network-head h2 { grid-column:2; }
.journey { margin-top:100px; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(0,0,0,.35); }
.journey article { min-height:320px; padding:28px 24px 20px 0; border-right:1px solid rgba(0,0,0,.35); }
.journey article + article { padding-left:24px; }
.journey article:last-child { border-right:0; }
.journey span { display:block; font-size:11px; font-weight:700; margin-bottom:90px; }
.journey h3 { font-size:22px; text-transform:uppercase; letter-spacing:-.04em; }
.journey p { max-width:260px; }

.roi { padding:150px var(--pad) 120px; }
.roi-head { display:grid; grid-template-columns:.45fr 1.05fr .6fr; align-items:end; gap:3vw; }
.roi-head h2 { grid-column:2; }
.roi-head > p:last-child { grid-column:3; color:#aaa; font-size:17px; }
.calculator { margin-top:90px; display:grid; grid-template-columns:1.1fr .9fr; border:1px solid var(--line); }
.calc-inputs { padding:42px; display:grid; grid-template-columns:1fr 1fr; gap:38px 34px; }
.calc-inputs label { display:flex; flex-direction:column; gap:12px; color:#d0d0ca; }
.field-heading { min-height:44px; display:flex; align-items:flex-start; justify-content:space-between; gap:18px; font-size:14px; font-weight:700; line-height:1.3; }
.field-heading > span, .field-label { text-transform:uppercase; letter-spacing:.065em; }
.field-heading output { flex:none; color:var(--white); font-size:17px; font-weight:800; letter-spacing:-.02em; }
.range-limits { display:flex; justify-content:space-between; color:#777771; font-size:11px; letter-spacing:.03em; }
.calc-inputs input[type="range"] { --range-progress:0%; appearance:none; -webkit-appearance:none; width:100%; height:24px; margin:0; padding:0; border:0; background:transparent; cursor:pointer; }
.calc-inputs input[type="range"]::-webkit-slider-runnable-track { height:4px; border-radius:99px; background:linear-gradient(to right, var(--accent) 0 var(--range-progress), #45453f var(--range-progress) 100%); }
.calc-inputs input[type="range"]::-webkit-slider-thumb { appearance:none; -webkit-appearance:none; width:22px; height:22px; margin-top:-9px; border:6px solid var(--accent); border-radius:50%; background:var(--white); box-shadow:0 0 0 4px rgba(243,22,59,.14); }
.calc-inputs input[type="range"]::-moz-range-track { height:4px; border-radius:99px; background:#45453f; }
.calc-inputs input[type="range"]::-moz-range-progress { height:4px; border-radius:99px; background:var(--accent); }
.calc-inputs input[type="range"]::-moz-range-thumb { width:12px; height:12px; border:5px solid var(--accent); border-radius:50%; background:var(--white); box-shadow:0 0 0 4px rgba(243,22,59,.14); }
.calc-inputs input[type="range"]:focus-visible { outline:2px solid var(--accent); outline-offset:5px; }
.offer-field { min-width:0; margin:0; padding:0; border:0; color:#d0d0ca; }
.offer-field legend { width:100%; min-height:44px; margin:0; padding:0; text-transform:uppercase; letter-spacing:.065em; font-size:14px; font-weight:700; line-height:1.3; }
.offer-options { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.calc-inputs .offer-option { position:relative; display:block; color:#d0d0ca; cursor:pointer; }
.offer-option input { position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.offer-option-card { min-height:58px; padding:10px 13px; border:1px solid #494943; background:#151515; display:flex; flex-direction:column; justify-content:center; gap:3px; transition:background .2s, border-color .2s, color .2s, transform .2s; }
.offer-option-card > span { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; }
.offer-option-card strong { color:var(--white); font-size:16px; line-height:1.2; letter-spacing:-.02em; }
.offer-option:hover .offer-option-card { border-color:#777770; transform:translateY(-1px); }
.offer-option input:checked + .offer-option-card { background:var(--accent); border-color:var(--accent); color:var(--white); box-shadow:0 0 0 4px rgba(243,22,59,.12); }
.offer-option input:focus-visible + .offer-option-card { outline:2px solid var(--white); outline-offset:3px; }
.calc-results { background:var(--accent-gradient); color:var(--black); padding:42px; display:flex; flex-direction:column; justify-content:center; }
.calc-results > div { padding:20px 0; border-bottom:1px solid rgba(0,0,0,.3); }
.calc-results span { display:block; font-size:14px; font-weight:800; line-height:1.35; text-transform:uppercase; letter-spacing:.065em; margin-bottom:10px; }
.calc-results strong { font-size:clamp(34px,4vw,64px); letter-spacing:-.06em; }
.calc-results p { font-size:12px; line-height:1.55; margin:25px 0 0; opacity:.72; }
.break-even { margin-top:35px; display:grid; grid-template-columns:max-content minmax(0,620px); gap:clamp(32px,3vw,64px); align-items:center; justify-content:start; border-top:1px solid var(--line); padding-top:30px; }
.break-even strong { color:var(--accent); font-size:clamp(34px,4vw,64px); letter-spacing:-.06em; }
.break-even p { color:#aaa; max-width:620px; font-size:17px; }

.process { padding:150px var(--pad) 120px; }
.process-head { display:grid; grid-template-columns:.45fr 1.55fr; }
.process-head h2 { grid-column:2; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line-dark); margin-top:100px; }
.process-grid article { padding:28px 25px 10px 0; border-right:1px solid var(--line-dark); min-height:260px; }
.process-grid article + article { padding-left:25px; }
.process-grid article:last-child { border-right:0; }
.process-grid span { font-size:11px; display:block; margin-bottom:70px; }
.process-grid h3 { font-size:24px; text-transform:uppercase; letter-spacing:-.04em; }
.process-grid p { color:#555; }

.faq { padding:150px var(--pad) 120px; }
.faq-head { display:grid; grid-template-columns:.45fr 1.05fr .6fr; gap:3vw; align-items:end; }
.faq-head h2 { grid-column:2; }
.faq-head > p:last-child { grid-column:3; max-width:560px; color:#555; font-size:17px; }
.faq-list { margin-top:90px; border-top:1px solid var(--line-dark); }
.faq-item { border-bottom:1px solid var(--line-dark); }
.faq-item summary { list-style:none; display:grid; grid-template-columns:54px minmax(0,1fr) 36px; gap:22px; align-items:center; min-height:96px; padding:22px 0; cursor:pointer; transition:color .2s; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary:focus-visible { outline:2px solid var(--accent); outline-offset:6px; }
.faq-no { align-self:start; padding-top:7px; color:#777; font-size:11px; font-weight:700; letter-spacing:.08em; }
.faq-item h3 { margin:0; font-size:clamp(22px,2.2vw,36px); line-height:1.05; letter-spacing:-.045em; }
.faq-toggle { position:relative; width:32px; height:32px; border:1px solid rgba(0,0,0,.32); border-radius:50%; transition:background .25s, border-color .25s, transform .35s; }
.faq-toggle::before, .faq-toggle::after { content:""; position:absolute; left:50%; top:50%; width:12px; height:1px; background:currentColor; transform:translate(-50%,-50%); }
.faq-toggle::after { transform:translate(-50%,-50%) rotate(90deg); }
.faq-item summary:hover { color:var(--accent); }
.faq-item[open] summary { color:var(--accent); }
.faq-item[open] .faq-toggle { color:var(--white); background:var(--accent); border-color:var(--accent); transform:rotate(45deg); }
.faq-answer { padding:0 68px 32px 76px; animation:faq-answer-enter .35s ease both; }
.faq-answer p { max-width:900px; margin:0; color:#464640; font-size:17px; line-height:1.65; }

.contact { padding:150px var(--pad) 120px; display:grid; grid-template-columns:.95fr 1.05fr; gap:7vw; align-items:start; }
.contact-copy h2 { font-size:clamp(58px,7.8vw,126px); }
.contact-copy > p { color:#aaa; max-width:600px; font-size:17px; }
.contact-direct { margin-top:60px; display:flex; flex-direction:column; gap:12px; }
.contact-direct a { font-size:clamp(22px,2.5vw,42px); letter-spacing:-.05em; }
.contact-form { margin-top:38px; display:grid; grid-template-columns:1fr 1fr; gap:30px 28px; }
.contact-form label { display:flex; flex-direction:column; gap:10px; color:#aaa; font-size:10px; text-transform:uppercase; letter-spacing:.1em; }
.contact-form input, .contact-form textarea { border:0; border-bottom:1px solid #4a4a44; background:transparent; color:var(--white); padding:20px 0; outline:none; resize:vertical; }
.contact-form input { min-height:64px; }
.contact-form textarea { min-height:clamp(210px,18vw,310px); line-height:1.55; }
.contact-form .button { min-height:64px; }
.contact-form input:focus, .contact-form textarea:focus { border-color:var(--accent); }
.contact-form .full { grid-column:1/-1; }
.form-note { color:#777; font-size:10px; text-transform:none; letter-spacing:0; margin:0; }

.site-footer { min-height:150px; background:var(--black); border-top:1px solid var(--line); padding:38px var(--pad); display:grid; grid-template-columns:1fr 1fr 1fr; align-items:center; color:#aaa; font-size:11px; text-transform:uppercase; letter-spacing:.1em; }
.site-footer .brand-logo { width: clamp(165px, 15vw, 220px); }
.site-footer p { margin:0; text-align:center; }
.site-footer > div { display:flex; justify-content:flex-end; gap:24px; }

.reveal { opacity:0; transform:translateY(32px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); transition-delay:var(--delay, 0ms); }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1050px) {
  .hero-sequence { height:auto; background:var(--black); }
  .hero { position:relative; height:auto; grid-template-columns:1fr; padding-top:130px; }
  .hero::before { display:none; }
  .hero-copy, .hero-visual, .hero-spec { translate:none; scale:1; filter:none; opacity:1; }
  .product-frame { transform:rotate(-2deg); }
  .hero-visual { min-height:650px; }
  .proof-band { grid-template-columns:1fr 1fr; }
  .statement-grid, .software-head, .network-head, .process-head { grid-template-columns:1fr; }
  .statement-grid h2, .software-head h2, .network-head h2, .process-head h2 { grid-column:1; }
  .statement-copy { grid-column:1; grid-row:auto; max-width:700px; }
  .product { grid-template-columns:1fr; }
  .product-image { order:-1; }
  .offers-head, .roi-head, .faq-head { grid-template-columns:1fr; }
  .offers-head h2, .offers-head > p:last-child, .roi-head h2, .roi-head > p:last-child, .faq-head h2, .faq-head > p:last-child { grid-column:1; }
  .journey, .process-grid { grid-template-columns:1fr 1fr; }
  .journey article:nth-child(2), .process-grid article:nth-child(2) { border-right:0; }
  .journey article:nth-child(n+3), .process-grid article:nth-child(n+3) { border-top:1px solid rgba(0,0,0,.35); }
  .calculator { grid-template-columns:1fr; }
  .contact { grid-template-columns:1fr; }
  .contact-form { margin-top:0; }
}

@media (max-width: 780px) {
  :root { --header-h:66px; --pad:20px; }
  .site-header { color:var(--white); }
  .brand-logo { width: 132px; }
  .menu-toggle { display:block; }
  .main-nav { position:fixed; inset:var(--header-h) 0 auto 0; display:none; flex-direction:column; align-items:stretch; background:var(--black); padding:25px var(--pad) 35px; border-bottom:1px solid var(--line); }
  .main-nav.open { display:flex; }
  .main-nav a { padding:12px 0; }
  .nav-cta { text-align:center; margin-top:5px; }
  .section-index { display:none; }
  .hero { min-height:auto; padding-top:115px; }
  .hero h1 { font-size:clamp(46px,11.6vw,70px); letter-spacing:-.075em; }
  .hero-visual { min-height:430px; margin-top:10px; }
  .hero-aurora { inset:-18%; opacity:.62; }
  .hero-block { width:82%; height:72%; }
  .hero-spec { min-width:130px; padding:12px; }
  .hero-spec strong { font-size:22px; }
  .hero-spec-a { left:0; bottom:8%; }
  .hero-spec-b { right:0; top:8%; }
  .scroll-cue { display:none; }
  .proof-band { grid-template-columns:1fr; }
  .proof-band > div { min-height:120px; border-right:0; border-bottom:1px solid rgba(0,0,0,.3); }
  .proof-band > div:first-child { border-left:0; }
  .statement, .software, .offers, .network-story, .roi, .process, .faq, .contact { padding-top:100px; padding-bottom:80px; }
  h2 { font-size:clamp(48px,15vw,76px); }
  .pillars, .offer-grid, .price-scale, .journey, .process-grid { grid-template-columns:1fr; }
  .pillar, .pillar + .pillar, .journey article, .journey article + article, .process-grid article, .process-grid article + article { padding-left:0; padding-right:0; border-right:0; border-bottom:1px solid var(--line-dark); }
  .pillar { min-height:220px; }
  .pillar-no { margin-bottom:40px; }
  .product { padding-top:100px; padding-bottom:80px; }
  .ui-layout { grid-template-columns:1fr; }
  .ui-sidebar { display:none; }
  .ui-content { padding:20px; }
  .ui-grid { grid-template-columns:1fr; }
  .ui-rigs { grid-template-columns:1fr 1fr; }
  .software-note { grid-template-columns:1fr; }
  .offer-card { min-height:auto; padding:30px 22px; }
  .offer-card h3 { margin-top:40px; }
  .price-scale div { border-right:0; border-bottom:1px solid var(--line-dark); }
  .journey article:nth-child(n+3), .process-grid article:nth-child(n+3) { border-top:0; }
  .journey article, .process-grid article { min-height:230px; }
  .journey span, .process-grid span { margin-bottom:45px; }
  .calc-inputs { grid-template-columns:1fr; padding:24px; }
  .calc-results { padding:30px 24px; }
  .break-even { grid-template-columns:1fr; gap:18px; align-items:start; }
  .faq-list { margin-top:60px; }
  .faq-item summary { grid-template-columns:34px minmax(0,1fr) 30px; gap:12px; min-height:84px; padding:18px 0; }
  .faq-no { padding-top:4px; }
  .faq-toggle { width:28px; height:28px; }
  .faq-answer { padding:0 0 26px 46px; }
  .faq-answer p { font-size:16px; }
  .contact-form { grid-template-columns:1fr; }
  .contact-form input { min-height:56px; }
  .contact-form textarea { min-height:160px; }
  .contact-form .full { grid-column:1; }
  .site-footer { grid-template-columns:1fr; gap:25px; text-align:left; }
  .site-footer p { text-align:left; }
  .site-footer > div { justify-content:flex-start; flex-direction:column; gap:10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
  .site-intro { display:none; }
  .hero-sequence { height:auto; background:var(--black); }
  .hero { position:relative; height:auto; }
  .hero::before { display:none; }
  .hero-copy, .hero-visual, .hero-spec { translate:none; scale:1; filter:none; opacity:1; }
  .hero-copy > *, .scroll-cue { opacity:1; transform:none; }
  .hero-aurora::before, .hero-aurora::after, .hero-aurora span { animation:none; }
  .proof-band { clip-path:none; }
  .proof-band > div { opacity:1; transform:none; }
}
