/* =========================================================================
   SPECTRE VISION — website styles
   Built to the Brand Guidelines v1.0 (July 2026)
   Type: Space Grotesk (display/headings) + Inter (body/UI)
   Color discipline: 60% neutral / 30% navy & secondary / 10% teal & semantic
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Primary */
  --teal:        #00A6A6;
  --teal-700:    #018A8A;
  --navy:        #13294B;
  --navy-800:    #0E1F3A;
  --navy-900:    #0A1830;

  /* Secondary */
  --steel:       #1F4E79;
  --light-teal:  #7FD4D4;
  --ice:         #EEF3F8;

  /* Functional (semantic — never decorative) */
  --red:         #E63946;
  --amber:       #F4B400;
  --green:       #2FA36B;

  /* Neutrals */
  --ink:         #1C2733;
  --slate:       #5B6B7A;
  --mist:        #CBD8E4;
  --white:       #FFFFFF;

  /* Derived */
  --line:        #E3EAF2;
  --ice-2:       #F5F8FC;
  --shadow-sm:   0 1px 2px rgba(19,41,75,.06), 0 1px 3px rgba(19,41,75,.05);
  --shadow-md:   0 4px 14px rgba(19,41,75,.08), 0 2px 6px rgba(19,41,75,.05);
  --shadow-lg:   0 24px 60px rgba(19,41,75,.14), 0 8px 24px rgba(19,41,75,.08);
  --shadow-teal: 0 10px 30px rgba(0,166,166,.28);

  --container: 1200px;
  --radius:    16px;
  --radius-sm: 10px;
  --ease:      cubic-bezier(.22,.61,.36,1);

  --ff-display: "Space Grotesk", "Arial", sans-serif;
  --ff-body:    "Inter", "Calibri", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* The palette is fixed by the brand (White is the primary background, §3.4), so the
   page commits to one visual world. Pin the scheme so native controls — the select
   in the contact form — don't render dark-on-light under a dark OS theme. */
:root, :root[data-theme="dark"], :root[data-theme="light"] { color-scheme: light; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type scale (brand §4.2) ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); color: var(--navy); font-weight: 700; letter-spacing: -.01em; line-height: 1.12; }
.display { font-size: clamp(2.35rem, 1.4rem + 4.2vw, 3.6rem); line-height: 1.06; font-weight: 700; letter-spacing: -.025em; }
h1, .h1 { font-size: clamp(1.9rem, 1.4rem + 1.9vw, 2.6rem); }
h2, .h2 { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.75rem); font-weight: 600; }
h3, .h3 { font-size: 1.25rem; font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem); line-height: 1.6; color: var(--slate); }
.small { font-size: .875rem; }

.kicker {
  font-family: var(--ff-body);
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: .55rem;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--teal); display: inline-block; }
.kicker.on-dark { color: var(--light-teal); }
.kicker.on-dark::before { background: var(--light-teal); }
.kicker.center { justify-content: center; }

