/* =========================================================================
   ScanUP — Property Intelligence
   Design system & site styles
   Powered by Tri-State 3D Tech & Design
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Base — deep navy */
  --navy-900: #08182e;
  --navy-800: #0c2545;
  --navy-700: #163a63;
  --navy-600: #1f4d7e;
  --navy-line: rgba(99, 210, 220, 0.16);

  /* Accent — electric blue */
  --blue-600: #0e8693;
  --blue-500: #16b3bb;
  --blue-400: #3fd8e9;
  --blue-300: #91eaf3;
  --blue-soft: rgba(16, 179, 187, 0.12);

  /* Light surfaces */
  --paper: #ffffff;
  --offwhite: #f6f8fc;
  --gray-50: #eef2f8;
  --gray-100: #e6ecf4;
  --border: #dde5f0;
  --border-strong: #cdd8e8;

  /* Ink / text */
  --ink-900: #0f1c2e;
  --ink-700: #2a3a4f;
  --ink-500: #56687f;
  --ink-400: #7e8ea3;
  --on-dark: #e8f5f6;
  --on-dark-muted: #9bc2c7;

  /* Functional (dashboard only, used sparingly) */
  --pos: #1f9d76;
  --pos-soft: rgba(31, 157, 118, 0.12);
  --warn: #d8932f;
  --warn-soft: rgba(216, 147, 47, 0.14);

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(15, 28, 46, 0.06), 0 2px 8px rgba(15, 28, 46, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 28, 46, 0.08), 0 2px 6px rgba(15, 28, 46, 0.05);
  --shadow-lg: 0 24px 60px rgba(8, 23, 41, 0.16), 0 8px 20px rgba(8, 23, 41, 0.08);
  --shadow-glow: 0 24px 70px rgba(16, 134, 147, 0.28);

  --container: 1200px;
  --pad: clamp(20px, 5vw, 40px);

  --mono: var(--font-mono), "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--blue-600); color: #fff; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 9.5vw, 132px); position: relative; scroll-margin-top: 80px; }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }

.bg-paper { background: var(--paper); }
.bg-offwhite { background: var(--offwhite); }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy-800); color: var(--on-dark); }
.bg-navy-deep { background: var(--navy-900); color: var(--on-dark); }

