/* ============================================================
   AGRILINK360 — "Precision Agronomy Terminal"
   Aesthetic: industrial-utilitarian machine vision × organic serif accents.
   Deep botanical dark ground, signal-green optics, amber warnings.
   ============================================================ */

:root {
  /* color story: one dominant dark-botanical tone, green signal accent, amber warning */
  --ink:        #091510;   /* deep botanical black-green */
  --ink-2:      #0d1c14;
  --ink-3:      #12251a;
  --line:       rgba(163, 216, 180, 0.14);
  --line-hard:  rgba(163, 216, 180, 0.28);
  --paper:      #f3f0e7;   /* warm bone for light sections */
  --paper-2:    #eae6d8;
  --text:       #e8f0e9;
  --text-dim:   rgba(232, 240, 233, 0.62);
  --text-ink:   #17251c;
  --text-ink-dim: rgba(23, 37, 28, 0.66);
  --green:      #4ade80;
  --green-deep: #16a34a;
  --amber:      #f5b942;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Space Grotesk", "Helvetica Neue", sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", monospace;

  --container: 1180px;
  --r: 14px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film grain over everything */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.mono { font-family: var(--font-mono); font-weight: 400; letter-spacing: 0.02em; }
.serif-accent { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--green); }
.amber { color: var(--amber); }

h1, h2, h3 { font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; }

h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn-solid {
  background: var(--green);
  color: var(--ink);
  font-weight: 500;
}
.btn-solid:hover { background: #6ee79a; transform: translateY(-2px); }
.btn-outline {
  border-color: var(--line-hard);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-ghost { color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(9, 21, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); text-decoration: none;
}
.brand-mark { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-name em { font-style: normal; color: var(--green); font-weight: 300; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 32px 24px;
  background: rgba(9, 21, 16, 0.97);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a { color: var(--text); text-decoration: none; padding: 12px 0; font-size: 1.05rem; }
.nav-mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 0;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  margin-bottom: 26px;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.74rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}
.dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-hard); }

/* ---------- scanner (the anchor) ---------- */
.scanner {
  border: 1px solid var(--line-hard);
  border-radius: var(--r);
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(74, 222, 128, 0.04);
}
.scanner-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
}
.chrome-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }
.chrome-label { color: var(--text-dim); letter-spacing: 0.14em; }
.chrome-status { margin-left: auto; color: var(--green); letter-spacing: 0.12em; animation: blink 1.6s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.35; } }

.scanner-viewport {
  position: relative;
  aspect-ratio: 560 / 360;
  background: #0a120d;
  overflow: hidden;
}
.scan-scene { width: 100%; height: 100%; display: block; }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74, 222, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.scanline {
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.14) 45%, rgba(74, 222, 128, 0.55) 50%, rgba(74, 222, 128, 0.14) 55%, transparent);
  animation: sweep 4.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  pointer-events: none;
}
@keyframes sweep {
  0%   { left: -90px; }
  50%  { left: 100%; }
  100% { left: -90px; }
}

