:root {
  --ink: #07111d;
  --ink-deep: #040b13;
  --panel: rgba(12, 27, 41, 0.72);
  --panel-solid: #0c1c2c;
  --line: rgba(147, 188, 206, 0.18);
  --line-bright: rgba(151, 214, 224, 0.38);
  --text: #ecf8f6;
  --muted: #95abb4;
  --green: #00e87a;
  --cyan: #00c4f0;
  --lime: #c4f76d;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--ink-deep); }
body {
  margin: 0;
  background: var(--ink-deep);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
::selection { background: var(--green); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.mono { font-family: var(--mono); letter-spacing: 0.08em; }
.noise {
  position: fixed; inset: 0; z-index: 10; 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='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}
.ambient-glow {
  position: fixed; z-index: -1; width: 38rem; height: 38rem; left: calc(var(--pointer-x, 50%) - 19rem); top: calc(var(--pointer-y, 25%) - 19rem);
  border-radius: 50%; pointer-events: none; opacity: .18; filter: blur(75px);
  background: radial-gradient(circle, rgba(0, 232, 122, .5), rgba(0, 196, 240, .12) 45%, transparent 70%);
  transition: left 1s var(--ease-soft), top 1s var(--ease-soft);
}
.page-loader {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; gap: 1.2rem;
  background: var(--ink-deep); transition: opacity .8s var(--ease-smooth), visibility .8s;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark { display: grid; justify-items: center; gap: 1rem; }
.loader-glyph { font: 700 4rem/1 var(--display); color: var(--green); }
.loader-line { display: block; width: 7rem; height: 1px; background: var(--line); overflow: hidden; }
.loader-line::after { content: ""; display: block; height: 100%; width: 100%; background: var(--green); transform: translateX(-100%); animation: loader-line 1.2s var(--ease-smooth) infinite; }
.loader-label { color: var(--muted); font: 10px var(--mono); letter-spacing: .13em; }
@keyframes loader-line { to { transform: translateX(100%); } }
.site-header {
  position: fixed; z-index: 20; top: 0; left: 0; right: 0; display: flex; align-items: center; gap: 2.4rem;
  height: 88px; padding: 0 clamp(1.3rem, 4vw, 5rem); border-bottom: 1px solid transparent;
  transition: height .5s var(--ease-smooth), background .5s, border-color .5s, backdrop-filter .5s;
}
.site-header.is-scrolled { height: 68px; background: rgba(5, 15, 25, .76); border-color: var(--line); backdrop-filter: blur(20px); }
.brand { display: inline-flex; align-items: center; gap: .7rem; white-space: nowrap; }
.brand-mark { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; background: var(--green); color: var(--ink); font: 700 17px/1 var(--display); }
.brand-name { font: 600 18px var(--display); letter-spacing: -.04em; }
.brand-name span { color: var(--green); }
.main-nav { display: flex; align-items: center; gap: 1.8rem; margin: auto; color: var(--muted); font-size: 12px; }
.main-nav a { transition: color .3s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--text); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .9rem; min-height: 48px; padding: 0 1.35rem; border-radius: 999px; font: 600 12px var(--body); transition: transform .35s var(--ease-smooth), box-shadow .35s, background .35s, color .35s; will-change: transform; }
.button-primary { background: var(--green); color: var(--ink); box-shadow: 0 0 0 rgba(0, 232, 122, 0); }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 0 34px rgba(0, 232, 122, .28); }
.button-outline { border: 1px solid var(--line-bright); color: var(--text); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--green); color: var(--green); }
.button-small { min-height: 38px; padding-inline: 1rem; font-size: 11px; }
.button-large { min-height: 56px; padding-inline: 1.6rem; font-size: 13px; }
.button-arrow { font-size: 17px; line-height: 0; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; }
.nav-toggle span { display: block; width: 23px; height: 1px; margin: 5px; background: var(--text); transition: transform .3s; }
.section-shell { width: min(100% - 8vw, 1280px); margin-inline: auto; }
main { position: relative; z-index: 1; }
.hero { min-height: 100svh; padding-top: 9.5rem; padding-bottom: 5rem; display: flex; align-items: center; position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); align-items: center; gap: clamp(2rem, 5vw, 6rem); width: 100%; }
.eyebrow, .section-label { color: var(--green); font: 10px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.7rem; }
.eyebrow-dot, .feature-signal i, .hud-status i { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px var(--green); }
.hero-title, .section-title, .cta-title { margin: 0; font: 600 clamp(3.6rem, 7vw, 7.8rem)/.91 var(--display); letter-spacing: -.09em; text-wrap: balance; }
.hero-title em, .section-title em, .cta-title em { font-style: normal; color: transparent; background: linear-gradient(100deg, var(--green), var(--cyan)); -webkit-background-clip: text; background-clip: text; }
.hero-lede { max-width: 430px; margin: 2.2rem 0 2rem; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; }
.text-link { display: inline-flex; align-items: center; gap: .7rem; color: var(--text); font-size: 12px; transition: color .3s; }
.text-link:hover, .text-link:focus-visible { color: var(--green); }
.play-icon { display: inline-grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--line-bright); border-radius: 50%; color: var(--green); font-size: 8px; padding-left: 1px; }
.hero-footnote { display: flex; align-items: center; gap: .85rem; margin-top: 4.1rem; color: #627984; font-size: 9px; }
.footnote-rule { height: 1px; width: 34px; background: var(--line-bright); }
.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.hero-rings { position: absolute; width: min(44vw, 600px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(0, 232, 122, .12), transparent 47%, rgba(0, 196, 240, .08) 48%, transparent 67%); }
.ring { position: absolute; inset: 5%; border: 1px solid rgba(0, 232, 122, .15); border-radius: 50%; animation: orbit 18s linear infinite; }
.ring::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 20px var(--green); top: 7%; left: 16%; }
.ring-two { inset: 17%; border-color: rgba(0, 196, 240, .2); animation-direction: reverse; animation-duration: 12s; transform: rotate(41deg); }
.ring-two::after { top: auto; bottom: 4%; left: auto; right: 19%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
.ring-three { inset: 31%; border-style: dashed; border-color: rgba(197, 247, 109, .15); animation-duration: 26s; }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-image-wrap { position: relative; z-index: 2; width: min(100%, 610px); aspect-ratio: 1.3; overflow: hidden; border: 1px solid rgba(178, 233, 238, .28); background: #b9d1d8; box-shadow: 0 30px 100px rgba(0, 0, 0, .42), 0 0 60px rgba(0, 232, 122, .13); transform: perspective(1000px) rotateY(-6deg) rotateX(2deg); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 56%; display: block; filter: saturate(.7) contrast(1.08); transition: transform 1s var(--ease-smooth); }
.hero-image-wrap:hover img { transform: scale(1.05); }
.hero-image-tint { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(3, 20, 29, .35), transparent 50%, rgba(0, 232, 122, .2)); mix-blend-mode: multiply; }
.image-scanline { position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 1px; background: var(--green); box-shadow: 0 0 15px var(--green); animation: scanline 4s var(--ease-soft) infinite; }
@keyframes scanline { 0%, 100% { transform: translateY(0); opacity: 0; } 12% { opacity: 1; } 80% { opacity: .8; } 94% { transform: translateY(580px); opacity: 0; } }
.hero-image-caption { position: absolute; z-index: 3; left: 1rem; right: 1rem; bottom: 1rem; display: flex; justify-content: space-between; color: white; text-shadow: 0 1px 12px #07111d; font-size: 11px; }
.hero-image-caption .mono { color: var(--green); font-size: 9px; }
.glass-card { background: linear-gradient(135deg, rgba(18, 44, 59, .84), rgba(8, 22, 35, .8)); border: 1px solid var(--line); box-shadow: 0 20px 80px rgba(0, 0, 0, .2); backdrop-filter: blur(18px); }
.hud-card { position: absolute; z-index: 4; padding: 1rem 1.1rem; min-width: 170px; }
.hud-card-top { top: 10%; right: -2%; }
.hud-card-bottom { bottom: 11%; left: -3%; width: 185px; }
.hud-kicker { color: var(--muted); font-size: 9px; letter-spacing: .12em; }
.hud-card strong { display: block; margin: .45rem 0; font: 600 14px var(--display); }
.hud-status { display: flex; align-items: center; gap: .4rem; color: var(--muted); font-size: 9px; }
.hud-card-heading, .hud-card-meta { display: flex; justify-content: space-between; align-items: center; }
.hud-card-heading .mono { color: var(--green); font-size: 10px; }
.score-bar { height: 4px; margin: .8rem 0 .35rem; background: rgba(255,255,255,.1); }
.score-bar span { display: block; width: 80%; height: 100%; background: linear-gradient(90deg, var(--green), var(--cyan)); }
.hud-card-meta { color: var(--muted); font-size: 8px; }
.hero-orbit-label { position: absolute; z-index: 3; color: #75909b; font-size: 8px; }
.orbit-label-one { top: 20%; left: 4%; transform: rotate(-90deg); }
.orbit-label-two { bottom: 21%; right: 0; color: var(--green); }
.scroll-cue { position: absolute; left: 0; bottom: 2.4rem; display: flex; align-items: center; gap: .75rem; color: #6f8892; font-size: 8px; }
.scroll-cue-line { display: block; width: 45px; height: 1px; background: var(--line-bright); position: relative; overflow: hidden; }
.scroll-cue-line::after { content: ""; position: absolute; inset: 0; background: var(--green); transform: translateX(-100%); animation: cue-line 2.2s infinite; }
@keyframes cue-line { 45%, 100% { transform: translateX(100%); } }
.problem, .system, .how, .impact, .marketplace, .credibility { padding-top: 10rem; }
.section-intro { margin-bottom: 3.4rem; }
.split-intro { display: grid; grid-template-columns: 1fr .7fr; gap: 3rem; align-items: end; }
.section-label { display: block; margin: 0 0 1.25rem; color: var(--muted); }
.section-title { font-size: clamp(3rem, 6vw, 6.3rem); }
.section-title-wide { max-width: 750px; }
.section-summary { max-width: 420px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.problem-grid { display: grid; grid-template-columns: .86fr 1.14fr 1.3fr; gap: 1rem; }
.problem-stat, .problem-note, .problem-wave { min-height: 300px; }
.problem-stat { display: flex; flex-direction: column; justify-content: space-between; padding: 1.7rem; border-top: 1px solid var(--green); }
.stat-number { display: block; font: 600 clamp(5rem, 10vw, 9.4rem)/.8 var(--display); letter-spacing: -.12em; color: var(--text); }
.stat-number sup { font-size: .35em; color: var(--green); vertical-align: top; letter-spacing: -.05em; }
.stat-label { color: var(--text); font-size: 15px; line-height: 1.35; }
.stat-source { color: #637c86; font-size: 8px; }
.problem-note { padding: 1.6rem; }
.note-index { color: var(--green); font-size: 9px; }
.problem-note h3 { margin: 2.5rem 0 1rem; font: 500 clamp(1.5rem, 2.2vw, 2.3rem)/1.05 var(--display); letter-spacing: -.06em; }
.problem-note p { max-width: 300px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.note-line { height: 1px; margin-top: 2rem; background: linear-gradient(90deg, var(--green), transparent); }
.note-foot { display: block; margin-top: .7rem; color: #637c86; font-size: 8px; }
.problem-wave { position: relative; overflow: hidden; border: 1px solid var(--line); background: rgba(7, 22, 32, .7); }
.wave-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(129, 201, 212, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(129, 201, 212, .08) 1px, transparent 1px); background-size: 38px 38px; transform: perspective(350px) rotateX(58deg) scale(1.5); transform-origin: bottom; }
.wave-svg { position: absolute; width: 100%; left: 0; top: 20%; overflow: visible; }
.wave-svg path { fill: none; stroke: var(--green); stroke-width: 2; filter: drop-shadow(0 0 6px rgba(0, 232, 122, .8)); stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw-wave 4s var(--ease-soft) infinite; }
.wave-svg .wave-faint { stroke: var(--cyan); opacity: .2; stroke-width: 1; animation-delay: .3s; }
@keyframes draw-wave { 45%, 100% { stroke-dashoffset: 0; } }
.wave-label { position: absolute; left: 1.3rem; bottom: 1.2rem; color: var(--green); font-size: 8px; }
.feature-bento { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: auto auto auto; gap: 1rem; }
.feature-card { position: relative; overflow: hidden; padding: 1.45rem; min-height: 380px; transform-style: preserve-3d; transition: transform .45s var(--ease-smooth), border-color .35s, box-shadow .35s; }
.feature-card:hover { border-color: var(--line-bright); box-shadow: 0 25px 80px rgba(0,0,0,.28), 0 0 35px rgba(0,232,122,.05); }
.feature-leak { grid-row: span 2; min-height: 590px; }
.feature-score { min-height: 280px; }
.feature-head { position: relative; z-index: 2; display: flex; justify-content: space-between; color: var(--muted); }
.feature-index, .feature-signal { font-size: 8px; }
.feature-signal { display: flex; gap: .4rem; align-items: center; color: var(--green); }
.feature-copy { position: absolute; z-index: 2; bottom: 1.4rem; left: 1.45rem; right: 1.45rem; }
.feature-copy h3 { margin: 0 0 .5rem; font: 500 1.5rem var(--display); letter-spacing: -.05em; }
.feature-copy p { max-width: 360px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.feature-link { position: absolute; right: 1.45rem; bottom: 1.45rem; display: grid; place-items: center; width: 33px; height: 33px; border: 1px solid var(--line-bright); border-radius: 50%; color: var(--green); font-size: 17px; transition: background .3s, color .3s, transform .3s; }
.feature-link:hover { background: var(--green); color: var(--ink); transform: rotate(45deg); }
.scan-visual { position: absolute; inset: 3.5rem 2rem 7.5rem; display: grid; place-items: center; }
.scan-building { position: relative; width: 66%; height: 75%; border: 1px solid rgba(141, 224, 212, .3); transform: perspective(600px) rotateX(57deg) rotateZ(-9deg); background: linear-gradient(130deg, rgba(0,232,122,.09), rgba(0,196,240,.03)); }
.floor { position: absolute; left: 11%; right: 11%; height: 1px; background: rgba(141, 224, 212, .45); }
.floor-1 { top: 28%; }.floor-2 { top: 53%; }.floor-3 { top: 77%; }
.scan-building::before, .scan-building::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(141, 224, 212, .35); }
.scan-building::before { left: 33%; }.scan-building::after { right: 34%; }
.leak-point { position: absolute; top: 28%; left: 66%; width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(0,232,122,.14), 0 0 40px var(--green); animation: pulse-point 1.8s infinite; }
@keyframes pulse-point { 50% { box-shadow: 0 0 0 18px rgba(0,232,122,0), 0 0 50px var(--green); } }
.scan-sweep { position: absolute; width: 78%; height: 1px; background: var(--green); box-shadow: 0 0 20px var(--green); transform: rotate(-25deg); animation: scan-sweep 3.5s var(--ease-soft) infinite; }
@keyframes scan-sweep { 0%, 100% { top: 15%; opacity: 0; } 15% { opacity: 1; } 85% { top: 82%; opacity: 1; } 96% { opacity: 0; } }
.scan-tag { position: absolute; padding: .5rem .65rem; color: var(--green); border: 1px solid rgba(0,232,122,.35); background: rgba(4, 17, 25, .72); font-size: 8px; }
.scan-tag-top { top: 12%; right: 6%; }.scan-tag-bottom { bottom: 12%; left: 7%; color: var(--cyan); border-color: rgba(0,196,240,.35); }
.floor-map { position: absolute; inset: 4rem 1.6rem 8rem; background: rgba(0, 196, 240, .025); border: 1px solid rgba(107, 188, 197, .25); overflow: hidden; background-image: linear-gradient(rgba(107, 188, 197, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 188, 197, .1) 1px, transparent 1px); background-size: 30px 30px; }
.map-room { position: absolute; border: 1px solid rgba(107, 188, 197, .5); background: rgba(0, 196, 240, .035); }
.room-one { inset: 13% 52% 52% 8%; }.room-two { inset: 13% 8% 52% 52%; }.room-three { inset: 52% 52% 13% 8%; }.room-four { inset: 52% 8% 13% 52%; }
.map-route { position: absolute; left: 18%; top: 70%; width: 61%; height: 1px; background: var(--green); transform: rotate(-36deg); transform-origin: left; box-shadow: 0 0 12px var(--green); }
.map-robot { position: absolute; left: 60%; top: 42%; display: grid; place-items: center; width: 14px; height: 14px; border: 1px solid var(--green); border-radius: 50%; box-shadow: 0 0 0 10px rgba(0,232,122,.08); animation: map-move 4.4s var(--ease-smooth) infinite; }
.map-robot span { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }
@keyframes map-move { 0%,100% { transform: translate(0, 0); } 35% { transform: translate(-36px, 28px); } 68% { transform: translate(25px, 42px); } }
.map-coordinate { position: absolute; right: .65rem; bottom: .65rem; color: var(--green); font-size: 8px; }
.eco-ring { display: grid; place-items: center; width: 145px; height: 145px; margin: 2.7rem auto 0; border-radius: 50%; background: conic-gradient(var(--green) 0 80%, rgba(255,255,255,.08) 80% 100%); position: relative; transform: rotate(-20deg); }
.eco-ring::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: var(--panel-solid); }
.eco-ring-inner { position: relative; z-index: 1; text-align: center; transform: rotate(20deg); }.eco-ring strong { display: block; font: 600 3rem var(--display); letter-spacing: -.1em; }.eco-ring span { color: var(--green); font-size: 8px; }
.chat-visual { position: absolute; inset: 5rem 1.5rem 8rem; display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
.chat-bubble { max-width: 80%; padding: .65rem .75rem; color: var(--muted); font-size: 10px; line-height: 1.4; border: 1px solid var(--line); }
.chat-bubble-user { border-radius: 10px 10px 0 10px; color: var(--text); background: rgba(0,196,240,.1); }
.chat-bubble-ai { align-self: flex-start; border-radius: 10px 10px 10px 0; background: rgba(0,232,122,.08); }.chat-bubble-ai i { display: inline-block; width: 5px; height: 5px; margin-right: .4rem; border-radius: 50%; background: var(--green); }
.chat-cursor { width: 2px; height: 13px; margin-left: 1rem; align-self: flex-start; background: var(--green); animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.market-mini { position: absolute; inset: 4.3rem 1.45rem 7.5rem; display: flex; flex-direction: column; gap: .6rem; }
.market-mini-card { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: .6rem; padding: .55rem; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.market-product { display: grid; place-items: center; width: 48px; height: 48px; background: linear-gradient(135deg, rgba(0,232,122,.3), rgba(0,196,240,.08)); }
.product-filter::before { content: ""; width: 18px; height: 24px; border: 2px solid var(--green); border-radius: 5px 5px 12px 12px; }
.product-valve::before { content: ""; width: 27px; height: 9px; border: 2px solid var(--cyan); border-radius: 50%; }
.market-mini-card span { display: block; color: var(--green); font-size: 7px; }.market-mini-card strong { display: block; margin-top: .2rem; font: 500 11px var(--display); }.market-price { font-size: 8px !important; color: var(--text) !important; white-space: nowrap; }
.how { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; }.how-heading { position: relative; z-index: 2; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; position: relative; }
.process-line { position: absolute; left: 45%; right: 0; top: 15.6rem; height: 1px; background: linear-gradient(90deg, var(--green), rgba(0,196,240,.25), transparent); }.process-line span { display: block; width: 10px; height: 10px; margin-top: -5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px var(--green); animation: line-dot 4s infinite; }
@keyframes line-dot { to { transform: translateX(600px); opacity: 0; } }
.process-step { position: relative; padding-top: 4rem; }.process-number { position: absolute; top: 0; left: 0; color: var(--green); font-size: 9px; }
.process-icon { width: 52px; height: 52px; margin-bottom: 2.2rem; border: 1px solid var(--line-bright); display: grid; place-items: center; color: var(--green); position: relative; }.process-icon::after { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(0,232,122,.28); }
.icon-upload span { width: 12px; height: 17px; border: 1px solid var(--green); border-radius: 3px; }.icon-upload i { position: absolute; width: 10px; height: 10px; border-left: 1px solid var(--green); border-top: 1px solid var(--green); transform: translate(9px, -8px) rotate(45deg); }
.icon-ai span { font: 700 11px var(--mono); }.icon-action span { font: 24px var(--display); }
.process-step h3 { margin: 0 0 .75rem; font: 500 1.2rem var(--display); letter-spacing: -.04em; }.process-step p { max-width: 190px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.impact-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 3rem; }.impact-panel { position: relative; padding: clamp(1.5rem, 4vw, 4rem); overflow: hidden; }
.impact-orbit { position: absolute; width: 370px; height: 370px; right: 8%; top: 50%; transform: translateY(-50%); opacity: .75; }.orbit-circle { position: absolute; border: 1px solid rgba(0,232,122,.2); border-radius: 50%; inset: 4%; }.orbit-circle-two { inset: 22%; border-color: rgba(0,196,240,.3); border-style: dashed; }.orbit-node { position: absolute; width: 14px; height: 14px; top: 14%; left: 14%; background: var(--green); border-radius: 50%; box-shadow: 0 0 26px var(--green); }.orbit-cross { position: absolute; width: 10px; height: 10px; border-top: 1px solid var(--cyan); border-left: 1px solid var(--cyan); }.cross-one { bottom: 22%; right: 10%; }.cross-two { top: 45%; left: 4%; transform: rotate(180deg); }
.impact-stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 75%; }.impact-stat { border-top: 1px solid var(--line-bright); padding-top: 1.1rem; }.impact-value { display: block; margin-bottom: .2rem; font: 500 clamp(3rem, 5vw, 5.8rem)/.9 var(--mono); letter-spacing: -.12em; color: var(--text); }.impact-value sup { color: var(--green); font-size: .3em; letter-spacing: -.08em; }.impact-unit { color: var(--green); font-size: 8px; }.impact-stat p { max-width: 145px; margin: 1.2rem 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }.impact-footer { position: relative; z-index: 1; display: flex; justify-content: space-between; margin-top: 4rem; color: #667d86; font-size: 8px; }
.marketplace { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: center; }.marketplace-copy .section-summary { margin: 2rem 0; }.marketplace-visual { min-height: 500px; position: relative; display: grid; place-items: center; }.market-grid-line { position: absolute; inset: 10% 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: skewY(-13deg); }.market-product-card { position: absolute; width: 280px; padding: .7rem; background: #e7f4ef; color: var(--ink); box-shadow: 20px 30px 80px rgba(0,0,0,.35); transform-style: preserve-3d; transition: transform .5s var(--ease-smooth); }.market-product-card:hover { transform: perspective(800px) rotateY(-7deg) rotateX(5deg) translateY(-12px) !important; }.market-product-main { left: 8%; top: 9%; transform: rotate(-7deg); }.market-product-side { right: 2%; bottom: 8%; width: 245px; transform: rotate(8deg); background: #dce8ee; }.product-visual { position: relative; height: 180px; overflow: hidden; background: #d5e8dc; }.product-solar { background: linear-gradient(135deg, #b7d8bf, #dff1eb); }.product-sun { position: absolute; width: 70px; height: 70px; right: 15%; top: 10%; border-radius: 50%; background: var(--lime); opacity: .85; filter: blur(3px); }.product-panel { position: absolute; width: 104px; height: 80px; left: 21%; bottom: 19%; border: 2px solid #284e49; transform: skewY(-14deg) rotate(-6deg); background: repeating-linear-gradient(90deg, rgba(31,80,75,.4) 0 1px, transparent 1px 17px), repeating-linear-gradient(0deg, rgba(31,80,75,.4) 0 1px, transparent 1px 17px), #79a89a; box-shadow: 12px 12px 0 rgba(0, 97, 82, .12); }.product-leaf { position: absolute; right: 15%; bottom: 20%; color: #276c59; font-size: 50px; transform: rotate(25deg); }.product-water { background: linear-gradient(135deg, #b6e3e3, #dceef2); }.water-drop { position: absolute; width: 60px; height: 78px; left: 35%; top: 19%; border: 3px solid #197b92; border-radius: 60% 40% 60% 40%; transform: rotate(45deg); }.water-ring { position: absolute; width: 130px; height: 36px; left: 19%; top: 57%; border: 1px solid rgba(25,123,146,.4); border-radius: 50%; }.product-info { display: grid; grid-template-columns: 1fr auto; gap: .3rem 1rem; padding: 1rem .4rem .45rem; }.product-info .mono { grid-column: 1 / -1; color: #3c7569; font-size: 8px; }.product-info h3 { margin: 0; font: 600 16px var(--display); }.product-info strong { align-self: center; font: 600 11px var(--mono); }.product-arrow { position: absolute; right: 1rem; bottom: 1rem; color: #2a7868; font-size: 22px; }.market-stamp { position: absolute; right: 2%; top: 3%; color: var(--green); font-size: 8px; transform: rotate(90deg); }
.credibility { padding-bottom: 4rem; }.credibility-row { display: flex; align-items: center; gap: 1rem; color: #637b85; font-size: 8px; }.credibility-rule { flex: 1; height: 1px; background: var(--line); }.marquee { overflow: hidden; margin: 3rem calc((100vw - 100%) / -2) 5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.marquee-track { display: flex; width: max-content; align-items: center; gap: 2.5rem; padding: 1.2rem 0; color: #a9c1c6; font: 600 13px var(--display); letter-spacing: .03em; animation: marquee 28s linear infinite; }.marquee-track i { color: var(--green); font-style: normal; }@keyframes marquee { to { transform: translateX(-50%); } }.marquee:hover .marquee-track { animation-play-state: paused; }
.founder-note { position: relative; max-width: 900px; margin: 0 auto; padding: 2rem 0 2rem 4rem; border-left: 1px solid var(--green); }.founder-quote { position: absolute; left: -1.2rem; top: 1.7rem; display: grid; place-items: center; width: 2.3rem; height: 2.3rem; background: var(--ink-deep); color: var(--green); font: 4rem/1 Georgia, serif; }.founder-copy { margin: 0; font: 500 clamp(1.7rem, 3.5vw, 3.2rem)/1.12 var(--display); letter-spacing: -.07em; }.founder-signature { display: flex; gap: 1rem; margin-top: 2rem; color: var(--muted); font-size: 10px; }.founder-signature .mono { color: var(--green); font-size: 8px; }
.final-cta { min-height: 85svh; display: grid; place-items: center; position: relative; text-align: center; padding-top: 9rem; }.cta-halo { position: absolute; width: min(70vw, 700px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(0,232,122,.14), rgba(0,196,240,.06) 30%, transparent 65%); filter: blur(12px); }.cta-content { position: relative; z-index: 1; }.cta-title { max-width: 900px; font-size: clamp(3.4rem, 8vw, 8.5rem); }.cta-summary { margin: 2rem auto; color: var(--muted); }.cta-actions { display: flex; justify-content: center; align-items: center; gap: 1.8rem; }.cta-coordinates { position: absolute; left: 0; right: 0; bottom: 4rem; display: flex; justify-content: space-between; color: #5e737d; font-size: 8px; }
.site-footer { padding-top: 4rem; padding-bottom: 2rem; border-top: 1px solid var(--line); }.footer-brand p { color: var(--muted); font-size: 12px; }.footer-links { display: flex; gap: 7rem; margin: 2.8rem 0 4rem; }.footer-links div { display: flex; flex-direction: column; gap: .55rem; }.footer-links .mono { margin-bottom: .45rem; color: var(--green); font-size: 8px; }.footer-links a { width: max-content; color: var(--muted); font-size: 12px; transition: color .3s; }.footer-links a:hover { color: var(--text); }.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.4rem; border-top: 1px solid var(--line); color: #607680; font-size: 8px; }.footer-bottom a { color: var(--green); }
.reveal-up, .reveal-scale { opacity: 0; transform: translateY(24px); }.reveal-scale { transform: scale(.94); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 5px; }
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }.hero { padding-top: 8rem; }.hero-copy { max-width: 720px; }.hero-visual { min-height: 540px; }.hero-image-wrap { width: min(100%, 650px); }.hero-title { font-size: clamp(4rem, 10vw, 7rem); }.hud-card-top { right: 4%; }.hud-card-bottom { left: 4%; }
  .problem-grid { grid-template-columns: 1fr 1fr; }.problem-wave { grid-column: span 2; min-height: 250px; }.feature-bento { grid-template-columns: 1fr 1fr; }.feature-leak { grid-row: span 1; min-height: 520px; }.feature-market { grid-column: span 2; min-height: 340px; }.how, .marketplace { grid-template-columns: 1fr; gap: 3rem; }.process-line { left: 0; top: auto; margin-top: 1.2rem; }.process-grid { margin-top: 3rem; }.impact-stats { max-width: 80%; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }.impact-orbit { right: -8%; }.marketplace-copy { max-width: 650px; }
}
@media (max-width: 700px) {
  .section-shell { width: min(100% - 2.4rem, 1280px); }.site-header { height: 70px; padding-inline: 1.2rem; }.site-header.is-scrolled { height: 62px; }.main-nav, .site-header > .button { display: none; }.nav-toggle { display: block; margin-left: auto; }.main-nav.is-open { position: absolute; top: 62px; left: 0; right: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; padding: 1.5rem 1.2rem 2rem; background: rgba(5,15,25,.96); border-bottom: 1px solid var(--line); }.hero { padding-top: 7rem; min-height: auto; padding-bottom: 4rem; }.hero-title { font-size: clamp(3.5rem, 17vw, 6rem); }.hero-lede { font-size: .95rem; margin-top: 1.5rem; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }.hero-footnote { flex-wrap: wrap; margin-top: 2.5rem; }.hero-visual { min-height: 390px; margin-top: 1rem; }.hero-rings { width: 95vw; }.hero-image-wrap { width: 100%; aspect-ratio: 1.1; }.hud-card { min-width: 0; padding: .7rem; }.hud-card-top { top: 0; right: -2%; }.hud-card-bottom { bottom: 1%; left: -2%; width: 155px; }.hud-card strong { font-size: 11px; }.orbit-label-one { left: -2%; }.problem, .system, .how, .impact, .marketplace, .credibility { padding-top: 7rem; }.split-intro, .impact-header { display: block; }.section-summary { margin-top: 1.5rem; font-size: .9rem; }.problem-grid { grid-template-columns: 1fr; }.problem-wave { grid-column: auto; min-height: 250px; }.problem-stat { min-height: 270px; }.feature-bento { grid-template-columns: 1fr; }.feature-leak, .feature-market { grid-column: auto; min-height: 470px; }.feature-map, .feature-score, .feature-chat { min-height: 360px; }.feature-score { min-height: 330px; }.how { display: block; }.process-grid { grid-template-columns: 1fr; gap: 2.4rem; }.process-line { display: none; }.process-step { padding-top: 2.4rem; border-top: 1px solid var(--line); }.process-icon { margin-bottom: 1rem; }.process-step p { max-width: 320px; }.impact-panel { padding: 1.3rem; }.impact-stats { max-width: 100%; grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }.impact-orbit { width: 250px; height: 250px; right: -22%; opacity: .35; }.impact-value { font-size: clamp(2.3rem, 13vw, 4rem); }.impact-stat p { font-size: 10px; }.impact-footer { margin-top: 2rem; gap: .5rem; }.marketplace-visual { min-height: 430px; margin-top: 1rem; }.market-product-main { left: 0; width: 230px; }.market-product-side { right: 0; width: 205px; }.product-visual { height: 140px; }.founder-note { padding-left: 1.5rem; }.founder-copy { font-size: 1.6rem; }.founder-signature { flex-direction: column; gap: .3rem; }.cta-title { font-size: clamp(3.1rem, 15vw, 5.5rem); }.cta-actions { flex-direction: column; gap: 1rem; }.cta-coordinates { bottom: 2rem; font-size: 7px; }.cta-coordinates span:nth-child(2) { display: none; }.footer-links { gap: 3rem; }.footer-bottom { flex-wrap: wrap; gap: .6rem; }.footer-bottom span:last-of-type { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal-up, .reveal-scale { opacity: 1 !important; transform: none !important; }.page-loader { display: none; }
}

/* Reference Lab, theme switch, and scroll-scrubbed robot reveal */
.background-field { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.background-grid { position: absolute; inset: -20%; opacity: .25; transform: perspective(600px) rotateX(64deg) translateY(18%); transform-origin: center bottom; background-image: linear-gradient(rgba(0, 232, 122, .075) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 196, 240, .075) 1px, transparent 1px); background-size: 84px 84px; mask-image: linear-gradient(to bottom, transparent, black 20%, black 70%, transparent); animation: background-drift 22s linear infinite; }
.background-orb { position: absolute; width: 30rem; aspect-ratio: 1; border-radius: 50%; filter: blur(70px); opacity: .12; }
.background-orb-one { left: -16rem; top: 24%; background: var(--green); animation: orb-float-one 15s ease-in-out infinite alternate; }
.background-orb-two { right: -18rem; top: 48%; background: var(--cyan); animation: orb-float-two 18s ease-in-out infinite alternate; }
.background-orb-three { left: 34%; bottom: -23rem; width: 25rem; background: var(--lime); opacity: .07; animation: orb-float-three 20s ease-in-out infinite alternate; }
@keyframes background-drift { to { transform: perspective(600px) rotateX(64deg) translateY(7%); } }
@keyframes orb-float-one { to { transform: translate(100px, 70px) scale(1.2); } }
@keyframes orb-float-two { to { transform: translate(-120px, -40px) scale(.8); } }
@keyframes orb-float-three { to { transform: translateY(-100px) scale(1.25); } }
.theme-toggle { display: inline-flex; align-items: center; gap: .4rem; border: 1px solid var(--line-bright); padding: .45rem .6rem; border-radius: 999px; background: transparent; cursor: pointer; color: var(--muted); transition: border-color .3s, color .3s, background .3s; }
.theme-toggle:hover { border-color: var(--green); color: var(--green); }
.theme-toggle-label { font: 8px var(--mono); letter-spacing: .08em; }
.theme-icon { position: relative; display: block; width: 13px; height: 13px; }
.theme-icon-sun { border: 1px solid var(--green); border-radius: 50%; box-shadow: 0 0 9px rgba(0, 232, 122, .5); }
.theme-icon-sun::before, .theme-icon-sun::after { content: ""; position: absolute; inset: -4px; border-top: 1px solid var(--green); border-bottom: 1px solid var(--green); transform: rotate(45deg); opacity: .7; }
.theme-icon-sun::after { transform: rotate(-45deg); }
.theme-icon-moon { display: none; border-radius: 50%; background: var(--green); box-shadow: 4px -3px 0 var(--ink); }
html[data-theme="light"] {
  --ink: #eff8f5;
  --ink-deep: #f5faf8;
  --panel: rgba(255, 255, 255, .74);
  --panel-solid: #edf6f2;
  --line: rgba(11, 58, 69, .15);
  --line-bright: rgba(0, 121, 126, .34);
  --text: #0a202c;
  --muted: #5e747b;
}
html[data-theme="light"] body { background: var(--ink-deep); }
html[data-theme="light"] .noise { opacity: .025; mix-blend-mode: multiply; }
html[data-theme="light"] .background-grid { opacity: .3; }
html[data-theme="light"] .background-orb { opacity: .08; }
html[data-theme="light"] .site-header.is-scrolled { background: rgba(245, 250, 248, .78); }
html[data-theme="light"] .hero-image-wrap { border-color: rgba(20, 88, 96, .25); box-shadow: 0 30px 100px rgba(20, 68, 80, .2), 0 0 60px rgba(0, 160, 130, .15); }
html[data-theme="light"] .glass-card { background: linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(227, 242, 237, .78)); box-shadow: 0 20px 70px rgba(28, 77, 89, .12); }
html[data-theme="light"] .problem-wave { background: rgba(226, 243, 239, .72); }
html[data-theme="light"] .scan-tag, html[data-theme="light"] .chat-bubble, html[data-theme="light"] .hud-card { background: rgba(248, 255, 252, .78); }
html[data-theme="light"] .market-mini-card { background: rgba(11, 90, 89, .04); }
html[data-theme="light"] .theme-icon-sun { display: none; }
html[data-theme="light"] .theme-icon-moon { display: block; }
html[data-theme="light"] .theme-toggle-label::after { content: "DARK"; }
html[data-theme="light"] .theme-toggle-label { font-size: 0; }
html[data-theme="light"] .theme-toggle-label::after { font-size: 8px; }

.robot-reveal { min-height: 180svh; padding-top: 10rem; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 6vw, 7rem); position: relative; }
.robot-reveal-copy { padding-top: 18vh; position: relative; z-index: 2; }
.robot-reveal-copy .section-summary { margin-top: 2rem; }
.robot-reveal-status { display: flex; align-items: center; gap: .65rem; margin-top: 2rem; color: var(--green); font-size: 8px; }
.status-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px var(--green); animation: status-pulse 1.4s infinite; }
.status-rule { width: 32px; height: 1px; background: var(--line-bright); }
@keyframes status-pulse { 50% { transform: scale(.45); opacity: .55; } }
.robot-reveal-stage { height: 80svh; min-height: 560px; position: sticky; top: 10vh; align-self: start; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 50% 44%, rgba(0, 232, 122, .16), transparent 25%), rgba(6, 22, 30, .6); }
.robot-stage-grid { position: absolute; inset: -30%; opacity: .55; background-image: linear-gradient(rgba(0, 232, 122, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 196, 240, .1) 1px, transparent 1px); background-size: 52px 52px; transform: perspective(600px) rotateX(60deg) rotateZ(-10deg); mask-image: radial-gradient(circle, black 30%, transparent 75%); animation: stage-grid 13s linear infinite; }
@keyframes stage-grid { to { transform: perspective(600px) rotateX(60deg) rotateZ(-10deg) translateY(52px); } }
.robot-stage-scanline { position: absolute; left: 8%; right: 8%; top: 18%; height: 1px; background: var(--green); box-shadow: 0 0 20px var(--green); opacity: .75; animation: stage-scan 4s ease-in-out infinite; }
@keyframes stage-scan { 50% { top: 82%; opacity: .12; } }
.robot-frame-reel { position: relative; z-index: 2; display: flex; width: min(88%, 780px); aspect-ratio: 1.32; filter: drop-shadow(0 35px 55px rgba(0, 0, 0, .4)); }
.robot-frame { flex: 0 0 8.3333%; height: 100%; display: block; background-image: url("assets/robot/robot-v2-hero.jpg"); background-repeat: no-repeat; background-size: 1200% 100%; background-position-y: center; border-top: 1px solid rgba(211, 247, 239, .22); border-bottom: 1px solid rgba(211, 247, 239, .1); transform-origin: center; }
.robot-frame-01 { background-position-x: 0%; }.robot-frame-02 { background-position-x: 9.09%; }.robot-frame-03 { background-position-x: 18.18%; }.robot-frame-04 { background-position-x: 27.27%; }.robot-frame-05 { background-position-x: 36.36%; }.robot-frame-06 { background-position-x: 45.45%; }.robot-frame-07 { background-position-x: 54.54%; }.robot-frame-08 { background-position-x: 63.63%; }.robot-frame-09 { background-position-x: 72.72%; }.robot-frame-10 { background-position-x: 81.81%; }.robot-frame-11 { background-position-x: 90.9%; }.robot-frame-12 { background-position-x: 100%; }
.robot-stage-meta { position: absolute; z-index: 3; left: 1rem; right: 1rem; bottom: 1rem; display: flex; justify-content: space-between; color: var(--green); font-size: 8px; }

.reference-lab { padding-top: 10rem; padding-bottom: 8rem; }
.reference-header { display: grid; grid-template-columns: 1fr .7fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.reference-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .65rem; margin-bottom: 1rem; border: 1px solid var(--line); background: rgba(255, 255, 255, .025); }
.reference-filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.reference-filter { border: 1px solid transparent; padding: .65rem .8rem; background: transparent; color: var(--muted); cursor: pointer; font: 9px var(--mono); transition: background .3s, border-color .3s, color .3s; }
.reference-filter span { margin-left: .35rem; color: var(--green); }
.reference-filter:hover, .reference-filter.is-active { border-color: var(--line-bright); background: rgba(0, 232, 122, .08); color: var(--text); }
.reference-hint { color: #637b85; font-size: 8px; white-space: nowrap; }
.reference-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.reference-card { min-height: 230px; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--panel); transform-style: preserve-3d; transition: border-color .35s, transform .45s var(--ease-smooth), opacity .35s; }
.reference-card.is-hidden { display: none; }
.reference-card:hover { border-color: var(--line-bright); }
.reference-image { grid-column: span 3; display: block; }
.reference-featured { grid-column: span 6; grid-row: span 2; min-height: 475px; }
.reference-card img { width: 100%; height: 100%; min-height: 230px; display: block; object-fit: cover; filter: saturate(.75) contrast(1.08); transition: transform .7s var(--ease-smooth), filter .5s; }
.reference-featured img { min-height: 475px; }.reference-card:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.1); }
.reference-card-index { position: absolute; z-index: 2; top: .9rem; left: .9rem; padding: .4rem .5rem; color: var(--green); border: 1px solid rgba(0, 232, 122, .35); background: rgba(3, 17, 24, .65); font-size: 8px; }
.reference-card-overlay { position: absolute; z-index: 2; inset: auto 0 0; display: flex; align-items: end; justify-content: space-between; gap: .5rem; padding: 3.7rem .9rem .9rem; color: white; background: linear-gradient(transparent, rgba(3, 12, 18, .92)); }
.reference-card-overlay strong { font: 500 14px var(--display); }.reference-card-overlay .mono { color: var(--green); font-size: 7px; }
.reference-video { grid-column: span 4; min-height: 285px; }
.video-poster { height: 175px; position: relative; overflow: hidden; background-image: linear-gradient(135deg, rgba(0, 232, 122, .16), rgba(0, 18, 28, .2)), var(--poster); background-size: cover; background-position: center; }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(2, 11, 17, .55)); }
.video-play { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; width: 48px; height: 48px; padding-left: 2px; border: 1px solid var(--green); border-radius: 50%; color: var(--green); background: rgba(3, 17, 24, .58); transform: translate(-50%, -50%); transition: background .3s, color .3s, transform .3s; }
.reference-video:hover .video-play { color: var(--ink); background: var(--green); transform: translate(-50%, -50%) scale(1.08); }
.video-duration { position: absolute; z-index: 2; right: .8rem; bottom: .7rem; color: var(--green); font-size: 8px; }
.reference-video-copy, .reference-pdf-copy { display: flex; flex-direction: column; gap: .35rem; padding: .8rem .9rem; }.reference-video-copy .mono, .reference-pdf-copy .mono { color: var(--green); font-size: 8px; }.reference-video-copy strong, .reference-pdf-copy strong { font: 500 14px var(--display); }.reference-video-copy small, .reference-pdf-copy small { color: var(--muted); font-size: 10px; }
.reference-pdf { grid-column: span 6; display: flex; align-items: stretch; min-height: 150px; background: linear-gradient(110deg, rgba(0, 196, 240, .06), rgba(0, 232, 122, .025)); }.pdf-art { position: relative; flex: 0 0 155px; overflow: hidden; background: linear-gradient(135deg, #e5f2ec, #9cc9bc); color: #0a3f3e; }.pdf-art-alt { background: linear-gradient(135deg, #d6ecf1, #8bb8c8); color: #0d4351; }.pdf-glyph { position: absolute; left: 1rem; bottom: 1rem; font: 800 32px var(--display); letter-spacing: -.1em; }.pdf-corner { position: absolute; right: 0; top: 0; border-style: solid; border-width: 0 0 36px 36px; border-color: transparent transparent rgba(255,255,255,.55) transparent; }.pdf-lines { position: absolute; left: 1rem; right: 1rem; top: 1.4rem; height: 24px; border-top: 2px solid currentColor; border-bottom: 1px solid currentColor; opacity: .45; }.reference-pdf-copy { justify-content: center; padding: 1.25rem; }
.reference-links { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: .65rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }.reference-links-label { align-self: center; color: #637b85; font-size: 8px; }.reference-link-chip { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .9rem; border: 1px solid var(--line); color: var(--muted); font: 10px var(--body); transition: color .3s, border-color .3s, background .3s; }.reference-link-chip span:last-child { color: var(--green); font-size: 15px; }.reference-link-chip:hover { border-color: var(--green); color: var(--text); background: rgba(0, 232, 122, .06); }

@media (max-width: 1020px) {
  .theme-toggle { margin-left: auto; }.site-header > .button { margin-left: 0; }
  .robot-reveal { grid-template-columns: 1fr; min-height: 160svh; gap: 2rem; }.robot-reveal-copy { padding-top: 8vh; }.robot-reveal-stage { height: 68svh; top: 10vh; }.reference-header { grid-template-columns: 1fr .8fr; }.reference-image { grid-column: span 4; }.reference-featured { grid-column: span 6; }.reference-video { grid-column: span 6; }.reference-pdf { grid-column: span 6; }.reference-links { grid-template-columns: repeat(3, 1fr); }.reference-links-label { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .theme-toggle { margin-left: auto; padding: .38rem .5rem; }.theme-toggle-label { display: none; }.theme-icon-sun, .theme-icon-moon { width: 15px; height: 15px; }
  .robot-reveal { min-height: 135svh; padding-top: 7rem; }.robot-reveal-copy { padding-top: 0; }.robot-reveal-stage { min-height: 350px; height: 58svh; top: 8vh; }.robot-stage-meta { gap: .5rem; font-size: 6px; }.robot-frame-reel { width: 100%; }
  .reference-lab { padding-top: 7rem; padding-bottom: 5rem; }.reference-header { display: block; }.reference-toolbar { display: block; padding: .45rem; }.reference-filters { gap: .2rem; }.reference-filter { padding: .55rem .5rem; font-size: 8px; }.reference-hint { display: block; margin: .7rem .4rem .2rem; }.reference-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }.reference-image, .reference-video, .reference-pdf { grid-column: span 1; }.reference-featured { grid-column: span 2; min-height: 300px; }.reference-featured img { min-height: 300px; }.reference-card { min-height: 195px; }.reference-card img { min-height: 195px; }.reference-card-overlay { display: block; padding: 2.8rem .6rem .6rem; }.reference-card-overlay strong { display: block; font-size: 11px; }.reference-card-overlay .mono { display: block; margin-top: .2rem; }.reference-video { min-height: 245px; }.video-poster { height: 130px; }.reference-video-copy, .reference-pdf-copy { padding: .55rem; }.reference-video-copy strong, .reference-pdf-copy strong { font-size: 11px; }.reference-video-copy small, .reference-pdf-copy small { font-size: 8px; line-height: 1.3; }.reference-pdf { display: block; min-height: 245px; }.pdf-art { height: 130px; }.pdf-glyph { font-size: 25px; left: .6rem; bottom: .55rem; }.reference-links { grid-template-columns: 1fr; }.reference-links-label { margin-bottom: .25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .background-grid, .background-orb, .robot-stage-grid, .robot-stage-scanline, .status-pulse { animation: none !important; }
  .robot-frame { transform: none !important; opacity: 1 !important; }
}
/* ============================================================
   CINEMA HERO / VIDEO OPENING + CUSTOM CURSOR + EXTRA EFFECTS
   ============================================================ */

.cinema-hero {
  position: relative; min-height: 100svh; display: grid; align-items: center; justify-items: center;
  padding: 9rem clamp(1.2rem, 4vw, 4rem) 6rem; overflow: hidden; isolation: isolate; text-align: center;
}
.cinema-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.cinema-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.72) contrast(1.06) brightness(.62);
  transform: scale(1.06); transition: opacity 1.4s var(--ease-smooth); opacity: 0;
}
.cinema-video.is-live { opacity: 1; }
.cinema-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 80% at 50% 42%, rgba(4, 11, 19, .12), rgba(4, 11, 19, .78) 68%, var(--ink-deep) 100%),
    linear-gradient(180deg, rgba(4, 11, 19, .92), rgba(4, 11, 19, .34) 32%, rgba(4, 11, 19, .55) 66%, var(--ink-deep));
}
.cinema-vignette { position: absolute; inset: 0; box-shadow: inset 0 0 26vw 8vw rgba(4, 11, 19, .85); }
.cinema-grid {
  position: absolute; inset: -10%; opacity: .22;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 86px 86px; mask-image: radial-gradient(70% 60% at 50% 50%, #000, transparent 78%);
  animation: cinema-grid-drift 26s linear infinite;
}
@keyframes cinema-grid-drift { to { transform: translate3d(-86px, -86px, 0); } }
.cinema-scan {
  position: absolute; left: 0; right: 0; height: 34vh; pointer-events: none; opacity: .5;
  background: linear-gradient(180deg, transparent, rgba(0, 232, 122, .10) 45%, rgba(0, 196, 240, .07) 60%, transparent);
  animation: cinema-scan 7.5s var(--ease-soft) infinite;
}
@keyframes cinema-scan { 0% { top: -35vh; } 100% { top: 105vh; } }
.cinema-beam {
  position: absolute; inset: auto -20% -30% -20%; height: 60vh; opacity: .5; filter: blur(60px);
  background: radial-gradient(60% 100% at 50% 100%, rgba(0, 232, 122, .30), rgba(0, 196, 240, .10) 55%, transparent 78%);
  animation: cinema-breathe 9s ease-in-out infinite;
}
@keyframes cinema-breathe { 50% { opacity: .78; transform: translateY(-2%) scale(1.05); } }
.cinema-corner { position: absolute; width: 34px; height: 34px; border: 1px solid var(--line-bright); opacity: .55; }
.corner-tl { top: 5.6rem; left: 1.2rem; border-right: 0; border-bottom: 0; }
.corner-tr { top: 5.6rem; right: 1.2rem; border-left: 0; border-bottom: 0; }
.corner-bl { bottom: 3.4rem; left: 1.2rem; border-right: 0; border-top: 0; }
.corner-br { bottom: 3.4rem; right: 1.2rem; border-left: 0; border-top: 0; }

.cinema-inner { position: relative; z-index: 2; width: min(100%, 940px); display: grid; justify-items: center; will-change: transform; }
.cinema-badge {
  display: inline-flex; align-items: center; gap: .6rem; margin: 0; padding: .5rem .95rem; border-radius: 999px;
  border: 1px solid var(--line-bright); background: rgba(6, 20, 30, .45); backdrop-filter: blur(12px);
  color: var(--green); font-size: 9px; opacity: 0; transform: translateY(14px);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(0, 232, 122, .55); animation: badge-pulse 2.2s infinite; }
@keyframes badge-pulse { 70% { box-shadow: 0 0 0 9px rgba(0, 232, 122, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 232, 122, 0); } }
.cinema-welcome { margin: 1.5rem 0 .3rem; color: rgba(236, 248, 246, .68); font-size: 13px; letter-spacing: .42em; opacity: 0; transform: translateY(14px); }
.cinema-title {
  margin: 0; font: 600 clamp(2.9rem, 7.4vw, 6.6rem)/.98 var(--display); letter-spacing: -.055em;
  text-wrap: balance; text-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
.cinema-title .cinema-dash { color: rgba(236, 248, 246, .75); }
.morph-word {
  display: inline-block; color: transparent; background: linear-gradient(100deg, var(--green), var(--cyan));
  -webkit-background-clip: text; background-clip: text; will-change: transform, filter;
}
.morph-word.is-morphing { filter: blur(.4px); }
.cinema-lede { max-width: 620px; margin: 1.9rem 0 0; color: var(--muted); font-size: clamp(.95rem, 1.15vw, 1.08rem); line-height: 1.65; opacity: 0; transform: translateY(16px); }
.cinema-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem; opacity: 0; transform: translateY(18px); }
.cinema-hud {
  position: absolute; z-index: 2; left: clamp(1.2rem, 4vw, 3.4rem); right: clamp(1.2rem, 4vw, 3.4rem); bottom: 1.6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: #7d949e; font-size: 9px; opacity: 0; transform: translateY(12px);
}
.cinema-hud-left { display: inline-flex; align-items: center; gap: .5rem; }
.cinema-hud-right { transition: color .3s; }
.cinema-hud-right:hover { color: var(--green); }
.cinema-hero.is-ready .cinema-badge,
.cinema-hero.is-ready .cinema-welcome,
.cinema-hero.is-ready .cinema-lede,
.cinema-hero.is-ready .cinema-actions,
.cinema-hero.is-ready .cinema-hud { opacity: 1; transform: none; transition: opacity .9s var(--ease-smooth), transform .9s var(--ease-smooth); }
.cinema-hero.is-ready .cinema-welcome { transition-delay: .1s; }
.cinema-hero.is-ready .cinema-lede { transition-delay: .5s; }
.cinema-hero.is-ready .cinema-actions { transition-delay: .62s; }
.cinema-hero.is-ready .cinema-hud { transition-delay: .78s; }

/* the section that follows keeps its own top spacing */
.hero { padding-top: 6rem; }

/* scroll progress */
.scroll-progress { position: fixed; z-index: 40; top: 0; left: 0; right: 0; height: 2px; background: transparent; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), var(--cyan)); box-shadow: 0 0 18px rgba(0, 232, 122, .55); }

/* custom cursor */
@media (hover: hover) and (pointer: fine) {
  html.has-cursor, html.has-cursor * { cursor: none !important; }
  .cursor-dot, .cursor-ring { position: fixed; z-index: 90; top: 0; left: 0; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
  .cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--green); transition: transform .18s var(--ease-smooth), opacity .3s; }
  .cursor-ring {
    display: grid; place-items: center; width: 40px; height: 40px; margin: -20px 0 0 -20px;
    border: 1px solid rgba(0, 232, 122, .55); mix-blend-mode: normal;
    transition: width .28s var(--ease-smooth), height .28s var(--ease-smooth), margin .28s var(--ease-smooth), background .28s, border-color .28s, opacity .3s;
  }
  .cursor-ring-label { color: var(--ink); font-size: 7px; opacity: 0; transition: opacity .2s; }
  html.cursor-hover .cursor-ring { width: 74px; height: 74px; margin: -37px 0 0 -37px; background: rgba(0, 232, 122, .16); border-color: var(--green); }
  html.cursor-hover .cursor-ring-label { opacity: 1; color: var(--green); }
  html.cursor-hover .cursor-dot { transform: scale(0); }
  html.cursor-down .cursor-ring { width: 26px; height: 26px; margin: -13px 0 0 -13px; }
  html.cursor-hidden .cursor-dot, html.cursor-hidden .cursor-ring { opacity: 0; }
}

/* magnetic / hover polish everywhere */
.button, .text-link, .reference-card, .feature-card { will-change: transform; }
.glass-card { transition: transform .5s var(--ease-smooth), box-shadow .5s var(--ease-smooth), border-color .5s; }
.glass-card:hover { box-shadow: 0 34px 90px rgba(0, 0, 0, .38), 0 0 0 1px var(--line-bright); }

/* light theme adjustments for the cinema hero */
html[data-theme="light"] .cinema-video { filter: saturate(.6) contrast(1.02) brightness(.9); }
html[data-theme="light"] .cinema-veil {
  background:
    radial-gradient(110% 80% at 50% 42%, rgba(245, 250, 248, .18), rgba(245, 250, 248, .74) 66%, var(--ink-deep) 100%),
    linear-gradient(180deg, rgba(245, 250, 248, .9), rgba(245, 250, 248, .35) 34%, rgba(245, 250, 248, .6) 68%, var(--ink-deep));
}
html[data-theme="light"] .cinema-vignette { box-shadow: inset 0 0 24vw 8vw rgba(245, 250, 248, .8); }
html[data-theme="light"] .cinema-title { text-shadow: 0 20px 60px rgba(28, 77, 89, .18); }
html[data-theme="light"] .cinema-badge { background: rgba(255, 255, 255, .6); }
html[data-theme="light"] .cinema-welcome { color: rgba(9, 40, 46, .6); }
html[data-theme="light"] .cursor-dot, html[data-theme="light"] .cursor-ring { mix-blend-mode: normal; }

@media (max-width: 900px) {
  .cinema-hero { padding-top: 7.5rem; padding-bottom: 5rem; }
  .cinema-actions { flex-direction: column; align-items: center; gap: 1rem; }
  .cinema-hud-mid { display: none; }
  .cinema-corner { display: none; }
  .cinema-welcome { letter-spacing: .3em; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-scan, .cinema-grid, .cinema-beam { animation: none; }
  .cinema-hero .cinema-badge, .cinema-hero .cinema-welcome, .cinema-hero .cinema-lede,
  .cinema-hero .cinema-actions, .cinema-hero .cinema-hud { opacity: 1; transform: none; }
  .cinema-video { opacity: 1; }
}