/* Textures */
.grid-texture {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 75%);
}
.grid-texture--light {
  background-image:
    linear-gradient(rgba(16,179,187,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,179,187,0.07) 1px, transparent 1px);
}
.scanlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(180deg, rgba(99,210,220,0.10) 0 1px, transparent 1px 6px);
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue-600);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--blue-600); display: inline-block;
}
.bg-navy .eyebrow, .bg-navy-deep .eyebrow { color: var(--blue-400); }
.bg-navy .eyebrow::before, .bg-navy-deep .eyebrow::before { background: var(--blue-400); }
.eyebrow--center { justify-content: center; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; color: inherit; }
.display {
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h2 { font-size: clamp(1.8rem, 3.4vw, 2.85rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.005em; line-height: 1.1; }
.h3 { font-size: clamp(1.4rem, 2.1vw, 1.75rem); }
.lead {
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.62; color: var(--ink-500); font-weight: 400;
  max-width: 60ch; text-wrap: pretty;
}
.bg-navy .lead, .bg-navy-deep .lead { color: var(--on-dark-muted); }
.muted { color: var(--ink-500); }
.bg-navy .muted, .bg-navy-deep .muted { color: var(--on-dark-muted); }

.section-head { max-width: 760px; }
.section-head--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lead { margin-top: 22px; }

/* gradient accent word */
.accent-word { color: var(--blue-600); }
.bg-navy .accent-word, .bg-navy-deep .accent-word {
  color: transparent;
  background: linear-gradient(100deg, var(--blue-400), var(--blue-300));
  -webkit-background-clip: text; background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 500; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--blue-600); color: #fff;
  box-shadow: 0 8px 22px rgba(16,134,147,0.34);
}
.btn--primary:hover { background: #0c6f7a; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(22,179,187,0.40); }
.btn--ghost {
  background: transparent; color: var(--ink-900);
  border: 1.5px solid var(--border-strong);
}
.btn--ghost:hover { border-color: var(--blue-600); color: var(--blue-600); transform: translateY(-2px); }
.bg-navy .btn--ghost, .bg-navy-deep .btn--ghost { color: var(--on-dark); border-color: rgba(157,177,204,0.34); }
.bg-navy .btn--ghost:hover, .bg-navy-deep .btn--ghost:hover { border-color: var(--blue-400); color: #fff; }
.btn--light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 100;
  background: rgba(6, 43, 48, 0.0);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(6, 43, 48, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: rgba(99,210,220,0.16);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; position: relative;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 6px 16px rgba(22,179,187,0.4); flex: 0 0 auto;
  display: grid; place-items: center;
}
.brand__mark::before {
  content: ""; width: 16px; height: 16px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.92);
  border-right-color: transparent; border-bottom-color: transparent;
}
.brand__mark::after {
  content: ""; position: absolute; width: 7px; height: 7px; border-radius: 2px;
  background: #fff; right: 8px; bottom: 8px;
}
.brand__name { font-weight: 600; font-size: 1.32rem; letter-spacing: -0.02em; }
.brand__name b { color: var(--blue-400); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { color: var(--on-dark-muted); font-size: 0.95rem; font-weight: 400; transition: color .15s; }
.nav__links a:hover { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; color: #fff; border: 1px solid rgba(157,177,204,0.3); }
.nav__burger svg { width: 22px; height: 22px; }
.brand__logo { height: 34px; width: auto; display: block; }

/* VERIFY · DOCUMENT · DEFEND ribbon */
.vdd { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.vdd span {
  font-family: var(--mono); font-size: 0.86rem; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 500; color: var(--blue-400);
}
.vdd i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-400); opacity: 0.6; display: block; }

/* Powered by lockup */
.powered { display: flex; align-items: center; gap: 14px; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(99,210,220,0.18); }
.powered__label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-muted); }
.powered img { height: 26px; width: auto; opacity: 0.95; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(128px, 13vw, 178px); padding-bottom: clamp(64px, 8vw, 120px); scroll-margin-top: 0; }
.hero__glow {
  position: absolute; z-index: 0; width: 760px; height: 760px; border-radius: 50%;
  right: -180px; top: -260px;
  background: radial-gradient(circle, rgba(22,179,187,0.40), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero__copy { max-width: 620px; }
.hero h1 { margin-top: 22px; font-weight: 700; font-size: clamp(2.9rem, 5.7vw, 4.9rem); }
.hero .lead { margin-top: 26px; color: var(--on-dark-muted); }
.hero .btn-row { margin-top: 38px; }
.hero__trust { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; }
.hero__trust span {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-muted); display: inline-flex; align-items: center; gap: 9px;
}
.hero__trust span::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); }

/* ---------- Generic placeholder media ---------- */
.ph {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(16,179,187,0.12) 0 10px, rgba(16,134,147,0.04) 10px 20px),
    var(--gray-50);
  border: 1px solid var(--border);
  display: grid; place-items: center; min-height: 120px;
}
.ph__tag {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-400); background: rgba(255,255,255,0.78); padding: 6px 11px; border-radius: 6px;
  border: 1px solid var(--border);
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg, rgba(99,210,220,0.18) 0 10px, rgba(99,210,220,0.06) 10px 20px),
    var(--navy-700);
  border-color: rgba(99,210,220,0.22);
}
.ph--dark .ph__tag { background: rgba(8,23,41,0.7); color: var(--on-dark-muted); border-color: rgba(99,210,220,0.26); }

/* ---------- Cards (generic) ---------- */
.card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue-600); margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--ink-500); font-size: 0.98rem; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- Problem cards (compact) ---------- */
.prob {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.prob:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.prob__num { font-family: var(--mono); font-size: 0.72rem; color: var(--blue-600); letter-spacing: 0.1em; padding-top: 3px; }
.prob h4 { font-size: 1.02rem; margin-bottom: 5px; }
.prob p { color: var(--ink-500); font-size: 0.9rem; line-height: 1.5; }

/* ---------- Solution feature cards ---------- */
.feat {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feat::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400)); transition: width .3s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat:hover::after { width: 100%; }
.feat__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.feat__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-600); display: grid; place-items: center; flex: 0 0 auto; }
.feat__ic svg { width: 23px; height: 23px; }
.feat__tag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-400); }
.feat h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feat p { color: var(--ink-500); font-size: 0.95rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 16px; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--border); border-radius: 2px;
}
.step.is-on::before { background: linear-gradient(90deg, var(--blue-500), var(--blue-300)); }
.step__num {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.18em; color: var(--blue-400); margin: 22px 0 14px;
}
.step__ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: rgba(99,210,220,0.14); color: var(--blue-300); margin-bottom: 20px; }
.step__ic svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--on-dark-muted); font-size: 0.95rem; }

