:root {
  --bg: #020406;
  --bg-soft: #06090d;
  --panel: rgba(9, 13, 18, .76);
  --line: rgba(174, 197, 222, .14);
  --line-strong: rgba(174, 197, 222, .28);
  --text: #f3f5f8;
  --muted: #949ca7;
  --blue: #3b9dff;
  --blue-soft: #77baff;
  --gold: #d9ad5a;
  --gold-pale: #f2d390;
  --header-h: 72px;
  --rail-w: 108px;
  --max: 1540px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 8%, rgba(28, 88, 165, .13), transparent 27rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: rgba(59, 157, 255, .32); color: white; }

.noise {
  position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: .035;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; z-index: 999; width: 340px; height: 340px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(50, 145, 255, .12) 0, rgba(50, 145, 255, .045) 34%, transparent 68%);
  transform: translate3d(-50%,-50%,0); opacity: 0; transition: opacity .35s ease, width .3s ease, height .3s ease;
  mix-blend-mode: screen;
}
.cursor-glow.is-visible { opacity: 1; }
.cursor-glow.is-hovering { width: 460px; height: 460px; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto 0; height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
  padding: 0 3.5vw; border-bottom: 1px solid var(--line);
  background: rgba(2, 4, 6, .76); backdrop-filter: blur(20px) saturate(130%);
}
.brand { display: inline-flex; align-items: center; gap: 14px; width: max-content; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(198, 219, 241, .65);
  color: white; font: 700 15px/1 Georgia, serif; background: rgba(16, 25, 38, .72);
  box-shadow: inset 0 0 18px rgba(77, 139, 218, .1);
}
.brand-name { font-size: 13px; font-weight: 700; letter-spacing: .2em; white-space: nowrap; }
.top-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 3rem); }
.top-nav a { position: relative; color: #aab1ba; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; transition: color .25s; }
.top-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--blue); transition: right .35s var(--ease); }
.top-nav a:hover { color: white; }
.top-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-button span { display: block; width: 21px; height: 1px; margin: 5px auto; background: white; transition: transform .3s, opacity .3s; }

