:root {
  --bg: #050f0b;
  --bg-soft: #081610;
  --surface: #07120d;
  --card: #0d1f16;
  --card-high: #11271c;
  --text: #f2f8f4;
  --muted: #97aea0;
  --lime: #b7f05b;
  --blue: #53a8e1;
  --orange: #ff8b52;
  --border: #263f32;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --hero-progress: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
::selection { color: #07110b; background: var(--lime); }

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 11px 17px;
  color: #07110b;
  background: var(--lime);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.page-progress {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: 2px;
  background: rgba(255, 255, 255, .04);
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--lime), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
}
.pointer-light {
  position: fixed;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(183, 240, 91, .065), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .35s;
}

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 72px);
  transition: height .35s, background .35s, border-color .35s;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(5, 15, 11, .82);
  border-bottom: 1px solid rgba(151, 174, 160, .14);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.app-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #10200f;
  background: var(--lime);
  border-radius: 11px;
  font: 800 17px/1 var(--display);
  box-shadow: 0 0 32px rgba(183, 240, 91, .18);
}
.brand-name { font: 700 15px/1 var(--display); letter-spacing: -.02em; }
.brand-name span { color: var(--lime); }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.2vw, 38px); }
.desktop-nav a { position: relative; color: #c2d1c8; font-size: 13px; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 600;
}
.header-cta span { font-size: 17px; transition: transform .25s; }
.header-cta:hover span { transform: translate(3px, 3px); }
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 126px clamp(22px, 6vw, 104px) 84px;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    radial-gradient(circle at 75% 48%, rgba(30, 78, 49, .3), transparent 34%),
    linear-gradient(135deg, #050f0b 35%, #07150e 100%);
}
.hero-grid, .cta-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(151, 174, 160, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 174, 160, .07) 1px, transparent 1px);
  background-size: clamp(68px, 7vw, 112px) clamp(68px, 7vw, 112px);
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; will-change: transform; }
.glow-a {
  top: -22vw;
  right: -10vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(183, 240, 91, .16);
  box-shadow: inset 0 0 140px rgba(183, 240, 91, .035);
}
.glow-b {
  bottom: -18vw;
  left: 22vw;
  width: 38vw;
  height: 38vw;
  background: rgba(83, 168, 225, .055);
  filter: blur(70px);
}
.hero-shell {
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 118px);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #bed0c5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow > span { width: 30px; height: 1px; background: var(--lime); box-shadow: 0 0 12px rgba(183, 240, 91, .45); }
.hero h1 {
  margin: clamp(28px, 4vh, 52px) 0 0;
  font: 600 clamp(48px, 5.8vw, 94px)/.96 var(--display);
  letter-spacing: -.064em;
}
.title-line { display: block; overflow: hidden; padding: 0 0 .08em; }
.title-line > span { display: block; transform: translateY(115%); animation: titleIn .9s cubic-bezier(.2, .8, .2, 1) forwards; }
.title-line:nth-child(2) > span { animation-delay: .1s; }
.title-line:nth-child(3) > span { animation-delay: .2s; }
.title-accent { color: var(--lime); }
@keyframes titleIn { to { transform: none; } }
.hero-lead {
  width: min(690px, 100%);
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}
.hero-reveal { opacity: 0; transform: translateY(18px); animation: heroFade .8s .42s forwards; }
.hero-actions { animation-delay: .53s; }
.trust-line { animation-delay: .64s; }
@keyframes heroFade { to { opacity: 1; transform: none; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s, background .25s, border-color .25s;
}
.button b { font-style: normal; font-size: 18px; transition: transform .25s; }
.button:hover { transform: translateY(-2px); }
.button:hover b { transform: translate(3px, -3px); }
.button-primary { color: #0b190c; background: var(--lime); box-shadow: 0 12px 36px rgba(183, 240, 91, .12); }
.button-primary:hover { background: #c7fb70; }
.button-ghost { color: var(--text); border-color: var(--border); background: rgba(13, 31, 22, .45); }
.button-ghost:hover { border-color: #456451; background: var(--card); }
.trust-line { display: flex; flex-wrap: wrap; gap: 20px; margin: 26px 0 0; padding: 0; list-style: none; color: #8fa397; font-size: 12px; }
.trust-line li { display: flex; align-items: center; gap: 7px; }
.trust-line i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 9px var(--lime); }

.hero-visual {
  position: relative;
  min-height: min(74vh, 760px);
  display: grid;
  place-items: center;
  transform: translateY(calc(var(--hero-progress) * 42px));
  will-change: transform;
}
.phone {
  position: relative;
  overflow: hidden;
  background: #020a07;
  border: 1px solid rgba(151, 174, 160, .24);
  border-radius: 36px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .48), 0 0 0 7px rgba(7, 18, 13, .75);
}
.phone::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035); }
.phone-top { position: absolute; z-index: 4; top: 9px; left: 50%; width: 24%; height: 17px; padding: 5px; border-radius: 20px; background: #010704; transform: translateX(-50%); }
.phone-top span { display: block; width: 5px; height: 5px; margin-left: auto; border-radius: 50%; background: #14271b; }
.hero-phone {
  z-index: 3;
  width: min(355px, 64%);
  aspect-ratio: 9 / 20;
  transform: perspective(1300px) rotateY(calc(-8deg + var(--hero-progress) * 8deg)) rotateX(2deg);
  transform-origin: center;
  will-change: transform;
}
.hero-phone img, .story-phone img, .gallery-phone img { width: 100%; height: 100%; object-fit: cover; }
.light-beam {
  position: absolute;
  z-index: 0;
  top: -8%;
  left: 50%;
  width: 84%;
  height: 96%;
  background: linear-gradient(to bottom, rgba(183, 240, 91, .22), rgba(183, 240, 91, .02) 80%, transparent);
  clip-path: polygon(42% 0, 58% 0, 96% 100%, 4% 100%);
  filter: blur(4px);
  transform: translateX(-50%);
  opacity: .46;
}
.light-beam::before { content: ""; position: absolute; top: -2px; left: 36%; width: 28%; height: 4px; border-radius: 8px; background: var(--lime); box-shadow: 0 0 24px var(--lime); }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(183, 240, 91, .18); border-radius: 50%; animation: orbit 18s linear infinite; }
.orbit::after { content: ""; position: absolute; top: 17%; left: 4%; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px var(--lime); }
.orbit-one { width: 86%; aspect-ratio: 1; }
.orbit-two { width: 65%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 13s; }
@keyframes orbit { to { transform: rotate(360deg); } }
.measure-chip {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(151, 174, 160, .25);
  border-radius: 16px;
  background: rgba(13, 31, 22, .82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
}
.measure-chip span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.measure-chip b { font: 700 19px/1 var(--display); }
.measure-chip b i { font-style: normal; font-size: 27px; color: var(--text); }
.measure-chip small { color: var(--orange); font-size: 10px; }
.chip-ppfd { top: 17%; left: -4%; animation: float 4.6s ease-in-out infinite; }
.chip-sensor { right: -1%; bottom: 24%; animation: float 5.2s .6s ease-in-out infinite; }
.chip-sensor b { display: flex; align-items: center; gap: 7px; color: #cbddd2; font-size: 14px; }
.chip-sensor b i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
@keyframes float { 50% { transform: translateY(-10px); } }
.measure-scale {
  position: absolute;
  z-index: 5;
  right: 1%;
  top: 15%;
  width: 5px;
  height: 39%;
  border-radius: 10px;
  background: linear-gradient(var(--orange), var(--lime), var(--blue));
}
.measure-scale span { position: absolute; right: 15px; color: var(--muted); font-size: 9px; transform: translateY(-50%); }
.measure-scale span:nth-child(1) { top: 100%; }
.measure-scale span:nth-child(2) { top: 50%; }
.measure-scale span:nth-child(3) { top: 0; }
.measure-scale i { position: absolute; top: 13%; left: 50%; width: 13px; height: 13px; border: 3px solid white; border-radius: 50%; background: var(--orange); transform: translate(-50%, -50%); }
.scroll-prompt {
  position: absolute;
  left: clamp(22px, 6vw, 104px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #769080;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-prompt span { position: relative; width: 32px; height: 1px; overflow: hidden; background: #294334; }
.scroll-prompt span::after { content: ""; position: absolute; inset: 0; background: var(--lime); animation: lineSlide 1.8s infinite; }
@keyframes lineSlide { from { transform: translateX(-110%); } to { transform: translateX(110%); } }

.section-pad { position: relative; padding: clamp(100px, 12vw, 180px) clamp(22px, 6vw, 104px); }
.section-label { color: #72897b; }
.section-label span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--lime); border: 1px solid rgba(183, 240, 91, .28); border-radius: 50%; font-size: 9px; letter-spacing: 0; }
.section-title {
  margin: 34px 0 0;
  font: 600 clamp(42px, 5.4vw, 82px)/1.02 var(--display);
  letter-spacing: -.055em;
}
.section-title em { color: var(--lime); font-style: normal; }
.section-lead { color: var(--muted); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.68; }
.section-heading-row { width: min(1420px, 100%); display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin: 0 auto 70px; }
.section-heading-row .section-lead { margin: 0 0 8px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s, transform .75s cubic-bezier(.2, .75, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

.problem { background: var(--bg-soft); overflow: hidden; }
.problem::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 55%, rgba(183, 240, 91, .065), transparent 30%); pointer-events: none; }
.problem > .section-label, .problem-grid { width: min(1420px, 100%); margin-inline: auto; }
.problem-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(70px, 8vw, 130px); margin-top: 44px; }
.problem-copy .section-title { font-size: clamp(40px, 4.7vw, 76px); }
.problem-copy .section-lead { margin-top: 30px; }
.benefit-list { display: grid; gap: 0; margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.benefit-list li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.benefit-list li > span { color: var(--lime); font: 700 10px/1 var(--display); }
.benefit-list p { margin: 0; color: var(--muted); line-height: 1.5; }
.benefit-list b { display: block; margin-bottom: 5px; color: var(--text); font-size: 16px; }
.map-stage {
  --map-progress: 1;
  position: relative;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(17, 39, 28, .94), rgba(7, 18, 13, .96));
  box-shadow: 0 42px 90px rgba(0, 0, 0, .28);
}
.map-stage::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(135deg, rgba(183, 240, 91, .2), transparent 28%, transparent 72%, rgba(83, 168, 225, .15)); pointer-events: none; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; padding: 1px; }
.map-head { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.map-head b { color: var(--lime); }
.heat-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1.1vw, 15px); margin-top: 26px; }
.heat-map > span {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 3px;
  overflow: hidden;
  border: 1px solid #355242;
  border-radius: clamp(15px, 2vw, 24px);
  transform: scale(calc(.78 + var(--map-progress) * .22));
  opacity: calc(.12 + var(--map-progress) * .88);
  transition: border-color .3s, transform .3s;
}
.heat-map > span:nth-child(2) { transition-delay: .04s; }
.heat-map > span:nth-child(3) { transition-delay: .08s; }
.heat-map > span:nth-child(4) { transition-delay: .12s; }
.heat-map > span:nth-child(5) { transition-delay: .16s; }
.heat-map > span:nth-child(6) { transition-delay: .20s; }
.heat-map > span:nth-child(7) { transition-delay: .24s; }
.heat-map > span:nth-child(8) { transition-delay: .28s; }
.heat-map > span:nth-child(9) { transition-delay: .32s; }
.heat-map .target { background: #153e22; }
.heat-map .high { background: #472516; }
.heat-map .low { background: #123550; }
.heat-map b { font: 700 clamp(18px, 2.2vw, 34px)/1 var(--display); }
.heat-map small { color: #c1d0c7; font-size: 9px; font-weight: 700; }
.heat-map i { position: absolute; top: 11px; left: 11px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: #08100b; background: var(--orange); font: 800 9px/1 var(--display); font-style: normal; }
.heat-map .weak i { background: var(--blue); }
.map-result { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 22px; }
.map-result > div { display: grid; gap: 3px; padding: 15px 13px; border: 1px solid rgba(151, 174, 160, .13); border-radius: 13px; background: rgba(5, 15, 11, .45); }
.map-result span { color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: .12em; }
.map-result b { font: 700 clamp(18px, 1.8vw, 28px)/1 var(--display); }
.map-result small { color: #799082; font-size: 8px; }
.map-result .score { border-color: rgba(183, 240, 91, .3); }
.map-result .score b { color: var(--lime); }
.map-note { display: flex; align-items: center; gap: 9px; margin: 20px 0 0; color: #a6b8ad; font-size: 12px; }
.map-note i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px rgba(255, 139, 82, .6); }

.features { background: var(--bg); }
.feature-bento { width: min(1420px, 100%); display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: minmax(330px, auto); gap: 16px; margin: 0 auto; }
.feature-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid var(--border);
  border-radius: 25px;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(183, 240, 91, .08), transparent 40%), var(--card);
}
.feature-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 45%); }
.feature-card h3 { margin: 0; font: 700 clamp(21px, 2vw, 29px)/1.1 var(--display); letter-spacing: -.03em; }
.feature-card p { margin: 12px 0 0; color: var(--muted); line-height: 1.55; }
.card-number { position: absolute; top: 25px; right: 25px; color: #61786a; font: 700 10px/1 var(--display); }
.feature-large { grid-row: span 2; }
.feature-wide { grid-column: span 2; }
.signal { height: 132px; display: flex; align-items: flex-end; gap: 8px; margin: 48px 0 34px; }
.signal i { flex: 1; height: 20%; border-radius: 5px 5px 0 0; background: linear-gradient(to top, rgba(183, 240, 91, .18), var(--lime)); animation: signal 2s ease-in-out infinite alternate; }
.signal i:nth-child(2) { height: 46%; animation-delay: -.4s; }
.signal i:nth-child(3) { height: 82%; animation-delay: -.8s; }
.signal i:nth-child(4) { height: 58%; animation-delay: -1.2s; }
.signal i:nth-child(5) { height: 32%; animation-delay: -1.6s; }
@keyframes signal { to { transform: scaleY(.76); opacity: .68; } }
.feature-value { display: grid; margin-bottom: auto; }
.feature-value span { color: var(--lime); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.feature-value b { margin-top: 8px; font: 700 clamp(76px, 8vw, 126px)/.82 var(--display); letter-spacing: -.07em; }
.feature-value small { margin-top: 12px; color: var(--muted); }
.mini-map { width: min(210px, 70%); aspect-ratio: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 30px 0; transform: rotate(-6deg); }
.mini-map i { border: 1px solid #355242; border-radius: 12px; background: #173e22; }
.mini-map i:nth-child(2), .mini-map i:nth-child(5), .mini-map i:nth-child(6) { background: #492617; }
.mini-map i:nth-child(9) { background: #143450; }
.dli-dial { width: 154px; aspect-ratio: 1; display: grid; place-content: center; justify-items: center; margin: 25px auto; border: 14px solid #183a24; border-top-color: var(--lime); border-right-color: var(--lime); border-radius: 50%; transform: rotate(-15deg); }
.dli-dial span, .dli-dial small { transform: rotate(15deg); }
.dli-dial span { font: 700 37px/1 var(--display); }
.dli-dial small { color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.profile-pills { display: grid; gap: 8px; margin: 34px 0; }
.profile-pills span { width: max-content; padding: 10px 15px; border: 1px solid #345040; border-radius: 99px; color: var(--muted); font-size: 11px; }
.profile-pills span:nth-child(2) { margin-left: 35px; color: var(--lime); border-color: rgba(183, 240, 91, .5); background: rgba(183, 240, 91, .08); }
.profile-pills span:nth-child(3) { margin-left: 13px; }
.local-visual { position: relative; width: min(300px, 38%); min-width: 230px; display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.local-visual .device, .local-visual .lock { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 18px; font: 800 24px/1 var(--display); }
.local-visual .device { color: #10200f; background: var(--lime); }
.local-visual .lock { color: var(--lime); border: 1px solid rgba(183, 240, 91, .3); background: #102b1b; }
.local-visual i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--lime), transparent); }

.story { position: relative; background: #06120c; }
.story-grid { width: min(1420px, 100%); display: grid; grid-template-columns: .9fr 1.1fr; margin: 0 auto; }
.story-visual { position: sticky; top: 0; height: 100vh; min-height: 720px; display: grid; place-items: center; overflow: hidden; border-right: 1px solid rgba(151, 174, 160, .1); }
.story-aura { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(183, 240, 91, .18), transparent 68%); filter: blur(12px); }
.story-phone { width: min(335px, 54%); aspect-ratio: 9 / 20; }
.story-screen { position: absolute; inset: 0; opacity: 0; transform: scale(1.035); transition: opacity .6s, transform .8s; }
.story-screen.is-active { opacity: 1; transform: none; }
.story-step-indicator { --step: 1; position: absolute; right: 9%; bottom: 8%; display: flex; align-items: center; gap: 12px; color: var(--muted); }
.story-step-indicator b { color: var(--lime); font: 700 12px/1 var(--display); }
.story-step-indicator small { font-size: 9px; }
.story-step-indicator > span { width: 80px; height: 2px; overflow: hidden; background: #1d3527; }
.story-step-indicator i { display: block; width: calc(var(--step) / 3 * 100%); height: 100%; background: var(--lime); transition: width .4s; }
.story-copy { padding: clamp(110px, 12vw, 180px) clamp(32px, 7vw, 120px); }
.story-copy > .section-title { font-size: clamp(42px, 4.5vw, 70px); }
.story-step { min-height: 72vh; display: flex; flex-direction: column; justify-content: center; padding: 80px 0; opacity: .3; transition: opacity .45s; }
.story-step.is-active { opacity: 1; }
.story-step > span { color: var(--lime); font: 700 11px/1 var(--display); }
.story-step h3 { margin: 20px 0 0; font: 600 clamp(31px, 3.5vw, 51px)/1.08 var(--display); letter-spacing: -.045em; }
.story-step p { margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.story-note { padding: 22px 24px; color: var(--muted); border: 1px solid var(--border); border-radius: 16px; background: var(--card); font-size: 14px; line-height: 1.55; }
.story-note b { color: var(--lime); }

.metrics { background: var(--bg-soft); }
.metrics > .section-label, .metrics > .section-heading-row, .metric-list, .disclaimer { width: min(1420px, 100%); margin-inline: auto; }
.metrics > .section-heading-row { margin-top: 0; }
.metric-list { border-top: 1px solid var(--border); }
.metric-row { display: grid; grid-template-columns: 55px .75fr 1.55fr auto; align-items: center; gap: 30px; min-height: 132px; border-bottom: 1px solid var(--border); transition: padding .3s, background .3s; }
.metric-row:hover { padding-inline: 18px; background: rgba(183, 240, 91, .025); }
.metric-row > span { color: var(--lime); font: 700 9px/1 var(--display); }
.metric-row h3 { margin: 0; font: 600 clamp(28px, 3vw, 44px)/1 var(--display); letter-spacing: -.04em; }
.metric-row p { margin: 0; color: var(--muted); line-height: 1.55; }
.metric-row > b { color: #6f8778; font: 600 12px/1 var(--display); text-align: right; }
.disclaimer { display: grid; grid-template-columns: 46px 1fr; gap: 20px; margin-top: 42px; padding: 28px; border: 1px solid rgba(255, 139, 82, .24); border-radius: 18px; background: rgba(72, 37, 22, .28); }
.disclaimer > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--orange); border: 1px solid rgba(255, 139, 82, .4); border-radius: 50%; font: 700 17px/1 var(--display); }
.disclaimer p { margin: 0; color: #b7c4bc; line-height: 1.62; }
.disclaimer b { color: var(--text); }

.gallery { overflow: hidden; background: var(--bg); }
.gallery > .section-heading-row { margin-bottom: 60px; }
.gallery-hint { align-self: end; justify-self: end; display: flex; gap: 12px; margin: 0 0 10px; color: var(--muted); font-size: 12px; }
.gallery-hint span { color: var(--lime); }
.gallery-track {
  width: min(100%, 1600px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 27vw, 410px);
  gap: 22px;
  overflow-x: auto;
  margin-inline: auto;
  padding: 10px max(22px, calc((100vw - 1420px) / 2)) 38px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) #173024;
}
.gallery-card { --mx: 50%; --my: 50%; scroll-snap-align: center; margin: 0; padding: 24px; border: 1px solid var(--border); border-radius: 27px; background: radial-gradient(circle at var(--mx) var(--my), rgba(183, 240, 91, .07), transparent 40%), var(--card); }
.gallery-phone { width: 82%; aspect-ratio: 9 / 20; margin: 12px auto 28px; border-radius: 27px; box-shadow: 0 25px 60px rgba(0, 0, 0, .35), 0 0 0 5px #09150e; }
.gallery-card figcaption { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.gallery-card figcaption > span { color: var(--lime); font: 700 9px/1 var(--display); }
.gallery-card figcaption div { display: grid; gap: 6px; }
.gallery-card figcaption b { font: 600 16px/1.2 var(--display); }
.gallery-card figcaption small { color: var(--muted); }

.privacy { min-height: 820px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(60px, 9vw, 150px); overflow: hidden; background: #07160e; }
.privacy::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 28% 50%, rgba(183, 240, 91, .08), transparent 32%); }
.privacy-orbit { position: absolute; left: -3%; top: 50%; width: 46vw; max-width: 700px; aspect-ratio: 1; border: 1px solid rgba(183, 240, 91, .12); border-radius: 50%; transform: translateY(-50%); }
.privacy-orbit::before, .privacy-orbit::after { content: ""; position: absolute; inset: 13%; border: inherit; border-radius: inherit; }
.privacy-orbit::after { inset: 29%; }
.privacy-lock { position: relative; justify-self: center; width: clamp(220px, 25vw, 370px); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 34%; background: linear-gradient(145deg, #102b1b, #091a11); box-shadow: 0 30px 80px rgba(0, 0, 0, .38); transform: rotate(-6deg); }
.privacy-lock span { color: #10200f; font: 800 clamp(80px, 10vw, 150px)/1 var(--display); }
.privacy-lock::before { content: ""; position: absolute; z-index: -1; inset: -34% 22% 42%; border: 18px solid #183b25; border-bottom: 0; border-radius: 100px 100px 0 0; }
.privacy-lock i { position: absolute; inset: 18%; border-radius: 28%; background: var(--lime); }
.privacy-lock span { z-index: 1; }
.privacy-copy { position: relative; z-index: 2; max-width: 730px; }
.privacy-copy .section-lead { margin-top: 28px; }
.privacy-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.privacy-points span { padding: 10px 13px; color: #c2d3c9; border: 1px solid var(--border); border-radius: 99px; background: rgba(13, 31, 22, .65); font-size: 11px; }
.privacy-links { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; }
.privacy-links a { padding-bottom: 5px; color: var(--lime); border-bottom: 1px solid rgba(183, 240, 91, .3); font-size: 13px; font-weight: 600; }
.privacy-links span { display: inline-block; margin-left: 7px; transition: transform .25s; }
.privacy-links a:hover span { transform: translate(3px, -3px); }

.faq { width: min(1628px, 100%); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 160px); margin: 0 auto; background: var(--bg-soft); }
.faq::before { content: ""; position: absolute; z-index: -1; left: 50%; width: 100vw; top: 0; bottom: 0; background: var(--bg-soft); transform: translateX(-50%); }
.faq-heading { align-self: start; position: sticky; top: 120px; }
.faq-heading .section-title { font-size: clamp(42px, 4.8vw, 72px); }
.faq-heading .section-lead { margin-top: 24px; font-size: 16px; }
.faq-heading .section-lead a { color: var(--lime); border-bottom: 1px solid rgba(183, 240, 91, .3); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { min-height: 104px; display: grid; grid-template-columns: 40px 1fr 30px; align-items: center; gap: 18px; cursor: pointer; list-style: none; font: 600 clamp(17px, 1.5vw, 21px)/1.35 var(--display); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--lime); font: 700 9px/1 var(--display); }
.faq-list summary i { position: relative; width: 24px; height: 24px; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 1px; background: var(--lime); transform: translate(-50%, -50%); transition: transform .25s; }
.faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary i::after { transform: translate(-50%, -50%); }
.faq-list details p { margin: -10px 54px 34px 58px; color: var(--muted); line-height: 1.65; }

.final-cta { position: relative; min-height: 84vh; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 80px; overflow: hidden; isolation: isolate; padding: clamp(110px, 13vw, 190px) clamp(22px, 8vw, 130px); background: #07150e; }
.final-cta::before { content: ""; position: absolute; z-index: -3; inset: 0; background: radial-gradient(circle at 78% 50%, rgba(183, 240, 91, .13), transparent 28%); }
.cta-grid { mask-image: radial-gradient(circle at 70% 50%, #000, transparent 66%); }
.cta-beam { position: absolute; z-index: -1; top: -16%; right: -4%; width: 48%; height: 130%; background: linear-gradient(to bottom, rgba(183, 240, 91, .2), transparent 76%); clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%); filter: blur(6px); opacity: .45; transform: rotate(-8deg); }
.cta-copy { max-width: 960px; }
.cta-copy h2 { margin: 35px 0 0; font: 600 clamp(50px, 7.1vw, 112px)/.95 var(--display); letter-spacing: -.065em; }
.cta-copy h2 em { color: var(--lime); font-style: normal; }
.cta-copy > p:not(.eyebrow) { max-width: 690px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.6; }
.cta-copy .button { margin-top: 34px; }
.cta-copy > small { display: block; margin-top: 20px; color: #71877a; }
.cta-mark { position: relative; width: clamp(160px, 21vw, 330px); aspect-ratio: 1; display: grid; place-items: center; color: #13290f; border-radius: 34%; background: var(--lime); box-shadow: 0 0 100px rgba(183, 240, 91, .16); font: 800 clamp(76px, 11vw, 166px)/1 var(--display); transform: rotate(8deg); }

.site-footer { padding: 64px clamp(22px, 6vw, 104px) 30px; background: #030a07; }
.footer-top { display: grid; grid-template-columns: .6fr .8fr .6fr; align-items: center; gap: 50px; padding-bottom: 52px; border-bottom: 1px solid #1c2c23; }
.footer-top p { margin: 0; color: #7f9487; line-height: 1.55; }
.domino-link { justify-self: end; color: #a8b9af; font-size: 12px; }
.domino-link span { color: var(--lime); margin-left: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 28px; color: #607367; font-size: 11px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-bottom a:hover { color: var(--lime); }

a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; border-radius: 4px; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 22px; }
  .menu-button { width: 46px; height: 46px; display: grid; place-content: center; gap: 6px; padding: 0; color: inherit; border: 1px solid var(--border); border-radius: 13px; background: rgba(13, 31, 22, .72); }
  .menu-button span { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 110; inset: 68px 0 0; display: flex; flex-direction: column; gap: 0; padding: 25px; background: rgba(5, 15, 11, .98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a { display: flex; align-items: center; min-height: 67px; border-bottom: 1px solid var(--border); font: 600 22px/1 var(--display); }
  .mobile-nav a:last-child { justify-content: center; margin-top: 24px; color: #0a170c; border: 0; border-radius: 15px; background: var(--lime); font-size: 15px; }
  .hero-shell { grid-template-columns: 1fr .8fr; gap: 30px; }
  .hero-visual { min-height: 620px; }
  .measure-chip { transform: scale(.9); }
  .chip-ppfd { left: -12%; }
  .feature-bento { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-row: span 1; }
  .feature-wide { grid-column: span 1; }
  .story-grid { grid-template-columns: .82fr 1.18fr; }
  .metric-row { grid-template-columns: 40px .6fr 1.4fr auto; }
}

@media (max-width: 900px) {
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { padding-top: 130px; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(48px, 10.8vw, 83px); }
  .hero-visual { min-height: 680px; margin-top: 20px; }
  .hero-phone { width: min(335px, 55%); }
  .chip-ppfd { left: 10%; }
  .chip-sensor { right: 10%; }
  .measure-scale { right: 12%; }
  .scroll-prompt { display: none; }
  .section-heading-row { grid-template-columns: 1fr; gap: 25px; }
  .problem-grid { grid-template-columns: 1fr; }
  .map-stage { max-width: 680px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { top: 68px; z-index: 2; height: 68vh; min-height: 540px; border-right: 0; border-bottom: 1px solid rgba(151, 174, 160, .1); background: #06120c; }
  .story-phone { width: min(255px, 36%); }
  .story-step-indicator { right: 8%; bottom: 50%; transform: translateY(50%); }
  .story-copy { padding-top: 90px; }
  .story-step { min-height: 62vh; }
  .metric-row { grid-template-columns: 35px 1fr auto; gap: 18px; padding-block: 26px; }
  .metric-row p { grid-column: 2 / -1; }
  .privacy { grid-template-columns: 1fr; }
  .privacy-lock { order: 2; justify-self: start; margin: 0 0 40px 13vw; }
  .privacy-copy { order: 1; }
  .privacy-orbit { left: auto; right: -14%; top: 72%; width: 70vw; }
  .faq { grid-template-columns: 1fr; }
  .faq-heading { position: relative; top: auto; }
  .final-cta { grid-template-columns: 1fr; }
  .cta-mark { display: none; }
  .cta-beam { right: -15%; width: 72%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .domino-link { justify-self: start; }
}

@media (max-width: 650px) {
  .site-header { height: 72px; padding-inline: 18px; }
  .site-header.is-scrolled { height: 64px; }
  .app-mark { width: 32px; height: 32px; border-radius: 10px; }
  .hero { min-height: auto; padding: 118px 20px 88px; }
  .hero h1 { font-size: clamp(43px, 13vw, 66px); line-height: .98; }
  .hero-lead { font-size: 16px; line-height: 1.58; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-line { display: grid; gap: 10px; }
  .hero-visual { min-height: 580px; }
  .hero-phone { width: min(270px, 68%); }
  .chip-ppfd { left: -1%; top: 16%; padding: 13px; }
  .chip-sensor { right: -2%; bottom: 17%; }
  .measure-scale { right: 2%; }
  .light-beam { width: 110%; }
  .section-pad { padding: 96px 20px; }
  .section-title { margin-top: 28px; font-size: clamp(39px, 12vw, 58px); }
  .problem-grid { gap: 55px; margin-top: 35px; }
  .map-stage { padding: 18px; border-radius: 23px; }
  .heat-map { gap: 7px; margin-top: 20px; }
  .heat-map > span { border-radius: 13px; }
  .heat-map b { font-size: 18px; }
  .heat-map i { top: 7px; left: 7px; width: 17px; height: 17px; }
  .map-result { grid-template-columns: 1fr 1fr; }
  .feature-bento { grid-template-columns: 1fr; }
  .feature-card { min-height: 310px; }
  .story-visual { height: 62vh; min-height: 500px; }
  .story-phone { width: min(224px, 48%); border-radius: 27px; }
  .story-step-indicator { right: 5%; flex-direction: column; }
  .story-step-indicator > span { width: 2px; height: 70px; }
  .story-step-indicator i { width: 100%; height: calc(var(--step) / 3 * 100%); }
  .story-copy { padding: 78px 20px 100px; }
  .story-step { min-height: 58vh; }
  .story-step p { font-size: 16px; }
  .metric-row { grid-template-columns: 28px 1fr; }
  .metric-row > b { display: none; }
  .metric-row p { grid-column: 2; }
  .disclaimer { grid-template-columns: 1fr; padding: 22px; }
  .gallery-track { grid-auto-columns: min(82vw, 350px); padding-inline: 20px; }
  .gallery-card { padding: 18px; }
  .privacy { min-height: 980px; }
  .privacy-links { display: grid; }
  .faq-list summary { min-height: 92px; grid-template-columns: 25px 1fr 24px; gap: 11px; }
  .faq-list details p { margin: -4px 34px 30px 36px; }
  .final-cta { min-height: 82vh; padding: 110px 20px; }
  .cta-copy h2 { font-size: clamp(47px, 13vw, 72px); }
  .cta-copy > p:not(.eyebrow) { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom nav { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-reveal { opacity: 1; transform: none; }
  .title-line > span { transform: none; }
  .hero-visual, .hero-phone { transform: none; }
}