/* ---------- Audience cards ---------- */
.aud {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.aud:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.aud__media { height: 132px; border-radius: var(--r-sm); margin-bottom: 22px; }
.aud__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--navy-800); color: var(--blue-400); display: grid; place-items: center; margin-bottom: 18px; }
.aud__ic svg { width: 25px; height: 25px; }
.aud h3 { font-size: 1.18rem; margin-bottom: 10px; }
.aud p { color: var(--ink-500); font-size: 0.95rem; }

/* ---------- Four pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; position: relative; z-index: 2; }
.pillar {
  background: linear-gradient(180deg, rgba(26,58,99,0.55), rgba(17,41,75,0.4));
  border: 1px solid rgba(99,210,220,0.24); border-radius: var(--r-lg);
  padding: 38px; position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s, background .2s;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--blue-400); }
.pillar__num { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.2em; color: var(--blue-400); }
.pillar__ic { width: 58px; height: 58px; border-radius: 15px; background: rgba(22,179,187,0.20); color: var(--blue-300); display: grid; place-items: center; margin: 20px 0 22px; }
.pillar__ic svg { width: 29px; height: 29px; }
.pillar h3 { font-size: 1.42rem; margin-bottom: 12px; color: #fff; }
.pillar p { color: var(--on-dark-muted); font-size: 1rem; }

/* ---------- Dashboard mockup (shared) ---------- */
.dash {
  background: #fff; border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.dash__bar { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--border); background: var(--offwhite); }
.dash__dots { display: flex; gap: 7px; }
.dash__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); display: block; }
.dash__url { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-400); background: #fff; border: 1px solid var(--border); border-radius: 7px; padding: 6px 14px; flex: 1; max-width: 320px; }
.dash__chip { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pos); background: var(--pos-soft); padding: 5px 10px; border-radius: 6px; margin-left: auto; }

/* hero compact dashboard */
.minidash { padding: 22px; display: grid; gap: 16px; }
.minidash__row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 16px; }
.tile { border: 1px solid var(--border); border-radius: var(--r-sm); padding: 18px; background: #fff; }
.tile__label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }

/* score gauge */
.score { display: flex; align-items: center; gap: 18px; }
.gauge {
  --val: 87; --size: 92px;
  width: var(--size); height: var(--size); border-radius: 50%; flex: 0 0 auto;
  background: conic-gradient(var(--blue-600) calc(var(--val) * 1%), var(--gray-100) 0);
  display: grid; place-items: center; position: relative;
}
.gauge::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.gauge b { position: relative; z-index: 1; font-size: 1.5rem; font-weight: 600; color: var(--navy-800); }
.gauge--lg { --size: 128px; }
.gauge--lg b { font-size: 2.1rem; }
.score__meta b { font-size: 0.98rem; display: block; }
.score__meta span { color: var(--ink-500); font-size: 0.85rem; }

/* progress lines */
.bars { display: grid; gap: 13px; }
.bar__top { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 6px; color: var(--ink-700); }
.bar__track { height: 7px; border-radius: 4px; background: var(--gray-100); overflow: hidden; }
.bar__fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); }

/* media strip */
.mediastrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.mediastrip .ph { min-height: 64px; border-radius: 9px; }
.mediastrip .ph__tag { font-size: 0.56rem; padding: 3px 7px; }

/* real digital-twin media */
.twinmedia { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: var(--navy-900); }
.twinmedia img { width: 100%; height: 150px; object-fit: cover; object-position: center 40%; display: block; }
.twinmedia__tag {
  position: absolute; left: 10px; bottom: 10px;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-300); background: rgba(6,43,48,0.78); padding: 5px 9px; border-radius: 6px;
  border: 1px solid rgba(99,210,220,0.28);
}