.button {
  position: relative; isolation: isolate; overflow: hidden; min-height: 46px; padding: 0 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  border: 1px solid var(--line-strong); border-radius: 5px;
  font-size: 11px; font-weight: 750; letter-spacing: .06em; white-space: nowrap;
  transition: border-color .3s, box-shadow .35s, transform .25s var(--ease), color .25s, background .25s;
}
.button::before {
  content: ""; position: absolute; z-index: -1; inset: -2px; transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent); transition: transform .7s var(--ease);
}
.button:hover::before { transform: translateX(110%) skewX(-18deg); }
.button:hover { transform: translateY(-2px); }
.button-light { color: #07101b; background: #f3f7fc; border-color: white; box-shadow: 0 0 26px rgba(117, 181, 255, .24), inset 0 0 20px rgba(255,255,255,.7); }
.button-light:hover { box-shadow: 0 0 40px rgba(117, 181, 255, .42); }
.button-gold { color: #fff8e8; border-color: rgba(243, 200, 112, .8); background: linear-gradient(135deg, rgba(135,91,24,.62), rgba(205,153,61,.65)); box-shadow: 0 0 25px rgba(218, 166, 74, .22), inset 0 0 22px rgba(255,226,160,.12); }
.button-gold:hover { box-shadow: 0 0 42px rgba(218,166,74,.4); }
.button-outline { color: white; border-color: rgba(68,145,226,.65); background: rgba(7,14,23,.42); box-shadow: inset 0 0 18px rgba(29,104,188,.08); }
.button-outline:hover { border-color: var(--blue); box-shadow: 0 0 25px rgba(50,146,255,.18), inset 0 0 20px rgba(50,146,255,.12); }

.section-rail {
  position: fixed; z-index: 50; top: var(--header-h); bottom: 0; left: 0; width: var(--rail-w);
  display: grid; grid-template-rows: repeat(6, 1fr); border-right: 1px solid var(--line); background: rgba(2,4,6,.76); backdrop-filter: blur(16px);
}
.rail-line { position: absolute; right: -1px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.rail-progress { position: absolute; top: 0; left: 0; width: 1px; height: 0%; background: linear-gradient(var(--gold), var(--blue)); box-shadow: 0 0 10px rgba(59,157,255,.7); }
.rail-item { position: relative; display: flex; flex-direction: column; justify-content: center; padding-left: 28px; color: #616872; transition: color .3s; }
.rail-item::after { content: ""; position: absolute; right: -3px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: #7a828c; transform: translateY(-50%); transition: background .3s, box-shadow .3s; }
.rail-item strong { font-size: 28px; line-height: 1; font-weight: 450; }
.rail-item small { margin-top: 9px; font-size: 8px; letter-spacing: .09em; }
.rail-item:hover { color: #cbd2da; }
.rail-item.is-active { color: var(--gold-pale); }
.rail-item.is-active::after { background: var(--gold-pale); box-shadow: 0 0 12px rgba(236,197,116,.9); }
.mobile-panel { display: none; }

main { padding-top: var(--header-h); padding-left: var(--rail-w); }
.section { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero {
  min-height: calc(100svh - var(--header-h)); padding: clamp(65px, 8vh, 110px) max(6vw, 72px) 62px;
  display: grid; grid-template-columns: minmax(420px, .83fr) minmax(520px, 1.17fr); align-items: center; gap: clamp(30px, 5vw, 100px);
}
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, transparent 15%, black 55%, transparent 100%); }
.hero-copy { position: relative; z-index: 2; max-width: 580px; }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.eyebrow::before { content: "| "; color: currentColor; }
.eyebrow-gold { display: inline-flex; align-items: center; min-height: 25px; padding: 0 11px; border: 1px solid rgba(207,158,66,.45); border-radius: 4px; color: var(--gold); background: rgba(37,27,10,.25); }
.eyebrow-gold::before { content: none; }
h1 { margin: 22px 0 20px; font-size: clamp(52px, 5.1vw, 84px); line-height: .98; letter-spacing: -.045em; font-weight: 760; }
h1 span { color: transparent; background: linear-gradient(150deg, #f1d28c, #9f7632); -webkit-background-clip: text; background-clip: text; }
.hero-description { max-width: 570px; margin: 0; color: #aeb4bc; font-size: clamp(14px, 1.05vw, 17px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.faith-line { margin: 34px 0 0 7px; color: #c3c9d0; font-size: 9px; letter-spacing: .31em; font-weight: 650; }
.faith-line span { display: inline-block; margin-right: 13px; color: var(--gold-pale); font-size: 17px; }

.market-stage { position: relative; min-height: min(650px, 72vh); transform-style: preserve-3d; perspective: 900px; }
.stage-ambient { position: absolute; inset: 8% -10% 0 0; background: radial-gradient(circle at 58% 42%, rgba(30,110,206,.2), transparent 34%), radial-gradient(circle at 60% 68%, rgba(0,103,255,.13), transparent 36%); filter: blur(8px); }
.chart-grid { position: absolute; inset: 7% 0 10% 3%; opacity: .45; background-image: linear-gradient(rgba(71,120,173,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(71,120,173,.12) 1px, transparent 1px); background-size: 58px 58px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 73%); }
.market-chart { position: absolute; z-index: 3; inset: 0; width: 100%; height: 78%; overflow: visible; filter: drop-shadow(0 10px 22px rgba(0,0,0,.6)); transform: translateZ(30px); }
.chart-guide-lines line { stroke: #34536f; stroke-width: 1; stroke-dasharray: 2 10; }
.chart-area { opacity: .62; }
.chart-line { fill: none; stroke: rgba(91,174,255,.55); stroke-width: 2; stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw-line 2.5s .3s var(--ease) forwards; }
.candle { opacity: 0; animation: candle-in .65s var(--ease) forwards; }
.candle .wick { stroke-width: 1.5; }
.candle.up .wick, .candle.up .body { stroke: #d9e9fa; }
.candle.up .body { fill: rgba(188,217,245,.78); }
.candle.down .wick, .candle.down .body { stroke: #3d9fff; }
.candle.down .body { fill: rgba(43,133,226,.7); }
.buy-marker { animation: float-marker 3.2s ease-in-out infinite; }
.buy-marker rect { fill: rgba(3,18,36,.92); stroke: #3e9fff; }
.buy-marker path { fill: none; stroke: #55aaff; stroke-width: 2; }
.buy-marker text { fill: #82c7ff; font-size: 17px; font-family: Arial, sans-serif; }
.analysis-plane {
  position: absolute; z-index: 2; left: 4%; right: 1%; top: 3%; height: 75%; transform: translateZ(0); transform-origin: center;
  border: 1px solid rgba(30,120,240,.14);
  background-image:
    linear-gradient(rgba(29,128,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,128,255,.1) 1px, transparent 1px),
    radial-gradient(circle at 58% 58%, rgba(15,107,224,.17), transparent 38%);
  background-size: 46px 46px, 46px 46px, 100% 100%;
  box-shadow: inset 0 0 80px rgba(0,90,220,.1), 0 0 42px rgba(0,80,200,.07);
  overflow: hidden;
  opacity: .9;
  mask-image: radial-gradient(ellipse at 55% 50%, black 18%, rgba(0,0,0,.9) 52%, transparent 92%);
}
.analysis-plane::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(30,138,255,.035) 42%, rgba(87,184,255,.12) 50%, rgba(30,138,255,.035) 58%, transparent 100%);
  mix-blend-mode: screen;
}
.scan-line {
  position: absolute; top: 3%; bottom: 5%; left: -18%; width: 118px; height: auto;
  background: linear-gradient(90deg, transparent 0%, rgba(31,133,255,.08) 28%, rgba(76,174,255,.34) 48%, rgba(125,207,255,.75) 50%, rgba(76,174,255,.28) 53%, rgba(31,133,255,.07) 72%, transparent 100%);
  filter: blur(.15px);
  box-shadow: 0 0 34px rgba(34,145,255,.42), 0 0 80px rgba(13,109,221,.2);
  animation: scan-chart 5s cubic-bezier(.45,0,.55,1) infinite;
}
.scan-line::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%);
  background: rgba(153,222,255,.96);
  box-shadow: 0 0 12px #5fbaff, 0 0 34px #178eff;
}
.data-node { position: absolute; width: 8px; height: 8px; border: 1px solid #69baff; background: #0e72d2; box-shadow: 0 0 18px #178eff; animation: node-read 5s ease-in-out infinite; }
.node-1 { left: 22%; top: 68%; animation-delay: .8s; }.node-2 { left: 48%; top: 49%; animation-delay: 1.9s; }.node-3 { left: 69%; top: 35%; animation-delay: 2.8s; }.node-4 { left: 84%; top: 17%; animation-delay: 3.5s; }
.xray-label { position: absolute; z-index: 4; right: -3%; top: 46%; width: 165px; display: grid; gap: 6px; }
.xray-label strong { color: var(--blue); font-size: 13px; letter-spacing: .05em; }
.xray-label span { color: #c8ced5; font-size: 11px; line-height: 1.48; }
.scroll-cue { position: absolute; left: 42px; bottom: 26px; display: flex; align-items: center; gap: 14px; color: #737b85; font-size: 8px; letter-spacing: .25em; transform: rotate(-90deg); transform-origin: left center; }
.scroll-cue i { position: relative; display: block; width: 45px; height: 1px; background: #3c4248; }
.scroll-cue i::after { content: ""; position: absolute; top: -1px; left: 0; width: 14px; height: 2px; background: var(--gold); animation: scroll-line 2.2s ease-in-out infinite; }

.content-section { min-height: 570px; display: grid; grid-template-columns: minmax(360px, .72fr) minmax(600px, 1.28fr); align-items: center; gap: clamp(50px, 6vw, 110px); padding: clamp(76px, 9vh, 125px) max(5vw, 68px); }
.section-intro { max-width: 520px; }
.section-intro h2, .waitlist-copy h2 { margin: 0 0 20px; font-size: clamp(38px, 3.25vw, 58px); line-height: 1.04; letter-spacing: -.035em; font-weight: 530; }
.section-intro > p:last-child, .waitlist-copy > p:last-child { margin: 0; color: var(--muted); max-width: 500px; font-size: 14px; line-height: 1.72; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.feature-card { position: relative; min-height: 255px; padding: 30px 24px; text-align: center; border-left: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.008), transparent); }
.feature-card:first-child { border-left: 0; }
.feature-card svg { width: 55px; height: 55px; margin: 0 auto 23px; fill: none; stroke: #d5e3f0; stroke-width: 1.15; overflow: visible; transition: stroke .3s, filter .3s, transform .35s var(--ease); }
.feature-card h3, .adapt-card h3 { margin: 0 0 10px; font-size: 11px; letter-spacing: .04em; }
.feature-card p, .adapt-card p { margin: 0; color: #8e96a0; font-size: 12px; line-height: 1.65; }
.feature-card:hover svg { stroke: var(--blue-soft); filter: drop-shadow(0 0 8px rgba(59,157,255,.5)); transform: translateY(-5px); }

.interactive-card { position: relative; overflow: hidden; }
.interactive-card::before { content: ""; position: absolute; z-index: 0; width: 240px; height: 240px; border-radius: 50%; left: var(--mx, -300px); top: var(--my, -300px); transform: translate(-50%,-50%); pointer-events: none; opacity: 0; background: radial-gradient(circle, rgba(48,139,243,.13), transparent 68%); transition: opacity .25s; }
.interactive-card:hover::before { opacity: 1; }
.interactive-card > * { position: relative; z-index: 1; }

.setup-console { min-height: 280px; padding: 20px; display: grid; grid-template-columns: 180px 1fr; align-items: center; border: 1px solid var(--line); border-radius: 9px; background: linear-gradient(145deg, rgba(14,19,25,.72), rgba(3,5,8,.72)); box-shadow: inset 0 0 55px rgba(47,118,196,.035); }
.target-visual { position: relative; width: 120px; height: 120px; margin: auto; display: grid; place-items: center; }
.target-visual::before, .target-visual::after { content: ""; position: absolute; background: #79c0ff; box-shadow: 0 0 8px rgba(66,164,255,.7); }
.target-visual::before { width: 100%; height: 1px; }.target-visual::after { width: 1px; height: 100%; }
.target-visual i { width: 20px; height: 20px; border-radius: 50%; background: #82c6ff; box-shadow: 0 0 25px #258dff; }
.target-orbit { position: absolute; border: 1px solid #6eb8ff; border-radius: 50%; }
.orbit-one { inset: 18px; animation: pulse-orbit 2.4s ease-in-out infinite; }.orbit-two { inset: 35px; border-color: rgba(110,184,255,.45); animation: pulse-orbit 2.4s 1.2s ease-in-out infinite; }
.setup-list { display: grid; }
.setup-list button { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; min-height: 66px; padding: 0 14px; text-align: left; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 13px; transition: padding-left .3s var(--ease), background .3s; }
.setup-list button:last-child { border-bottom: 0; }
.setup-list button:hover { padding-left: 22px; background: rgba(36,127,230,.05); }
.setup-list b { font-weight: 400; color: #dbe8f5; transition: transform .3s; }.setup-list button:hover b { transform: translate(3px,-3px); color: var(--blue); }
.mini-icon { color: var(--blue-soft); width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid rgba(90,174,255,.42); border-radius: 50%; }

.adapt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.adapt-card { min-height: 260px; padding: 28px; text-align: center; border-left: 1px solid var(--line); }
.adapt-card:first-child { border-left: 0; }
.line-icon { width: 72px; height: 72px; margin: 0 auto 20px; display: grid; place-items: center; color: #dce9f6; font-size: 45px; font-weight: 200; transition: color .3s, transform .4s var(--ease), text-shadow .3s; }
.adapt-card:hover .line-icon { transform: rotate(8deg) scale(1.08); color: var(--blue-soft); text-shadow: 0 0 20px rgba(65,159,255,.45); }

.tech-panel { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 240px; border: 1px solid var(--line); border-radius: 9px; background: rgba(7,10,14,.55); }
.tech-panel article { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 24px 12px; border-left: 1px solid var(--line); }
.tech-panel article:first-child { border-left: 0; }
.tech-icon { margin-bottom: 18px; color: #dbe9f7; font-size: 34px; line-height: 1; }
.tech-panel small { margin-bottom: 6px; color: #b8c0c8; font-size: 8px; letter-spacing: .08em; }
.tech-panel strong { color: var(--blue); font-size: clamp(17px, 1.5vw, 25px); font-weight: 500; letter-spacing: .01em; }
.tech-panel em { margin-top: 4px; color: #858e98; font-size: 9px; font-style: normal; text-transform: uppercase; letter-spacing: .04em; }

.waitlist-section { min-height: 500px; padding: clamp(78px, 10vh, 125px) max(6vw, 78px); display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: clamp(60px, 8vw, 135px); background: radial-gradient(circle at 88% 50%, rgba(18,75,146,.14), transparent 30%), linear-gradient(135deg, rgba(3,6,9,.9), rgba(5,9,14,.98)); }
.waitlist-copy { max-width: 500px; }
.waitlist-form { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(250px, 1fr) 210px; gap: 9px 30px; max-width: 760px; }
.waitlist-form label { position: relative; grid-column: 1; display: block; }
.waitlist-form label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.waitlist-form input { width: 100%; height: 46px; padding: 0 46px 0 15px; border: 1px solid rgba(159,182,207,.15); border-radius: 5px; outline: 0; color: white; background: rgba(2,5,8,.76); transition: border-color .25s, box-shadow .25s; }
.waitlist-form input::placeholder { color: #69717a; }
.waitlist-form input:focus { border-color: rgba(71,160,255,.6); box-shadow: 0 0 0 3px rgba(47,141,245,.08), 0 0 24px rgba(47,141,245,.08); }
.waitlist-form label i { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #818a93; font-style: normal; }
.form-submit { grid-column: 2; grid-row: 1 / 4; min-height: 100%; align-self: stretch; }
.form-note, .form-status { grid-column: 1 / -1; margin: 3px 0 0; color: #68717b; font-size: 9px; }
.form-status { min-height: 18px; color: var(--blue-soft); font-size: 11px; }
.form-status.is-error { color: #ff8e8e; }
.waitlist-orb { position: absolute; width: 520px; height: 520px; right: -190px; bottom: -350px; border: 1px solid rgba(50,145,255,.28); border-radius: 50%; box-shadow: 0 0 80px rgba(20,91,177,.14), inset 0 0 70px rgba(20,91,177,.08); }
.waitlist-orb::before { content: ""; position: absolute; inset: 48px; border: 1px solid rgba(50,145,255,.12); border-radius: 50%; }

.site-footer { min-height: 90px; margin-left: var(--rail-w); padding: 20px 4.5vw; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 20px; border-top: 1px solid var(--line); background: #010203; color: #8a929c; }
.footer-brand .brand-mark { width: 29px; height: 29px; font-size: 13px; }.footer-brand .brand-name { font-size: 10px; }
.site-footer > p { margin: 0; font-size: 9px; letter-spacing: .18em; text-align: center; }
.site-footer > p:nth-child(2) span { color: var(--blue); }
.site-footer > p:last-child { justify-self: end; text-align: right; letter-spacing: 0; line-height: 1.45; }
.site-footer small { color: #59616a; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes candle-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scan-chart { 0% { left: -18%; opacity: .2; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 104%; opacity: .2; } }
@keyframes node-read { 0%, 18%, 100% { transform: scale(.75); opacity: .24; } 28%, 45% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 10px #8fd0ff, 0 0 30px #178eff; } 58% { transform: scale(.9); opacity: .45; } }
@keyframes float-marker { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes scroll-line { 0%,100% { transform: translateX(0); opacity: .4; } 50% { transform: translateX(31px); opacity: 1; } }
@keyframes pulse-orbit { 0%,100% { transform: scale(.94); opacity: .45; } 50% { transform: scale(1.08); opacity: 1; } }

@media (max-width: 1180px) {
  .top-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .mobile-panel { position: fixed; z-index: 90; inset: var(--header-h) 0 0; display: grid; place-items: center; background: rgba(2,4,7,.97); backdrop-filter: blur(24px); transform: translateY(-110%); opacity: 0; pointer-events: none; transition: transform .55s var(--ease), opacity .4s; }
  .mobile-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-panel nav { width: min(560px, 82vw); display: grid; }
  .mobile-panel a { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: clamp(25px, 6vw, 46px); }
  .mobile-panel a span { color: var(--blue); font-size: 11px; letter-spacing: .12em; }
  .menu-open .menu-button span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { opacity: 0; }
  .menu-open .menu-button span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { grid-template-columns: .85fr 1.15fr; padding-left: 5vw; padding-right: 5vw; }
  .xray-label { right: 0; }
  .content-section { grid-template-columns: 1fr; gap: 55px; }
  .section-intro { max-width: 670px; }
  .waitlist-section { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 900px) {
  :root { --rail-w: 0px; }
  .section-rail { display: none; }
  .site-header { padding: 0 20px; }
  .header-actions .button { display: none; }
  main { padding-left: 0; }
  .hero { min-height: auto; padding: 80px 24px 70px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .market-stage { min-height: 590px; }
  .scroll-cue { display: none; }
  .content-section { min-height: auto; padding: 85px 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-bottom: 1px solid var(--line); }
  .feature-card:nth-child(odd) { border-left: 0; }
  .adapt-grid { grid-template-columns: 1fr; }
  .adapt-card { min-height: 210px; border-left: 0; border-top: 1px solid var(--line); }
  .adapt-card:first-child { border-top: 0; }
  .tech-panel { grid-template-columns: repeat(2, 1fr); }
  .tech-panel article:nth-child(odd) { border-left: 0; }
  .tech-panel article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .waitlist-section { grid-template-columns: 1fr; gap: 45px; padding: 85px 24px; }
  .waitlist-form { max-width: 700px; }
  .site-footer { margin-left: 0; grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 30px 20px; }
  .site-footer > p:last-child { justify-self: center; text-align: center; }
}

@media (max-width: 620px) {
  .brand-name { font-size: 11px; letter-spacing: .16em; }
  h1 { font-size: clamp(47px, 14vw, 64px); }
  .hero-description { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .market-stage { min-height: 420px; margin: 5px -30px 0; }
  .market-chart { height: 82%; }
  .analysis-plane { top: 2%; height: 80%; }
  .xray-label { right: 7%; top: 66%; width: 145px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; border-left: 0; }
  .setup-console { grid-template-columns: 1fr; gap: 18px; }
  .target-visual { width: 100px; height: 100px; }
  .setup-list button { min-height: 72px; font-size: 12px; }
  .tech-panel { grid-template-columns: 1fr; }
  .tech-panel article { min-height: 180px; border-left: 0; border-top: 1px solid var(--line); }
  .tech-panel article:first-child { border-top: 0; }
  .waitlist-form { grid-template-columns: 1fr; }
  .waitlist-form label, .form-submit, .form-note, .form-status { grid-column: 1; }
  .form-submit { grid-row: auto; min-height: 58px; margin-top: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