.accent { color: var(--teal); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1rem; }
.eyebrow-gap > * + * { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .975rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,166,166,.36); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--mist); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 1.02rem 1.9rem; font-size: 1.02rem; }
.btn-arrow { transition: transform .18s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav.scrolled { background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo .logo-light { display: none; }
.nav-logo .logo-dark  { display: block; }
.nav:not(.scrolled) .logo-light { display: block; }
.nav:not(.scrolled) .logo-dark  { display: none; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.85); transition: color .18s; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--slate); }
.nav.scrolled .nav-links a:hover { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav .btn-primary { padding: .7rem 1.25rem; box-shadow: none; }
.nav .btn-primary:hover { box-shadow: var(--shadow-teal); }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mobile-menu { position: fixed; inset: 76px 0 0 0; background: var(--navy); z-index: 99; transform: translateX(100%); transition: transform .34s var(--ease); display: flex; flex-direction: column; padding: 2rem clamp(1.25rem,5vw,2.5rem) 2.5rem; gap: .25rem; overflow-y: auto; }
body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a { color: #fff; font-family: var(--ff-display); font-size: 1.5rem; font-weight: 500; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy); color: #fff;
  padding-top: clamp(9rem, 12vw, 11rem); padding-bottom: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before { /* subtle grid */
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(ellipse 80% 70% at 60% 20%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero::after { /* teal glow */
  content: ""; position: absolute; width: 620px; height: 620px; right: -140px; top: -180px;
  background: radial-gradient(circle, rgba(0,166,166,.28), transparent 62%); pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy { max-width: 620px; }
.hero .badge { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 500; color: var(--light-teal); background: rgba(0,166,166,.12); border: 1px solid rgba(0,166,166,.28); padding: .45rem .9rem; border-radius: 999px; margin-bottom: 1.6rem; }
.hero .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(0,166,166,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,166,166,.6);} 70% { box-shadow: 0 0 0 9px rgba(0,166,166,0);} 100% { box-shadow: 0 0 0 0 rgba(0,166,166,0);} }
.hero h1.display { color: #fff; margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--light-teal); }
.hero-sub { font-size: clamp(1.02rem, .98rem + .3vw, 1.16rem); line-height: 1.6; color: rgba(255,255,255,.78); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-proof { margin-top: 2rem; display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: rgba(255,255,255,.7); }
.hero-proof svg { width: 18px; height: 18px; color: var(--teal); flex: none; }

/* hero visual — flat, branded (no CCTV imagery, per §5.4 journey rule) */
.hero-visual { position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; width: 100%; }
.scan-stage { position: absolute; inset: 0; display: grid; place-items: center; }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(127,212,212,.28); }
.ring.r1 { inset: 4%; } .ring.r2 { inset: 15%; } .ring.r3 { inset: 27%; border-color: rgba(127,212,212,.18); }
.ring.dashed { inset: 4%; border: 1.5px dashed rgba(0,166,166,.5); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.sweep { position: absolute; inset: 4%; border-radius: 50%; overflow: hidden; }
.sweep::after { content: ""; position: absolute; inset: 0; background: conic-gradient(from 0deg, rgba(0,166,166,.32), transparent 28%); animation: spin 4.6s linear infinite; }
.pulse-wave { position: absolute; inset: 27%; border-radius: 50%; border: 1px solid rgba(0,166,166,.55); animation: wave 3.4s var(--ease) infinite; }
.pulse-wave.d2 { animation-delay: 1.7s; }
@keyframes wave { 0% { transform: scale(.7); opacity: .9; } 100% { transform: scale(2.3); opacity: 0; } }
.hero-icon { position: relative; width: 34%; filter: drop-shadow(0 12px 30px rgba(0,0,0,.4)); z-index: 2; }
/* floating detection chips (flat UI, semantic colors) */
.chip { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: .5rem; background: rgba(14,31,58,.82); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(6px); padding: .5rem .8rem; border-radius: 10px; font-size: .78rem; font-weight: 500; color: #fff; box-shadow: var(--shadow-md); animation: float 6s ease-in-out infinite; }
.chip .sq { width: 9px; height: 9px; border-radius: 2px; flex: none; }
.chip.c1 { top: 8%; left: -6%; animation-delay: 0s; }
.chip.c2 { top: 42%; right: -10%; animation-delay: 1.2s; }
.chip.c3 { bottom: 9%; left: 2%; animation-delay: 2.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.corner { position: absolute; width: 26px; height: 26px; border: 2px solid var(--teal); z-index: 1; }
.corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* logo strip */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); padding-block: 1.6rem; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 2.2rem; }
.trust-strip p { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--slate); font-weight: 600; }
.trust-tags { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.trust-tag { font-size: .82rem; font-weight: 500; color: var(--steel); background: var(--ice); border: 1px solid var(--line); padding: .4rem .85rem; border-radius: 999px; }

/* ---------- Problem section ---------- */
.problem { background: var(--ice); }
.problem-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: end; }
.stat-big { font-family: var(--ff-display); font-weight: 700; font-size: clamp(3rem, 2rem + 5vw, 4.6rem); color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.stat-big .accent { color: var(--teal); }
.stat-cap { margin-top: .5rem; color: var(--slate); font-size: .95rem; max-width: 320px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.2rem; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--ice); color: var(--navy); margin-bottom: 1.1rem; }
.pillar-ico svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.1rem; margin-bottom: .9rem; }
.pillar ul { list-style: none; display: grid; gap: .55rem; }
.pillar li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--slate); }
/* semantic marker — colour carries meaning (§3.3), set per pillar */
.pillar li .mk { width: 6px; height: 6px; border-radius: 50%; background: var(--slate); flex: none; margin-top: .55em; }
.pillar[data-sem="violation"] li .mk { background: var(--red); }
.pillar[data-sem="caution"]   li .mk { background: var(--amber); }
.pillar[data-sem="insight"]   li .mk { background: var(--teal); }

/* ---------- Solution section ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.2rem; }
.benefit { padding: 1.75rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); position: relative; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--mist); }
.benefit::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--teal), var(--light-teal)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.benefit:hover::before { transform: scaleX(1); }
.benefit-ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,166,166,.1); color: var(--teal); display: grid; place-items: center; margin-bottom: 1.2rem; }
.benefit-ico svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.12rem; margin-bottom: .55rem; }
.benefit p { font-size: .92rem; color: var(--slate); line-height: 1.55; }

/* ---------- Capabilities ---------- */
.capabilities { background: var(--navy); color: #fff; }
.capabilities h2 { color: #fff; }
.capabilities .lead { color: rgba(255,255,255,.72); }
.cap-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.5rem; margin-bottom: 2.4rem; }
.cap-tab { display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.82); padding: .7rem 1.15rem; border-radius: 999px; font-weight: 500; font-size: .95rem; transition: all .2s var(--ease); }
.cap-tab .tdot { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.cap-tab:hover { background: rgba(255,255,255,.1); color: #fff; }
.cap-tab.active { background: #fff; color: var(--navy); border-color: #fff; }
.cap-panel { display: none; }
.cap-panel.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cap-card { background: var(--navy-800); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s; }
.cap-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0,166,166,.5); }
.cap-figure { position: relative; aspect-ratio: 1; overflow: hidden; background: #0b1830; }
.cap-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cap-card:hover .cap-figure img { transform: scale(1.05); }
/* Semantic tag sits in the card body — the stills already carry their own
   corner banner, and stacking a second label on the frame reads as clutter. */
.cap-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .66rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: .5rem; }
.cap-tag .tdot { width: 7px; height: 7px; border-radius: 2px; flex: none; }
.cap-body { padding: 1.05rem 1.15rem 1.25rem; }
.cap-body h3 { color: #fff; font-size: 1rem; margin-bottom: .35rem; }
.cap-body p { font-size: .84rem; color: rgba(255,255,255,.62); line-height: 1.5; }
.cap-more { margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; color: rgba(255,255,255,.72); font-size: .92rem; }
.cap-more .tag { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: .35rem .8rem; font-size: .82rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.4rem; position: relative; }
.steps::before { content: ""; position: absolute; top: 30px; left: 7.5%; width: 76%; height: 2px; background: repeating-linear-gradient(90deg, var(--mist) 0 8px, transparent 8px 16px); z-index: 0; }
.step { position: relative; z-index: 1; }
.step-num { width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 2px solid var(--teal); color: var(--teal); font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem; display: grid; place-items: center; margin-bottom: 1.3rem; box-shadow: 0 6px 18px rgba(0,166,166,.16); }
.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { color: var(--slate); font-size: .92rem; line-height: 1.55; }

/* ---------- Results ---------- */
.results { background: var(--ice); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.2rem; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: left; }
.stat-num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.1rem); color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.stat-num .u { color: var(--teal); }
.stat-label { margin-top: .7rem; color: var(--slate); font-size: .92rem; line-height: 1.45; }
.finding { margin-top: 2.5rem; background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,3vw,2.5rem); align-items: center; }
.finding::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(0,166,166,.22), transparent 65%); }
.finding-mark { width: 64px; height: 64px; border-radius: 14px; background: rgba(0,166,166,.14); border: 1px solid rgba(0,166,166,.3); display: grid; place-items: center; color: var(--light-teal); flex: none; }
.finding-mark svg { width: 30px; height: 30px; }
.finding .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--light-teal); font-weight: 600; margin-bottom: .7rem; }
.finding blockquote { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.15rem, 1rem + .9vw, 1.55rem); line-height: 1.4; color: #fff; }
.finding blockquote .accent { color: var(--light-teal); }
.finding cite { display: block; margin-top: 1rem; font-style: normal; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---------- Pilot CTA ---------- */
.pilot { background: var(--navy); color: #fff; text-align: center; position: relative; overflow: hidden; }
.pilot::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0,166,166,.22), transparent 60%); }
.pilot .container { position: relative; max-width: 780px; }
.pilot h2 { color: #fff; font-size: clamp(1.8rem, 1.3rem + 2.4vw, 2.9rem); font-weight: 700; }
.pilot p { color: rgba(255,255,255,.78); margin-top: 1.1rem; font-size: 1.08rem; max-width: 620px; margin-inline: auto; }
.pilot .hero-cta { justify-content: center; }
.pilot-note { margin-top: 1.4rem; font-size: .86rem; color: rgba(255,255,255,.55); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lead { margin-bottom: 2rem; }
.contact-list { list-style: none; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ci-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--ice); color: var(--teal); display: grid; place-items: center; flex: none; }
.contact-list .ci-ico svg { width: 20px; height: 20px; }
.contact-list .ci-k { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--slate); font-weight: 600; }
.contact-list .ci-v { font-weight: 500; color: var(--navy); }
.contact-list .ph { color: var(--slate); font-weight: 400; font-size: .86rem; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.field label .req { color: var(--red); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: .97rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--mist); border-radius: var(--radius-sm); background: var(--ice-2);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(0,166,166,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-card .btn { width: 100%; margin-top: .4rem; }
.form-note { font-size: .8rem; color: var(--slate); margin-top: 1rem; text-align: center; }

/* honeypot — off-screen for bots, never shown or focusable */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* submit states */
.spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
#submitBtn.loading { pointer-events: none; opacity: .85; }
#submitBtn.loading .btn-arrow { display: none; }
#submitBtn.loading .spinner { display: block; }

.form-error { display: none; margin-top: .9rem; font-size: .87rem; line-height: 1.5; color: var(--red); background: rgba(230,57,70,.07); border: 1px solid rgba(230,57,70,.25); border-radius: var(--radius-sm); padding: .7rem .85rem; }
.form-error.show { display: block; }
.form-error a { color: var(--red); font-weight: 600; text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 1rem 0; }
.form-success.show { display: block; animation: fadeUp .4s var(--ease); }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: rgba(47,163,107,.12); color: var(--green); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.form-success .ok svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: .5rem; }
.form-success p { color: var(--slate); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 30px; margin-bottom: 1.3rem; }
.footer-brand .tagline { font-family: var(--ff-display); color: #fff; font-size: 1.05rem; font-weight: 500; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; max-width: 320px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-family: var(--ff-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: .7rem; }
.footer-col a { font-size: .92rem; color: rgba(255,255,255,.7); transition: color .18s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: .84rem; }
.footer-bottom .legal { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { grid-row: 1; max-width: 360px; margin-bottom: 1rem; }
  .hero-copy { max-width: 640px; }
  .pillars, .benefits, .cap-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .steps::before { display: none; }
  .problem-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav-links, .nav-actions .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .hero-visual { display: none; }
  .finding { grid-template-columns: 1fr; text-align: left; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pillars, .benefits, .cap-grid, .stats-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta .btn, .pilot .hero-cta .btn { width: 100%; }
}