/* timeline */
.tl { display: grid; gap: 0; }
.tl__item { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding-bottom: 18px; position: relative; }
.tl__item:not(:last-child)::before { content:""; position: absolute; left: 6px; top: 16px; bottom: -2px; width: 2px; background: var(--border); }
.tl__dot { width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--blue-600); background: #fff; margin-top: 3px; z-index: 1; }
.tl__item--done .tl__dot { background: var(--blue-600); }
.tl__body b { font-size: 0.92rem; display: block; }
.tl__body span { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-400); letter-spacing: 0.08em; }

/* doc / action lists */
.list { display: grid; gap: 10px; }
.list__row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: #fff; }
.list__row .lic { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; flex: 0 0 auto; background: var(--blue-soft); color: var(--blue-600); }
.list__row .lic svg { width: 17px; height: 17px; }
.list__row b { font-size: 0.88rem; font-weight: 500; }
.list__row span { font-size: 0.76rem; color: var(--ink-400); }
.pill { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; margin-left: auto; white-space: nowrap; }
.pill--ok { background: var(--pos-soft); color: var(--pos); }
.pill--warn { background: var(--warn-soft); color: var(--warn); }
.pill--info { background: var(--blue-soft); color: var(--blue-600); }

/* AI assistant block */
.ai { background: var(--navy-800); border-radius: var(--r-md); padding: 20px; color: var(--on-dark); }
.ai__head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.ai__avatar { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); display: grid; place-items: center; }
.ai__avatar svg { width: 18px; height: 18px; color: #fff; }
.ai__head b { font-size: 0.9rem; }
.ai__head span { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-300); display: block; }
.ai__msg { background: rgba(255,255,255,0.06); border: 1px solid rgba(99,210,220,0.20); border-radius: 12px; padding: 14px 16px; font-size: 0.88rem; color: var(--on-dark-muted); line-height: 1.55; }
.ai__msg b { color: #fff; font-weight: 500; }
.ai__input { margin-top: 12px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(99,210,220,0.20); border-radius: 999px; padding: 10px 10px 10px 16px; }
.ai__input span { font-size: 0.82rem; color: var(--on-dark-muted); flex: 1; }
.ai__send { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-600); display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.ai__send svg { width: 16px; height: 16px; }

/* big platform dashboard grid */
.platform { display: grid; grid-template-columns: 220px 1fr; min-height: 560px; }
.platform__side { background: var(--navy-900); padding: 22px 16px; display: grid; gap: 6px; align-content: start; }
.platform__brand { display: flex; align-items: center; gap: 9px; color: #fff; padding: 4px 8px 18px; }
.platform__brand b { font-size: 1.05rem; }
.platform__brand b i { color: var(--blue-400); font-style: normal; }
.navitem { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; color: var(--on-dark-muted); font-size: 0.84rem; }
.navitem svg { width: 18px; height: 18px; }
.navitem.is-active { background: rgba(22,179,187,0.22); color: #fff; }
.platform__main { padding: 26px; background: var(--offwhite); display: grid; gap: 18px; align-content: start; }
.platform__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.platform__head h4 { font-size: 1.3rem; color: var(--ink-900); }
.platform__head p { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-400); letter-spacing: 0.06em; margin-top: 4px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.kpi { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.kpi b { font-size: 1.5rem; font-weight: 600; color: var(--navy-800); display: block; }
.kpi span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); }
.kpi i { font-style: normal; font-size: 0.72rem; font-weight: 500; }
.kpi i.up { color: var(--pos); } .kpi i.dn { color: var(--warn); }
.panelgrid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.panel { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.panel__h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.panel__h b { font-size: 0.92rem; }
.panel__h span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-600); }

/* ---------- Workforce / Why now split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.stat-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.stat { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 18px 22px; flex: 1; min-width: 150px; box-shadow: var(--shadow-sm); }
.bg-navy .stat, .bg-navy-deep .stat { background: rgba(255,255,255,0.04); border-color: rgba(99,210,220,0.22); }
.stat b { font-size: 1.9rem; font-weight: 600; display: block; color: var(--navy-800); letter-spacing: -0.02em; }
.bg-navy .stat b, .bg-navy-deep .stat b { color: #fff; }
.stat span { font-size: 0.84rem; color: var(--ink-500); }
.bg-navy .stat span, .bg-navy-deep .stat span { color: var(--on-dark-muted); }

.check-list { display: grid; gap: 16px; margin-top: 28px; }
.check { display: flex; gap: 14px; align-items: flex-start; }
.check__ic { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-soft); color: var(--blue-600); display: grid; place-items: center; flex: 0 0 auto; margin-top: 2px; }
.check__ic svg { width: 15px; height: 15px; }
.bg-navy .check__ic { background: rgba(22,179,187,0.24); color: var(--blue-300); }
.check b { font-weight: 500; }
.check p { color: var(--ink-500); font-size: 0.94rem; margin-top: 2px; }
.bg-navy .check p { color: var(--on-dark-muted); }

/* ---------- Final CTA ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(48px, 6vw, 84px); text-align: center; background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); color: var(--on-dark); }
.cta-band .display { color: #fff; }
.cta-band .lead { margin: 22px auto 0; color: var(--on-dark-muted); }
.cta-band .btn-row { justify-content: center; margin-top: 38px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--on-dark-muted); padding-block: 64px 32px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(99,210,220,0.16); }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { max-width: 36ch; font-size: 0.92rem; }
.footer h5 { color: #fff; font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: 16px; font-weight: 500; }
.footer__col a { display: block; font-size: 0.9rem; padding: 6px 0; color: var(--on-dark-muted); transition: color .15s; }
.footer__col a:hover { color: var(--blue-300); }
.footer__bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-size: 0.82rem; }
.footer__bot .mono { font-family: var(--mono); letter-spacing: 0.04em; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
/* hard fallback — bypasses transition so content can never stay invisible */
.reveal.shown { opacity: 1 !important; transform: none !important; transition: none !important; }
html.no-reveal .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ===================== GRAPHIC FLARE ===================== */

/* Oversized editorial section numerals */
.section[data-no]::before {
  content: attr(data-no);
  position: absolute; top: clamp(16px, 3vw, 40px); right: clamp(14px, 4vw, 60px);
  font-family: var(--mono); font-weight: 500; line-height: 0.78; letter-spacing: -0.04em;
  font-size: clamp(4.5rem, 13vw, 12rem);
  color: transparent; -webkit-text-stroke: 1.5px var(--ink-900); text-stroke: 1.5px var(--ink-900);
  opacity: 0.05; z-index: 0; pointer-events: none;
}
.section.bg-navy[data-no]::before, .section.bg-navy-deep[data-no]::before { -webkit-text-stroke-color: var(--blue-300); text-stroke-color: var(--blue-300); opacity: 0.10; }
.section > .container { position: relative; z-index: 2; }
@media (max-width: 640px){ .section[data-no]::before { font-size: 4.6rem; opacity: 0.04; } }

/* Reticle / scan-frame corner brackets on media */
.framed { position: relative; }
.framed::before, .framed::after {
  content: ""; position: absolute; width: 20px; height: 20px; z-index: 4; pointer-events: none;
  border: 2px solid var(--blue-500);
}
.framed::before { top: 9px; left: 9px; border-right: 0; border-bottom: 0; }
.framed::after { bottom: 9px; right: 9px; border-left: 0; border-top: 0; }

/* Point-cloud dot field */
.dotfield {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(99,210,220,0.6) 1.3px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(70% 70% at 82% 26%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(70% 70% at 82% 26%, #000, transparent 72%);
  opacity: 0.55;
}

/* Hero coordinate readout */
.coords { display:inline-flex; align-items:center; gap:10px; font-family: var(--mono); font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color: var(--on-dark-muted); margin-bottom: 26px; }
.coords::before { content:""; width:7px; height:7px; border:1.5px solid var(--blue-400); border-radius:50%; flex:0 0 auto; }
.coords b { color: var(--blue-300); font-weight: 500; }

/* scan sweep over the hero dashboard — removed per brand direction */
.scanframe { position: relative; }
.scanframe::after { content: none; }

/* Keyword marquee */
.marquee { background: var(--navy-800); color: var(--on-dark); border-top: 1px solid rgba(99,210,220,0.18); border-bottom: 1px solid rgba(99,210,220,0.18); overflow: hidden; position: relative; }
.marquee::before, .marquee::after { content:""; position:absolute; top:0; bottom:0; width: 90px; z-index:2; pointer-events:none; }
.marquee::before { left:0; background: linear-gradient(90deg, var(--navy-800), transparent); }
.marquee::after { right:0; background: linear-gradient(270deg, var(--navy-800), transparent); }
.marquee__track { display: flex; width: max-content; animation: scrollx 34s linear infinite; }
.marquee__track > span { display: inline-flex; align-items: center; padding: 17px 0; font-family: var(--mono); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark); white-space: nowrap; }
.marquee__track i { color: var(--blue-400); font-style: normal; padding: 0 26px; font-size: 0.8rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* Big editorial step numbers */
.step__big { font-family: var(--mono); font-weight: 500; font-size: clamp(2.2rem, 3vw, 2.8rem); color: transparent; -webkit-text-stroke: 1.5px var(--blue-400); text-stroke: 1.5px var(--blue-400); line-height: 1; margin-bottom: 6px; }

/* Bolder problem index numbers */
.prob__num { font-size: 1.05rem !important; font-weight: 500; }
.prob__num b { display:block; font-size: 0.6rem; color: var(--ink-400); letter-spacing: 0.18em; margin-top: 2px; }

/* Section kicker rule under heads on dark */
.accent-rule { width: 60px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--blue-500), var(--blue-300)); margin: 0 0 26px; }
.section-head--center .accent-rule { margin-inline: auto; }

/* ===================== REFERENCE-MATCH COMPONENTS ===================== */

/* Brand lockup with tagline */
.brand--lockup { flex-direction: column; align-items: flex-start; gap: 4px; }
.brand--lockup .brand__logo { height: 30px; }
.brand__tag { font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--blue-300); padding-left: 2px; }

