:root {
  --bg:        #080A0F;
  --bg-2:      #0D1117;
  --bg-3:      #111820;
  --surface:   #141C28;
  --border:    #1E2A3A;
  --border-2:  #2A3A4A;
  --cyan:      #00D4FF;
  --cyan-dim:  #00D4FF33;
  --amber:     #FF8C42;
  --amber-dim: #FF8C4233;
  --green:     #00FF88;
  --gold:      #FFD700;
  --red:       #FF3B3B;
  --text-1:    #E8EDF5;
  --text-2:    #8A9BB0;
  --text-3:    #4A5A6A;
  --font-display: 'neue-machina', 'Outfit', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text-1); font-family: var(--font-body); font-weight: 400; line-height: 1.6; overflow-x: hidden; cursor: none; }
@media (pointer: coarse) { body { cursor: auto; } }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }
::selection { background: var(--cyan-dim); color: var(--cyan); }

/* CURSOR */
.cursor { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform .1s, background .2s, width .2s, height .2s; mix-blend-mode: screen; }
.cursor-follower { position: fixed; top: 0; left: 0; width: 32px; height: 32px; border: 1px solid var(--cyan); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform .15s var(--ease-out), opacity .2s; opacity: .5; }
.cursor--hover { width: 16px; height: 16px; background: var(--amber); }
.cursor-follower--hover { width: 48px; height: 48px; border-color: var(--amber); opacity: .3; }
@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

/* TYPOGRAPHY */
.section-label { display: inline-block; font-family: var(--font-body); font-size: .7rem; font-weight: 600; letter-spacing: .2em; color: var(--cyan); text-transform: uppercase; margin-bottom: 1.2rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; line-height: 1.1; color: var(--text-1); letter-spacing: -.02em; }
.section-title em { font-style: normal; color: var(--cyan); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.8rem; font-family: var(--font-body); font-size: .875rem; font-weight: 600; letter-spacing: .05em; text-decoration: none; border: none; border-radius: 4px; cursor: none; transition: all .25s var(--ease-out); position: relative; overflow: hidden; }
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translate(3px,-3px); }
.btn--primary { background: var(--cyan); color: var(--bg); box-shadow: 0 0 24px var(--cyan-dim); }
.btn--primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,.15) 0%,transparent 60%); opacity: 0; transition: opacity .25s; }
.btn--primary:hover { background: #33DDFF; box-shadow: 0 0 40px rgba(0,212,255,.4); }
.btn--primary:hover::before { opacity: 1; }
.btn--ghost { background: transparent; color: var(--text-2); border: 1px solid var(--border-2); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.2rem 0; transition: background .4s, backdrop-filter .4s, border-color .4s, padding .4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(8,10,15,.85); backdrop-filter: blur(20px); border-color: var(--border); padding: .8rem 0; }
.nav__inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--text-1); }
.nav__logo-icon { width: 28px; height: 28px; }
.nav__logo-text { font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .15em; color: var(--text-1); }
.nav__links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav__link { font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-decoration: none; color: var(--text-2); text-transform: uppercase; transition: color .2s; position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.nav__link:hover { color: var(--text-1); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--cta { padding: .5rem 1.2rem; border: 1px solid var(--cyan); border-radius: 3px; color: var(--cyan); }
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--cyan-dim); color: var(--cyan); }
.nav__menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.nav__menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--text-2); transition: all .3s; }
@media (max-width: 768px) {
  .nav__menu-btn { display: flex; }
  .nav__links { position: fixed; top: 0; right: -100%; bottom: 0; width: 280px; flex-direction: column; justify-content: center; background: var(--bg-2); border-left: 1px solid var(--border); gap: 2rem; padding: 2rem; transition: right .4s var(--ease-out); }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1rem; }
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 8rem 2rem 4rem; max-width: 1280px; margin: 0 auto; overflow: hidden; }
.hero__grid { position: fixed; inset: 0; z-index: -1; background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 60px 60px; opacity: .3; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%); }
.hero__scanline { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--cyan),transparent); opacity: .4; z-index: 0; animation: scanline 6s linear infinite; }
@keyframes scanline { 0% { top: 0; opacity: 0; } 5% { opacity: .4; } 95% { opacity: .4; } 100% { top: 100vh; opacity: 0; } }
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; opacity: 0; }
.hero__eyebrow-line { flex: 1; max-width: 60px; height: 1px; background: linear-gradient(90deg,transparent,var(--cyan)); }
.hero__eyebrow-line:last-child { background: linear-gradient(90deg,var(--cyan),transparent); }
.hero__eyebrow-text { font-size: .65rem; font-weight: 600; letter-spacing: .25em; color: var(--cyan); text-transform: uppercase; white-space: nowrap; }
.hero__headline { display: flex; flex-direction: column; font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem,7vw,6.5rem); line-height: .95; letter-spacing: -.03em; margin-bottom: 1.5rem; }
.hero__headline-line { display: block; overflow: hidden; transform: translateY(100%); opacity: 0; }
.hero__headline-line--accent { color: var(--cyan); }
.hero__sub { font-size: 1rem; color: var(--text-2); line-height: 1.7; margin-bottom: 2.5rem; max-width: 480px; opacity: 0; transform: translateY(20px); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; opacity: 0; transform: translateY(20px); }
.hero__stats { display: flex; align-items: center; gap: 2rem; opacity: 0; transform: translateY(20px); }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-1); line-height: 1; }
.hero__stat-unit { font-size: .75rem; color: var(--cyan); font-weight: 600; margin-top: 2px; }
.hero__stat-label { font-size: .65rem; color: var(--text-3); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border-2); }
.hero__visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; opacity: 0; }
.hero__bag-wrap { position: relative; width: 100%; max-width: 480px; }
.hero__bag-svg { width: 100%; height: auto; filter: drop-shadow(0 0 40px rgba(0,212,255,.15)); }
.hero__glow-ring { position: absolute; border-radius: 50%; border: 1px solid var(--cyan); opacity: 0; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: glowRing 4s ease-out infinite; }
.hero__glow-ring--1 { width: 60%; padding-top: 60%; animation-delay: 0s; }
.hero__glow-ring--2 { width: 80%; padding-top: 80%; animation-delay: 1.3s; }
.hero__glow-ring--3 { width: 100%; padding-top: 100%; animation-delay: 2.6s; }
@keyframes glowRing { 0% { opacity: 0; transform: translate(-50%,-50%) scale(.8); } 20% { opacity: .15; } 100% { opacity: 0; transform: translate(-50%,-50%) scale(1.1); } }
.solar-glow-anim { animation: solarPulse 3s ease-in-out infinite; }
@keyframes solarPulse { 0%,100% { opacity: .3; } 50% { opacity: .7; } }