.crosshair { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
.crosshair span:nth-child(1) { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(74, 222, 128, 0.18); }
.crosshair span:nth-child(2) { position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(74, 222, 128, 0.18); }

/* bounding boxes */
.bbox {
  position: absolute;
  border: 1.5px solid var(--green);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.bbox.show { opacity: 1; }
.bbox::before, .bbox::after {
  content: ""; position: absolute;
  width: 10px; height: 10px;
  border-color: inherit;
}
.bbox::before { top: -1.5px; left: -1.5px; border-top: 3px solid; border-left: 3px solid; border-color: inherit; }
.bbox::after { bottom: -1.5px; right: -1.5px; border-bottom: 3px solid; border-right: 3px solid; border-color: inherit; }
.bbox-tag {
  position: absolute;
  top: -24px; left: -1.5px;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  background: var(--green);
  color: var(--ink);
  padding: 3px 7px;
  border-radius: 3px;
  white-space: nowrap;
  font-weight: 500;
}
.bbox-tag b { font-weight: 600; }
.bbox-fail { border-color: var(--amber); animation: alert-flash 1.1s ease infinite; }
.bbox-fail .bbox-tag { background: var(--amber); }
@keyframes alert-flash { 50% { box-shadow: 0 0 22px rgba(245, 185, 66, 0.35); } }

#bbox1 { left: 10.5%; top: 51%;  width: 22.5%; height: 31%; }
#bbox2 { left: 41%;   top: 54.5%; width: 25%;  height: 29%; }
#bbox3 { left: 73.5%; top: 52.5%; width: 20%;  height: 29%; }

/* console */
.scanner-console {
  height: 92px;
  overflow: hidden;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
  line-height: 1.75;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.scanner-console .ok { color: var(--green); }
.scanner-console .warn { color: var(--amber); }

.scanner-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.64rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}
.scanner-footer b { color: var(--text); font-weight: 500; margin-left: 6px; }
.scanner-footer b.amber { color: var(--amber); }

/* marquee */
.marquee {
  margin-top: 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.marquee-track i { color: var(--green); font-style: normal; font-size: 0.55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STAKES (light band)
   ============================================================ */
.stakes {
  background: var(--paper);
  color: var(--text-ink);
  padding: 110px 0;
}
.stakes .eyebrow { color: var(--green-deep); }
.stakes .serif-accent { color: var(--green-deep); }
.stakes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.stakes-copy h2 { margin-bottom: 22px; }
.stakes-copy p { color: var(--text-ink-dim); font-size: 1.08rem; max-width: 480px; }
.stakes-stats { display: flex; flex-direction: column; gap: 1px; background: rgba(23, 37, 28, 0.14); border: 1px solid rgba(23, 37, 28, 0.14); border-radius: var(--r); overflow: hidden; }
.stat-card {
  background: var(--paper);
  padding: 28px 30px;
  display: flex;
  align-items: baseline;
  gap: 22px;
}
.stat-num {
  font-size: 2.4rem;
  color: var(--text-ink);
  min-width: 150px;
  letter-spacing: -0.03em;
}
.stat-label { color: var(--text-ink-dim); font-size: 0.92rem; line-height: 1.5; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 130px 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 18px; }
.section-sub { color: var(--text-dim); font-size: 1.05rem; }

.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.how-step {
  background: var(--ink);
  padding: 40px 34px 44px;
  position: relative;
  transition: background 0.25s ease;
}
.how-step:hover { background: var(--ink-2); }
.step-index {
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.2em;
}
.step-visual { margin: 26px 0 20px; color: var(--text-dim); }
.step-visual svg { width: 108px; height: 82px; }
.how-step h3 { font-size: 1.35rem; margin-bottom: 12px; }
.how-step p { color: var(--text-dim); font-size: 0.95rem; }

/* ============================================================
   DETECTION LIBRARY
   ============================================================ */
.detection {
  padding: 130px 0;
  background:
    radial-gradient(ellipse 60% 45% at 85% 0%, rgba(74, 222, 128, 0.06), transparent 60%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.detect-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px;
  background: rgba(9, 21, 16, 0.55);
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.detect-card:hover { border-color: rgba(74, 222, 128, 0.45); transform: translateY(-4px); }
.detect-code { font-size: 0.66rem; color: var(--green); letter-spacing: 0.2em; margin-bottom: 18px; }
.detect-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.detect-card p { color: var(--text-dim); font-size: 0.92rem; flex: 1; }
.detect-acc {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 0.82rem;
  color: var(--text);
}
.detect-acc em { font-style: normal; color: var(--text-dim); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-left: 6px; }

/* ============================================================
   PLATFORM
   ============================================================ */
.platform { padding: 130px 0; }
.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}
.platform-copy h2 { margin-bottom: 36px; }
.platform-list { list-style: none; display: flex; flex-direction: column; }
.platform-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.platform-list li:last-child { border-bottom: 1px solid var(--line); }
.platform-list h3 { font-size: 1.08rem; margin-bottom: 6px; }
.platform-list p { color: var(--text-dim); font-size: 0.92rem; }

/* dashboard mock */
.dash {
  border: 1px solid var(--line-hard);
  border-radius: var(--r);
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.7);
}
.dash-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.66rem;
  color: var(--text-dim);
  letter-spacing: 0.14em;
}
.dash-live { color: var(--green); animation: blink 1.6s steps(2) infinite; }
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.dash-kpi { background: var(--ink-2); padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.kpi-label { font-size: 0.56rem; color: var(--text-dim); letter-spacing: 0.14em; }
.kpi-val { font-size: 1.3rem; color: var(--text); }
.kpi-val.amber { color: var(--amber); }
.kpi-delta { font-size: 0.62rem; color: var(--text-dim); }
.kpi-delta.down { color: var(--green); }
.kpi-delta.up { color: var(--green); }
.dash-chart { padding: 18px; border-bottom: 1px solid var(--line); }
.dash-chart svg { width: 100%; height: 110px; display: block; }
.chart-line { filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.4)); }
.chart-legend { display: flex; gap: 20px; margin-top: 10px; font-size: 0.6rem; color: var(--text-dim); letter-spacing: 0.1em; }
.chart-legend i { display: inline-block; width: 14px; height: 2px; margin-right: 6px; vertical-align: middle; }
.lg-green { background: var(--green); }
.lg-amber { background: var(--amber); }
.dash-rows { font-size: 0.68rem; }
.dash-row {
  display: flex; justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.dash-row:first-child { border-top: none; }
.row-ok { color: var(--green); }
.row-warn { color: var(--amber); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
  padding: 130px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ind-card {
  border-top: 2px solid var(--line-hard);
  padding: 26px 4px 0;
  transition: border-color 0.25s ease;
}
.ind-card:hover { border-top-color: var(--green); }
.ind-num { font-size: 0.68rem; color: var(--green); letter-spacing: 0.18em; }
.ind-card h3 { font-size: 1.15rem; margin: 14px 0 10px; }
.ind-card p { color: var(--text-dim); font-size: 0.9rem; }

/* ============================================================
   QUOTE BAND (light)
   ============================================================ */
.quote-band {
  background: var(--paper);
  color: var(--text-ink);
  padding: 120px 0;
}
.quote-band blockquote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-band p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  font-weight: 300;
  margin-bottom: 36px;
}
.quote-band em { font-style: italic; color: var(--green-deep); }
.quote-band footer { display: flex; flex-direction: column; gap: 6px; }
.quote-name { font-size: 1rem; font-weight: 500; }
.quote-org { font-size: 0.7rem; color: var(--text-ink-dim); letter-spacing: 0.18em; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 130px 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 32px;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-featured {
  border-color: rgba(74, 222, 128, 0.55);
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(74, 222, 128, 0.09), transparent 70%),
    var(--ink-2);
}
.price-flag {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--ink);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
}
.price-card h3 { font-size: 0.8rem; letter-spacing: 0.24em; color: var(--green); margin-bottom: 8px; }
.price-desc { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 24px; }
.price-num { font-size: 2.5rem; letter-spacing: -0.03em; margin-bottom: 26px; line-height: 1; }
.price-per { font-size: 0.8rem; color: var(--text-dim); font-family: var(--font-body); margin-left: 8px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.price-card li {
  font-size: 0.92rem;
  color: var(--text-dim);
  padding-left: 24px;
  position: relative;
}
.price-card li::before {
  content: "▸";
  position: absolute; left: 0;
  color: var(--green);
  font-size: 0.8rem;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: 150px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-scan {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(74, 222, 128, 0.1), transparent 70%);
  pointer-events: none;
}
.cta .eyebrow { justify-content: center; }
.cta h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 22px; }
.cta-sub { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 40px; }
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 20px;
}
.cta-form input {
  flex: 1;
  background: var(--ink-2);
  border: 1px solid var(--line-hard);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}
.cta-form input:focus { border-color: var(--green); }
.cta-form input::placeholder { color: var(--text-dim); }
.cta-note { font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.1em; }
.cta-note.ok { color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
  background: var(--ink-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; margin-top: 18px; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.66rem; letter-spacing: 0.22em; color: var(--text-dim); margin-bottom: 6px; font-weight: 400; }
.footer-col a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; transition: color 0.18s ease; }
.footer-col a:hover { color: var(--green); }
.footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; }
  .scanner { max-width: 640px; }
  .how-steps { grid-template-columns: 1fr; }
  .detect-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr; gap: 48px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stakes-grid { grid-template-columns: 1fr; gap: 48px; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { background: rgba(9, 21, 16, 0.92); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
  .container, .nav-inner, .hero-inner { padding-left: 20px; padding-right: 20px; }
  .detect-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .stat-card { flex-direction: column; gap: 8px; }
  .stat-num { min-width: 0; }
  .cta-form { flex-direction: column; }
  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .marquee { margin-top: 56px; }
  .how, .detection, .platform, .industries, .pricing { padding: 88px 0; }
  .quote-band, .stakes { padding: 80px 0; }
  .cta { padding: 100px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