/* Hero figure + capability rail */
.hero__stage { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.hero-figure { position: relative; }
.hero-figure img { width: 100%; height: auto; display: block; }
.hero-figure__tag {
  position: absolute; left: 4px; bottom: 6px; z-index: 3;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-300); background: rgba(8,24,46,0.66); padding: 5px 10px; border-radius: 6px; border: 1px solid rgba(99,210,220,0.28);
}
.cap-rail { display: grid; gap: 16px; align-content: center; }
.cap { display: flex; align-items: center; gap: 12px; }
.cap__ic { width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid rgba(99,210,220,0.4); background: rgba(22,179,187,0.10); color: var(--blue-300); display: grid; place-items: center; flex: 0 0 auto; }
.cap__ic svg { width: 22px; height: 22px; }
.cap span { font-size: 0.92rem; font-weight: 500; color: var(--on-dark); line-height: 1.25; }

/* Problem — centered icon cards */
.pcard { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md); padding: 32px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.pcard__ic { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; border: 1.5px solid var(--border-strong); display: grid; place-items: center; color: var(--blue-600); }
.pcard__ic svg { width: 28px; height: 28px; }
.pcard h4 { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue-600); margin-bottom: 10px; }
.pcard p { color: var(--ink-500); font-size: 0.9rem; line-height: 1.5; }