/* HOTSPOTS */
.hotspot { position: absolute; width: 28px; height: 28px; background: none; border: none; cursor: none; transform: translate(-50%,-50%); z-index: 10; }
.hotspot__ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--cyan); opacity: .6; animation: hotspotPulse 2.5s ease-out infinite; }
.hotspot__dot { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); transform: translate(-50%,-50%); box-shadow: 0 0 8px var(--cyan); }
.hotspot:hover .hotspot__dot { background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.hotspot:hover .hotspot__ring { border-color: var(--amber); }
@keyframes hotspotPulse { 0% { transform: scale(1); opacity: .6; } 70% { transform: scale(2.2); opacity: 0; } 100% { transform: scale(1); opacity: 0; } }

/* TOOLTIP */
.feature-tooltip { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%) translateY(100%); background: var(--bg-2); border: 1px solid var(--border-2); border-top: 2px solid var(--cyan); padding: 1rem 1.2rem; border-radius: 6px; width: 240px; z-index: 20; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease-out); box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.feature-tooltip.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(calc(100% + 12px)); }
.feature-tooltip__header { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.feature-tooltip__icon { font-size: 1.1rem; }
.feature-tooltip__title { font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .05em; color: var(--text-1); }
.feature-tooltip__desc { font-size: .75rem; color: var(--text-2); line-height: 1.5; margin-bottom: .6rem; }
.feature-tooltip__link { font-size: .7rem; color: var(--cyan); text-decoration: none; font-weight: 600; }

/* SCROLL INDICATOR */
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 0; animation: fadeInUp 1s 2.5s forwards; }
.hero__scroll-text { font-size: .6rem; letter-spacing: .2em; color: var(--text-3); }
.hero__scroll-line { width: 1px; height: 40px; background: var(--border-2); position: relative; overflow: hidden; }
.hero__scroll-dot { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; background: var(--cyan); border-radius: 2px; animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0% { top: -6px; opacity: 1; } 100% { top: 46px; opacity: 0; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 6rem; gap: 3rem; }
  .hero__eyebrow { justify-content: center; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__bag-wrap { max-width: 320px; margin: 0 auto; }
  .hero__scroll { display: none; }
}

/* FEATURES */
.features { padding: 8rem 2rem; max-width: 1280px; margin: 0 auto; }
.features__header { text-align: center; margin-bottom: 6rem; }
.feature-block { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 3rem; align-items: center; padding: 4rem 0; border-top: 1px solid var(--border); position: relative; opacity: 0; transform: translateY(40px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.feature-block.in-view { opacity: 1; transform: translateY(0); }
.feature-block:last-child { border-bottom: 1px solid var(--border); }
.feature-block__number { font-family: var(--font-display); font-size: 5rem; font-weight: 800; color: var(--border-2); line-height: 1; letter-spacing: -.05em; user-select: none; }
.feature-block__content { display: flex; gap: 2rem; align-items: flex-start; }
.feature-block__icon-wrap { flex-shrink: 0; width: 64px; height: 64px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: border-color .3s, box-shadow .3s; }
.feature-block:hover .feature-block__icon-wrap { border-color: var(--cyan); box-shadow: 0 0 20px var(--cyan-dim); }
.feature-block--battery:hover .feature-block__icon-wrap { border-color: var(--amber); box-shadow: 0 0 20px var(--amber-dim); }
.feature-block--solar:hover .feature-block__icon-wrap { border-color: var(--gold); box-shadow: 0 0 20px rgba(255,215,0,.2); }
.feature-block--gps:hover .feature-block__icon-wrap { border-color: var(--green); box-shadow: 0 0 20px rgba(0,255,136,.2); }
.feature-block__icon { width: 36px; height: 36px; }
.feature-block__label { display: block; font-size: .65rem; font-weight: 600; letter-spacing: .2em; color: var(--text-3); text-transform: uppercase; margin-bottom: .5rem; }
.feature-block__title { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--text-1); margin-bottom: 1rem; }
.feature-block__desc { font-size: .9rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; max-width: 420px; }
.feature-block__specs { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.feature-block__specs li { display: flex; justify-content: space-between; align-items: center; padding: .4rem 0; border-bottom: 1px solid var(--border); font-size: .8rem; }
.spec-key { color: var(--text-3); font-weight: 500; }
.spec-val { color: var(--text-1); font-weight: 600; font-family: var(--font-display); font-size: .75rem; letter-spacing: .05em; }
.feature-block__visual { display: flex; justify-content: center; align-items: center; min-height: 200px; }

/* BATTERY VIZ */
.battery-viz { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; width: 100%; }
.battery-viz__shell { position: relative; width: 100%; max-width: 280px; height: 80px; background: var(--surface); border: 2px solid var(--amber); border-radius: 8px; overflow: hidden; }
.battery-viz__fill { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg,var(--amber),#FFB347); width: 0%; transition: width 1.5s var(--ease-out); box-shadow: 4px 0 20px rgba(255,140,66,.4); }
.battery-viz__segments { position: absolute; inset: 0; display: flex; }
.battery-viz__seg { flex: 1; border-right: 2px solid rgba(8,10,15,.5); }
.battery-viz__seg:last-child { border-right: none; }
.battery-viz__terminal { position: absolute; right: -10px; top: 50%; transform: translateY(-50%); width: 10px; height: 30px; background: var(--amber); border-radius: 0 4px 4px 0; }
.battery-viz__label { text-align: center; }
.battery-viz__pct { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--amber); line-height: 1; }
.battery-viz__sub { font-size: .65rem; letter-spacing: .15em; color: var(--text-3); }

/* DISPLAY VIZ */
.display-viz { width: 100%; max-width: 280px; }
.display-viz__screen { background: #060C18; border: 1.5px solid var(--cyan); border-radius: 8px; padding: 1.2rem; box-shadow: 0 0 30px rgba(0,212,255,.15); position: relative; overflow: hidden; }
.display-viz__scanline { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--cyan),transparent); opacity: .3; animation: scanline 4s linear infinite; }
.display-viz__row { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.display-viz__key { font-family: monospace; font-size: .65rem; color: var(--text-3); width: 28px; flex-shrink: 0; }
.display-viz__bar { flex: 1; height: 6px; background: var(--surface); border-radius: 3px; overflow: hidden; }
.display-viz__bar-fill { height: 100%; background: var(--cyan); border-radius: 3px; box-shadow: 0 0 6px var(--cyan); animation: barPulse 3s ease-in-out infinite; }
.display-viz__bar-fill--solar { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.display-viz__bar-fill--gps { background: var(--green); box-shadow: 0 0 6px var(--green); }
@keyframes barPulse { 0%,100% { opacity: 1; } 50% { opacity: .7; } }
.display-viz__val { font-family: monospace; font-size: .65rem; color: var(--text-1); width: 36px; text-align: right; flex-shrink: 0; }
.display-viz__coords { display: flex; justify-content: space-between; font-family: monospace; font-size: .6rem; color: var(--green); margin-top: .8rem; padding-top: .6rem; border-top: 1px solid var(--border); opacity: .7; }
.display-viz__time { font-family: monospace; font-size: .75rem; color: var(--cyan); text-align: center; margin-top: .5rem; letter-spacing: .1em; }

/* GPS VIZ */
.gps-viz { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 100%; max-width: 280px; }
.gps-viz__map { position: relative; width: 200px; height: 200px; background: var(--surface); border: 1px solid var(--border); border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.gps-viz__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 20px 20px; opacity: .5; }
.gps-viz__ping { position: relative; display: flex; align-items: center; justify-content: center; }
.gps-viz__ping-ring { position: absolute; border-radius: 50%; border: 1px solid var(--green); opacity: 0; animation: gpsPing 3s ease-out infinite; }
.gps-viz__ping-ring--1 { width: 40px; height: 40px; animation-delay: 0s; }
.gps-viz__ping-ring--2 { width: 80px; height: 80px; animation-delay: .8s; }
.gps-viz__ping-ring--3 { width: 130px; height: 130px; animation-delay: 1.6s; }
@keyframes gpsPing { 0% { opacity: .6; transform: scale(.5); } 100% { opacity: 0; transform: scale(1); } }
.gps-viz__ping-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); z-index: 2; }
.gps-viz__sos-btn { position: absolute; bottom: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: white; font-family: var(--font-display); font-size: .6rem; font-weight: 800; letter-spacing: .05em; display: flex; align-items: center; justify-content: center; cursor: none; box-shadow: 0 0 16px rgba(255,59,59,.5); transition: transform .2s, box-shadow .2s; animation: sosPulse 2s ease-in-out infinite; }
.gps-viz__sos-btn:hover { transform: scale(1.1); box-shadow: 0 0 28px rgba(255,59,59,.7); }
@keyframes sosPulse { 0%,100% { box-shadow: 0 0 16px rgba(255,59,59,.5); } 50% { box-shadow: 0 0 28px rgba(255,59,59,.8); } }
.gps-viz__signal { display: flex; align-items: flex-end; gap: 4px; height: 24px; }
.gps-viz__bar { width: 8px; background: var(--green); border-radius: 2px; animation: signalBar 1.5s ease-in-out infinite; }
.gps-viz__bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.gps-viz__bar:nth-child(2) { height: 50%; animation-delay: .1s; }
.gps-viz__bar:nth-child(3) { height: 70%; animation-delay: .2s; }
.gps-viz__bar:nth-child(4) { height: 90%; animation-delay: .3s; }
.gps-viz__bar:nth-child(5) { height: 100%; animation-delay: .4s; }
@keyframes signalBar { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* SOLAR VIZ */
.solar-viz { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; width: 100%; max-width: 280px; }
.solar-viz__panel { position: relative; width: 100%; aspect-ratio: 4/3; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; padding: .75rem; }
.solar-viz__cells { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; height: 100%; }
.solar-viz__cell { background: #0D1520; border: 1px solid #1E3A2A; border-radius: 3px; animation: solarCell 2s ease-in-out infinite; }
.solar-viz__cell:nth-child(odd) { animation-delay: .3s; }
.solar-viz__cell:nth-child(3n) { animation-delay: .6s; }
@keyframes solarCell { 0%,100% { background: #0D1520; border-color: #1E3A2A; } 50% { background: #1A2A10; border-color: #3A6A2A; box-shadow: inset 0 0 6px rgba(255,215,0,.15); } }
.solar-viz__output { text-align: center; }
.solar-viz__watt { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.solar-viz__label { font-size: .65rem; letter-spacing: .15em; color: var(--text-3); margin-top: 4px; }

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; gap: 2rem; }
  .feature-block__number { font-size: 3rem; }
  .feature-block__content { flex-direction: column; }
}

/* TICKER */
.specs-ticker { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); padding: 1.2rem 0; overflow: hidden; }
.specs-ticker__track { overflow: hidden; }
.specs-ticker__inner { display: flex; align-items: center; gap: 2rem; white-space: nowrap; animation: ticker 30s linear infinite; }
.specs-ticker__inner:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .15em; color: var(--text-2); text-transform: uppercase; flex-shrink: 0; }
.ticker-sep { color: var(--cyan); font-size: .5rem; flex-shrink: 0; }

/* MISSION */
.mission { position: relative; padding: 10rem 2rem; overflow: hidden; background: var(--bg-2); }
.mission__bg { position: absolute; inset: 0; pointer-events: none; }
.mission__hex-grid { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32z' fill='none' stroke='%231E2A3A' stroke-width='1'/%3E%3C/svg%3E"); background-size: 56px 100px; opacity: .4; }
.mission__content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.mission__quote { margin: 2rem 0 3rem; }
.mission__quote-text { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; color: var(--text-1); }
.mission__quote-text em { font-style: normal; color: var(--cyan); }
.mission__body { font-size: 1rem; color: var(--text-2); line-height: 1.8; max-width: 600px; margin: 0 auto 3rem; }
.mission__pillars { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.mission__pillar { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.mission__pillar-num { font-family: var(--font-display); font-size: .7rem; font-weight: 800; color: var(--cyan); letter-spacing: .1em; border: 1px solid var(--cyan); border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.mission__pillar-text { font-size: .8rem; font-weight: 600; color: var(--text-2); letter-spacing: .05em; }

/* CTA */
.cta-section { padding: 8rem 2rem; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; max-width: 1280px; margin: 0 auto; }
.cta-section__content { position: relative; z-index: 2; }
.cta-section__title { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--text-1); margin-bottom: 1rem; }
.cta-section__sub { font-size: 1rem; color: var(--text-2); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-form__group { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: .75rem; }
.cta-form__input { flex: 1; min-width: 220px; padding: .85rem 1.2rem; background: var(--surface); border: 1px solid var(--border-2); border-radius: 4px; color: var(--text-1); font-family: var(--font-body); font-size: .9rem; outline: none; transition: border-color .2s, box-shadow .2s; }
.cta-form__input::placeholder { color: var(--text-3); }
.cta-form__input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-dim); }
.cta-form__note { font-size: .75rem; color: var(--text-3); }
.cta-form__btn svg { width: 16px; height: 16px; }
.cta-section__visual { display: flex; justify-content: center; align-items: center; }
.cta-section__orb { width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle,rgba(0,212,255,.15) 0%,rgba(0,212,255,.05) 40%,transparent 70%); border: 1px solid rgba(0,212,255,.2); animation: orbPulse 4s ease-in-out infinite; position: relative; }
.cta-section__orb::before { content: ''; position: absolute; inset: 20px; border-radius: 50%; border: 1px solid rgba(0,212,255,.15); animation: orbPulse 4s ease-in-out infinite reverse; }
.cta-section__orb::after { content: 'DS-1'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--cyan); letter-spacing: .1em; opacity: .6; }
@keyframes orbPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: .8; } }
@media (max-width: 768px) { .cta-section { grid-template-columns: 1fr; } .cta-section__visual { display: none; } }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; background: var(--bg-2); }
.footer__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer__brand { display: flex; align-items: center; gap: .6rem; }
.footer__logo-icon { width: 22px; height: 22px; }
.footer__brand-name { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .15em; color: var(--text-3); }
.footer__nav { display: flex; gap: 2rem; }
.footer__link { font-size: .75rem; color: var(--text-3); text-decoration: none; letter-spacing: .05em; transition: color .2s; }
.footer__link:hover { color: var(--cyan); }
.footer__copy { font-size: .7rem; color: var(--text-3); }

/* PARTICLES */
.particle { position: absolute; border-radius: 50%; background: var(--cyan); pointer-events: none; animation: particleFloat linear infinite; }
@keyframes particleFloat { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: .5; } 100% { transform: translateY(-100vh) translateX(var(--drift)); opacity: 0; } }

/* FORM SUCCESS */
.cta-form.success .cta-form__group { display: none; }
.cta-form__success { display: none; padding: 1rem 1.5rem; background: rgba(0,255,136,.1); border: 1px solid var(--green); border-radius: 4px; color: var(--green); font-size: .875rem; font-weight: 500; }
.cta-form.success .cta-form__success { display: block; }