/* Pillars — light, vertical dividers */
.plite { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.plite__col { padding: 12px clamp(18px, 2.2vw, 34px); text-align: center; position: relative; }
.plite__col:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 8%; bottom: 8%; width: 1px; background: var(--border); }
.plite__ic { width: 64px; height: 64px; margin: 0 auto 20px; display: grid; place-items: center; color: var(--blue-600); }
.plite__ic svg { width: 38px; height: 38px; }
.plite h3 { font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.03em; font-weight: 600; margin-bottom: 12px; color: var(--ink-900); line-height: 1.3; }
.plite p { color: var(--ink-500); font-size: 0.9rem; line-height: 1.55; }

/* Workforce flow */
.flow { display: flex; align-items: center; gap: 6px; margin-top: 30px; flex-wrap: wrap; }
.flow__step { display: grid; justify-items: center; gap: 10px; text-align: center; flex: 1; min-width: 86px; }
.flow__ic { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--blue-400); background: var(--blue-soft); color: var(--blue-600); display: grid; place-items: center; }
.flow__ic svg { width: 26px; height: 26px; }
.flow__step span { font-size: 0.82rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-700); }
.flow__arrow { color: var(--blue-400); flex: 0 0 auto; }
.flow__arrow svg { width: 22px; height: 22px; }

/* Why Now drivers */
.drivers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
.driver { display: grid; justify-items: start; gap: 12px; }
.driver__ic { width: 52px; height: 52px; border-radius: 13px; border: 1.5px solid rgba(99,210,220,0.34); background: rgba(22,179,187,0.10); color: var(--blue-300); display: grid; place-items: center; }
.driver__ic svg { width: 26px; height: 26px; }
.driver b { font-weight: 500; font-size: 0.98rem; color: #fff; line-height: 1.3; }

/* CTA split (teal band) */
.cta-split { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 5vw, 70px); background: linear-gradient(120deg, var(--blue-600), #0c6f7a); color: #fff; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.cta-split .h2 { color: #fff; }
.cta-split p { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.6; }
.cta-split .btn-row { margin-top: 24px; }
.cta-split .btn--light { color: var(--navy-800); }
.cta-split .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-split .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* Footer contact */
.footer__contact { display: grid; gap: 10px; }
.footer__contact a { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.footer__contact svg { width: 16px; height: 16px; color: var(--blue-300); flex: 0 0 auto; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(99,210,220,0.24); display: grid; place-items: center; color: var(--on-dark-muted); }
.socials a:hover { color: #fff; border-color: var(--blue-400); }
.socials svg { width: 17px; height: 17px; }

@media (max-width: 920px) {
  .hero__stage { grid-template-columns: 1fr; }
  .cap-rail { grid-template-columns: repeat(2, 1fr); }
  .plite { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .plite__col:nth-child(2)::after { display: none; }
  .cta-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cap-rail { grid-template-columns: 1fr 1fr; }
  .plite { grid-template-columns: 1fr; }
  .plite__col::after { display: none !important; }
  .plite__col:not(:last-child) { border-bottom: 1px solid var(--border); padding-bottom: 28px; }
  .drivers { grid-template-columns: 1fr; }
  .flow { gap: 4px; }
  .flow__step { min-width: 64px; }
  .flow__step span { font-size: 0.7rem; }
}

/* ===================== TECH-FORWARD LAYER ===================== */

/* Hero LiDAR point-cloud canvas */
.ptcloud { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.9; }

/* Hero render scanning HUD */
.figure-clip { position: relative; overflow: hidden; border-radius: 4px; }
.figure-clip::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 64px; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(63,216,233,0.45));
  border-bottom: 2px solid rgba(63,216,233,0.9);
  mix-blend-mode: screen; animation: heroSweep 5.5s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes heroSweep { 0%{transform:translateY(-64px);opacity:0} 10%{opacity:1} 86%{opacity:1} 100%{transform:translateY(580px);opacity:0} }
.figure-hud { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.figure-hud .corner { position: absolute; width: 20px; height: 20px; border: 2px solid var(--blue-400); opacity: 0.85; }
.figure-hud .corner.tl { top: 4px; left: 4px; border-right: 0; border-bottom: 0; }
.figure-hud .corner.tr { top: 4px; right: 4px; border-left: 0; border-bottom: 0; }
.figure-hud .corner.bl { bottom: 4px; left: 4px; border-right: 0; border-top: 0; }
.figure-hud .corner.br { bottom: 4px; right: 4px; border-left: 0; border-top: 0; }
.hud-pill { position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-300); background: rgba(8,24,46,0.62); border: 1px solid rgba(99,210,220,0.32); padding: 5px 9px; border-radius: 6px; }
.hud-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #3ce0a6; box-shadow: 0 0 8px #3ce0a6; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hud-read { position: absolute; bottom: 10px; right: 10px; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.12em; color: var(--blue-300); background: rgba(8,24,46,0.62); border: 1px solid rgba(99,210,220,0.30); padding: 5px 9px; border-radius: 6px; }

/* Scanner-style section progress rail */
.scan-hud { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; gap: 13px; align-items: flex-end; }
.scan-hud a { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; }
.scan-hud .lbl { font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark); background: rgba(8,24,46,0.82); padding: 4px 8px; border-radius: 5px; opacity: 0; transform: translateX(6px); transition: opacity .2s, transform .2s; white-space: nowrap; }
.scan-hud a:hover .lbl { opacity: 1; transform: none; }
.scan-hud .tick { width: 22px; height: 2px; border-radius: 2px; background: rgba(120,150,175,0.55); transition: width .25s, background .25s; }
.scan-hud a.active .tick { width: 34px; background: var(--blue-500); box-shadow: 0 0 10px rgba(22,179,187,0.7); }
@media (max-width: 1180px) { .scan-hud { display: none; } }

/* Button sheen */
.btn--primary, .btn--light { position: relative; overflow: hidden; }
.btn--primary::after, .btn--light::after { content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.38), transparent); transform: skewX(-18deg); pointer-events: none; }
.btn--primary:hover::after, .btn--light:hover::after { animation: sheen .7s ease; }
@keyframes sheen { to { left: 140%; } }

/* Animated gauge ring */
.gauge.animate-ring { background: conic-gradient(var(--blue-600) calc(var(--val) * 1%), var(--gray-100) 0); transition: none; }

@media (prefers-reduced-motion: reduce) {
  .figure-clip::after, .hud-pill .dot { animation: none; }
  .ptcloud { display: none; }
}

/* ===================== FULL-BLEED HERO ===================== */
.hero--bleed {
  min-height: min(900px, 94vh);
  display: flex; flex-direction: column; justify-content: center;
  padding-top: clamp(116px, 14vh, 178px); padding-bottom: 0;
  background: #061426 url("img/hero-bg.jpg") center right / cover no-repeat;
  overflow: hidden;
}
.hero--bleed::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(6,18,34,0.94) 0%, rgba(6,18,34,0.62) 40%, rgba(6,18,34,0.14) 72%, rgba(6,18,34,0) 100%);
}
.hero--bleed .hero__bleed-inner { position: relative; z-index: 3; width: 100%; }
.hero--bleed .hero__copy { max-width: 760px; }
.hero--bleed .coords { margin-bottom: 22px; }
.hero--bleed h1 { margin-top: 14px; font-size: clamp(2.7rem, 6vw, 5.1rem); line-height: 1.0; font-weight: 700; }
.hero--bleed .vdd { margin-top: 24px; }
.hero--bleed .lead { max-width: 540px; }
.hero--bleed .btn-row { margin-top: 34px; }

/* scanning sweep removed per brand direction */
.hero__sweep { display: none !important; }

.hero__livepill { top: clamp(98px, 13vh, 156px); left: auto; right: 8%; z-index: 4; }
.hero__liveread { bottom: 130px; right: 8%; z-index: 4; }

.hero__caps { position: relative; z-index: 3; margin-top: clamp(26px, 5vh, 56px); border-top: 1px solid rgba(99,210,220,0.16); background: rgba(6,18,34,0.42); backdrop-filter: blur(6px); }
.hero__caps-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; padding: 16px 0; }
.hero__caps .cap { justify-content: flex-start; }
.hero__caps .cap span { white-space: nowrap; font-size: 0.88rem; }
.hero__caps .cap__ic { width: 40px; height: 40px; }

@media (max-width: 980px) {
  .hero--bleed { min-height: auto; background-position: 76% center; }
  .hero--bleed h1 { font-size: clamp(2.4rem, 8.5vw, 3.5rem); }
  .hero__livepill, .hero__liveread { display: none; }
  .hero__caps-inner { grid-template-columns: repeat(2, 1fr); gap: 14px 12px; }
}
@media (max-width: 560px) {
  .hero--bleed { background: #061426 url("img/hero-bg.jpg") 82% center / cover no-repeat; }
  .hero--bleed::before { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(6,20,38,0.4), rgba(6,20,38,0.86)); }
  .hero__caps-inner { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .platform { grid-template-columns: 1fr; }
  .platform__side { display: none; }
}
@media (max-width: 920px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: 2; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .panelgrid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .minidash__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__trust { gap: 10px 18px; }
  .cta-band { border-radius: var(--r-lg); }
}

/* ---------- Mobile frame page ---------- */
body.frame-host { background: #07343a; display: grid; place-items: center; min-height: 100vh; padding: 30px 12px; }
.phone { width: 390px; max-width: 100%; height: 844px; background: #000; border-radius: 52px; padding: 13px; box-shadow: 0 40px 90px rgba(0,0,0,0.5), inset 0 0 0 2px #14444c; position: relative; }
.phone__screen { width: 100%; height: 100%; border-radius: 40px; overflow: hidden; background: #fff; position: relative; }
.phone__notch { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 130px; height: 30px; background: #000; border-radius: 0 0 18px 18px; z-index: 5; }
.phone iframe { width: 100%; height: 100%; border: 0; }
