:root {
  --void: #07080c;
  --ink: #10131b;
  --ink-soft: #161b25;
  --panel: rgba(16, 19, 27, 0.82);
  --panel-strong: rgba(19, 24, 34, 0.96);
  --panel-border: rgba(255, 255, 255, 0.08);
  --line: rgba(212, 168, 67, 0.16);
  --gold: #d4a843;
  --gold-bright: #f1ca6d;
  --gold-soft: rgba(212, 168, 67, 0.12);
  --signal: #6fd5ff;
  --signal-soft: rgba(111, 213, 255, 0.18);
  --success: #59d48e;
  --danger: #ff6f6f;
  --white: #f5f2eb;
  --muted: #b8bcc9;
  --muted-strong: #d8dbe3;
  --muted-dim: #7d8496;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --content-width: 1220px;
  --nav-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% 10%, rgba(212, 168, 67, 0.11), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(111, 213, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #06070a 0%, #0b0e14 45%, #090c12 100%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 82%);
  opacity: 0.18;
  z-index: -1;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.site-shell {
  position: relative;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7, 8, 12, 0.7);
  backdrop-filter: blur(26px);
  border-bottom: 1px solid var(--line);
}

.site-nav-inner {
  max-width: calc(var(--content-width) + 64px);
  margin: 0 auto;
  min-height: var(--nav-height);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 1.25rem;
  vertical-align: -0.06em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.93rem;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.lang-link:hover,
.lang-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(212, 168, 67, 0.22);
  background: rgba(212, 168, 67, 0.06);
  border-radius: 2px;
  padding: 3px;
}

.lang-link {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
  padding: 7px 10px;
  border-radius: 2px;
  transition: all 180ms ease;
}

.lang-link.active,
body[data-locale="en"] .lang-link[lang="en"],
body[data-locale="sq"] .lang-link[lang="sq"] {
  color: var(--void);
  background: var(--gold);
}

.nav-contact,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 0;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.nav-contact,
.button-primary {
  color: var(--void);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-weight: 600;
  clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 10px 100%, 0% calc(100% - 10px));
  filter: drop-shadow(0 6px 18px rgba(212, 168, 67, 0.22));
}

.nav-contact:hover,
.nav-contact:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 24px rgba(212, 168, 67, 0.36));
}

.button-secondary {
  border: 1px solid rgba(212, 168, 67, 0.34);
  color: var(--gold-bright);
  background: rgba(212, 168, 67, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(212, 168, 67, 0.55);
  background: rgba(212, 168, 67, 0.09);
}

.section {
  position: relative;
  padding: 88px 32px;
}

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  max-width: 12ch;
}

h3,
h4 {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-intro,
.hero-subline,
.story-step p,
.proof-lead,
.pipeline-stage p,
.lens-panel p,
.region-copy p,
.tile-text,
.credibility-card p,
.contact-text,
.footer-meta {
  color: var(--muted);
  line-height: 1.65;
}

.section-top {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.section-top p,
.hero-subline {
  max-width: 40rem;
  font-size: 1.02rem;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
}

.hero-grid,
.hero-vignette,
.hero-glow {
  position: absolute;
}

.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.05) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  opacity: 0.24;
}

.hero-glow {
  inset: 14% 18% auto;
  height: 62vh;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, rgba(111, 213, 255, 0.06) 24%, transparent 72%);
  filter: blur(8px);
}

.hero-vignette {
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, transparent 0%, transparent 34%, rgba(7, 8, 12, 0.35) 64%, rgba(7, 8, 12, 0.86) 100%);
}

/* ── Hero ASCII Video ────────────────────────────────────── */
.hero-ascii-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center center;
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-ascii-video {
    display: none;
  }
}

/* ── Hero Mosaic ─────────────────────────────────────────── */
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  overflow: hidden;
  pointer-events: none;
  background: #07080c;
  border: 1px solid rgba(212, 168, 67, 0.10);
  z-index: 0;
}

.mosaic-cell {
  position: relative;
  overflow: hidden;
  animation: mosaic-breathe 8s ease-in-out infinite;
  animation-delay: calc(var(--cell-index, 0) * 0.7s);
}

.mosaic-cell--wide {
  grid-column: span 2;
}

.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  display: block;
}

.mosaic-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 12, 0.45);
  pointer-events: none;
}

@keyframes mosaic-breathe {
  0%, 100% { transform: scale(1.0); }
  50%       { transform: scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  justify-items: start;
}

.hero-tagline {
  margin-top: -12px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 24px rgba(212, 168, 67, 0.18);
}

.hero-subline {
  max-width: 32rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 24, 0.74);
  color: var(--muted-strong);
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

.metric-chip strong {
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.7), transparent);
  animation: scrollCue 2.1s ease-in-out infinite;
}

.story-section {
  padding-top: 60px;
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.story-visual {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  min-height: 560px;
  border-radius: 0;
  background:
    radial-gradient(circle at 65% 30%, rgba(212, 168, 67, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.92), rgba(10, 12, 18, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
  opacity: 0.28;
}

.story-stage {
  position: absolute;
  inset: 0;
  padding: 38px;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 380ms ease, transform 380ms ease;
}

.story-shell[data-scene="blind"] .stage-blind,
.story-shell[data-scene="capture"] .stage-capture,
.story-shell[data-scene="decision"] .stage-decision {
  opacity: 1;
  transform: scale(1);
}

.stage-kicker {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blind-city,
.capture-grid,
.decision-board {
  position: absolute;
  inset: 86px 36px 36px;
}

.blind-city {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 16px;
}

.blind-bar {
  position: relative;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: var(--bar-height);
  overflow: hidden;
}

.blind-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}

.blind-bar.dim {
  opacity: 0.42;
  filter: blur(0.2px);
}

.blind-scan,
.blind-price-tag {
  position: absolute;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted-dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blind-scan {
  top: 134px;
  left: 54px;
  padding: 10px 14px;
}

.blind-price-tag {
  right: 42px;
  bottom: 64px;
  padding: 12px 16px;
  color: var(--danger);
}

.blind-path {
  position: absolute;
  inset: 116px 52px 92px;
}

.blind-path svg,
.region-map svg {
  width: 100%;
  height: 100%;
}

.capture-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(9, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.capture-grid::before,
.capture-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.capture-grid::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: calc((100% - 132px) / 11) calc((100% - 96px) / 8);
  opacity: 0.38;
}

.capture-grid::after {
  background:
    radial-gradient(circle at 18% 26%, rgba(111, 213, 255, 0.18), transparent 16%),
    radial-gradient(circle at 42% 44%, rgba(212, 168, 67, 0.16), transparent 18%),
    radial-gradient(circle at 74% 66%, rgba(111, 213, 255, 0.14), transparent 18%);
  filter: blur(4px);
}

.capture-cell {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.capture-cell.signal {
  background: linear-gradient(135deg, rgba(111, 213, 255, 0.32), rgba(212, 168, 67, 0.18));
  border-color: rgba(111, 213, 255, 0.35);
  box-shadow: 0 0 24px rgba(111, 213, 255, 0.18);
}

.capture-node,
.capture-beam {
  position: absolute;
  border-radius: 50%;
}

.capture-node {
  width: 20px;
  height: 20px;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(241, 202, 109, 0.6);
}

.capture-node.node-a {
  top: 160px;
  left: 108px;
}

.capture-node.node-b {
  top: 232px;
  left: 258px;
}

.capture-node.node-c {
  top: 306px;
  right: 112px;
}

.capture-beam {
  inset: auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(111, 213, 255, 0.3);
  animation: ringPulse 2.8s ease-out infinite;
}

.capture-beam.beam-a {
  top: 62px;
  left: 16px;
}

.capture-beam.beam-b {
  top: 134px;
  left: 166px;
  animation-delay: 0.7s;
}

.capture-beam.beam-c {
  top: 208px;
  right: 20px;
  animation-delay: 1.2s;
}

.capture-strip {
  position: absolute;
  right: 32px;
  top: 104px;
  display: grid;
  gap: 10px;
  width: 180px;
}

.capture-stat {
  padding: 14px 16px;
  border-radius: 0;
  background: rgba(16, 19, 27, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.capture-stat strong,
.decision-metric strong,
.market-tile strong,
.credibility-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capture-stat span,
.decision-metric span,
.market-tile span,
.credibility-card span {
  color: var(--muted);
  line-height: 1.45;
}

.decision-board {
  display: grid;
  gap: 24px;
}

.decision-map {
  position: relative;
  height: 310px;
  border-radius: 0;
  background:
    radial-gradient(circle at 30% 35%, rgba(111, 213, 255, 0.16), transparent 24%),
    radial-gradient(circle at 75% 55%, rgba(212, 168, 67, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.decision-zone {
  position: absolute;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.decision-zone.zone-expand {
  inset: 32px auto auto 42px;
  width: 220px;
  height: 138px;
  background: rgba(89, 212, 142, 0.24);
}

.decision-zone.zone-monitor {
  inset: 122px auto auto 212px;
  width: 240px;
  height: 132px;
  background: rgba(241, 202, 109, 0.22);
}

.decision-zone.zone-investigate {
  inset: 72px 38px auto auto;
  width: 168px;
  height: 112px;
  background: rgba(255, 111, 111, 0.21);
}

.decision-badge {
  position: absolute;
  padding: 10px 14px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: rgba(7, 8, 12, 0.74);
  box-shadow: var(--shadow);
}

.decision-badge.expand {
  left: 76px;
  top: 76px;
  color: var(--success);
}

.decision-badge.monitor {
  left: 258px;
  top: 180px;
  color: var(--gold-bright);
}

.decision-badge.investigate {
  right: 52px;
  top: 104px;
  color: var(--danger);
}

.decision-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-metric {
  padding: 18px;
  border-radius: 0;
  background: rgba(15, 18, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.story-steps {
  display: grid;
  gap: 18px;
}

.story-step {
  padding: 26px 24px;
  border-radius: 0;
  background: rgba(14, 17, 24, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
  cursor: pointer;
}

.story-step.is-active {
  border-color: rgba(212, 168, 67, 0.36);
  background: rgba(18, 23, 32, 0.9);
  transform: translateY(-2px);
}

.story-step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.step-index {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-proof {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 2px;
  background: rgba(212, 168, 67, 0.08);
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 26px;
}

.proof-card,
.region-map-card,
.credibility-card,
.contact-card,
.lens-panel,
.pipeline-stage,
.market-tile {
  background: linear-gradient(180deg, rgba(18, 23, 32, 0.96), rgba(10, 12, 18, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-card {
  border-radius: 0;
  padding: 28px;
}

.proof-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.proof-card-label,
.pipeline-kicker,
.lens-panel-kicker,
.region-map-label,
.contact-kicker,
.footer-meta {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.proof-bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
  min-height: 280px;
}

.proof-bar-card {
  display: grid;
  gap: 14px;
}

.proof-chart {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 210px;
  padding: 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-fill {
  width: 100%;
  max-width: 120px;
  height: var(--fill-height);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(241, 202, 109, 0.92), rgba(212, 168, 67, 0.3));
  box-shadow: 0 18px 34px rgba(212, 168, 67, 0.18);
  transform-origin: bottom;
  transform: scaleY(0.08);
  transition: transform 760ms cubic-bezier(0.2, 0.7, 0.18, 1);
}

.proof-card.is-visible .proof-fill {
  transform: scaleY(1);
}

.proof-fill.dim {
  background: linear-gradient(180deg, rgba(255, 111, 111, 0.9), rgba(255, 111, 111, 0.22));
  box-shadow: 0 12px 26px rgba(255, 111, 111, 0.16);
}

.proof-card h3 {
  margin-bottom: 10px;
}

.proof-location {
  display: grid;
  gap: 6px;
}

.proof-name {
  font-weight: 600;
}

.proof-value {
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.proof-note {
  color: var(--muted-dim);
  font-size: 0.93rem;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-metric {
  padding: 22px;
  border-radius: 0;
  background: rgba(13, 16, 23, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-metric strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 0.95;
}

.proof-metric span {
  color: var(--muted);
}

/* ── Proof inline CTA ────────────────────────────────────── */
.proof-cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 32px;
  border-radius: 0;
  border: 1px solid rgba(212, 168, 67, 0.18);
  background: rgba(212, 168, 67, 0.04);
}

.proof-cta-inline p {
  margin: 0;
  color: var(--fg);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .proof-cta-inline {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
  }
}

.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.pipeline::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.5), transparent);
}

.pipeline-stage {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 0;
}

.pipeline-stage h3 {
  margin: 10px 0 10px;
}

.lens-block {
  display: grid;
  gap: 18px;
}

.lens-top {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.lens-copy {
  display: grid;
  gap: 8px;
}

.lens-copy p {
  max-width: 32rem;
}

.lens-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lens-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  transition: all 180ms ease;
}

.lens-button:hover,
.lens-button:focus-visible,
.lens-button[aria-selected="true"] {
  color: var(--white);
  border-color: rgba(212, 168, 67, 0.35);
  background: rgba(212, 168, 67, 0.08);
}

.lens-panels {
  position: relative;
}

.lens-panel {
  display: none;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  padding: 24px;
  border-radius: 0;
}

.lens-panel.is-active {
  display: grid;
}

.lens-panel-visual {
  min-height: 260px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.lens-bars,
.lens-forecast,
.lens-zones {
  position: absolute;
  inset: 24px;
}

.lens-bars {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.lens-bars span,
.forecast-line span,
.zone-grid span {
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.lens-bars span:nth-child(2),
.lens-bars span:nth-child(6),
.lens-bars span:nth-child(7) {
  background: linear-gradient(180deg, rgba(255, 111, 111, 0.85), rgba(255, 111, 111, 0.22));
}

.lens-bars span:nth-child(1) {
  height: 38%;
}

.lens-bars span:nth-child(2) {
  height: 84%;
}

.lens-bars span:nth-child(3) {
  height: 42%;
}

.lens-bars span:nth-child(4) {
  height: 36%;
}

.lens-bars span:nth-child(5) {
  height: 51%;
}

.lens-bars span:nth-child(6) {
  height: 88%;
}

.lens-bars span:nth-child(7) {
  height: 72%;
}

.lens-bars span:nth-child(8) {
  height: 34%;
}

.lens-highlight {
  position: absolute;
  padding: 10px 12px;
  right: 24px;
  top: 22px;
  border-radius: 2px;
  background: rgba(255, 111, 111, 0.12);
  border: 1px solid rgba(255, 111, 111, 0.32);
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lens-forecast {
  display: grid;
  align-items: end;
}

.forecast-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.44;
}

.forecast-line {
  position: absolute;
  inset: 34px 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.forecast-line span {
  width: 8%;
  background: linear-gradient(180deg, rgba(111, 213, 255, 0.92), rgba(111, 213, 255, 0.18));
}

.forecast-line span:nth-child(1) {
  height: 26%;
}

.forecast-line span:nth-child(2) {
  height: 34%;
}

.forecast-line span:nth-child(3) {
  height: 39%;
}

.forecast-line span:nth-child(4) {
  height: 46%;
}

.forecast-line span:nth-child(5) {
  height: 52%;
}

.forecast-line span:nth-child(6) {
  height: 59%;
}

.forecast-line span:nth-child(7) {
  height: 66%;
}

.forecast-line span:nth-child(8) {
  height: 74%;
}

.forecast-line span:nth-child(9) {
  height: 82%;
}

.forecast-tag {
  position: absolute;
  left: 28px;
  top: 22px;
  padding: 10px 12px;
  border-radius: 2px;
  background: rgba(111, 213, 255, 0.1);
  border: 1px solid rgba(111, 213, 255, 0.26);
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lens-zones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.zone-grid span:nth-child(1),
.zone-grid span:nth-child(4),
.zone-grid span:nth-child(10) {
  background: rgba(89, 212, 142, 0.24);
}

.zone-grid span:nth-child(3),
.zone-grid span:nth-child(6),
.zone-grid span:nth-child(8),
.zone-grid span:nth-child(11) {
  background: rgba(212, 168, 67, 0.22);
}

.zone-grid span:nth-child(2),
.zone-grid span:nth-child(9) {
  background: rgba(255, 111, 111, 0.24);
}

.zone-grid {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.zone-labels {
  position: absolute;
  inset: auto 20px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.zone-labels span {
  padding: 8px 10px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: rgba(7, 8, 12, 0.78);
}

.zone-labels .expand {
  color: var(--success);
}

.zone-labels .monitor {
  color: var(--gold-bright);
}

.zone-labels .investigate {
  color: var(--danger);
}

.lens-panel-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.lens-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.lens-metric {
  padding: 14px 16px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lens-metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.region-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: 26px;
  align-items: stretch;
}

.region-map-card {
  position: relative;
  border-radius: 0;
  padding: 28px;
  overflow: hidden;
}

.region-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 32%, rgba(111, 213, 255, 0.1), transparent 20%),
    radial-gradient(circle at 56% 52%, rgba(212, 168, 67, 0.12), transparent 26%);
}

.region-map-label {
  position: relative;
  z-index: 1;
}

.region-map-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.region-map-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 24, 0.7);
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.region-map-status.is-live {
  color: var(--signal);
  border-color: rgba(111, 213, 255, 0.26);
}

.region-map-status.is-next {
  color: var(--gold-bright);
  border-color: rgba(212, 168, 67, 0.3);
}

.region-market-controls {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.region-market-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: all 180ms ease;
}

.region-market-button:hover,
.region-market-button:focus-visible,
.region-market-button.is-active,
.region-market-button[aria-pressed="true"] {
  color: var(--white);
  border-color: rgba(212, 168, 67, 0.34);
  background: rgba(212, 168, 67, 0.08);
}

.region-map-shell {
  position: relative;
  margin-top: 18px;
  height: 390px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 24% 30%, rgba(111, 213, 255, 0.12), transparent 22%),
    radial-gradient(circle at 72% 60%, rgba(212, 168, 67, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.96), rgba(10, 12, 18, 0.98));
}

.region-map-shell::before,
.region-map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.region-map-shell::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 100%);
  opacity: 0.32;
}

.region-map-shell::after {
  background:
    radial-gradient(circle at center, transparent 42%, rgba(7, 8, 12, 0.46) 86%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.02), rgba(7, 8, 12, 0.16));
}

.region-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 19, 27, 0.96), rgba(10, 12, 18, 0.98));
}

.region-map.is-fallback {
  background:
    radial-gradient(circle at 24% 30%, rgba(111, 213, 255, 0.12), transparent 22%),
    radial-gradient(circle at 72% 60%, rgba(212, 168, 67, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.96), rgba(10, 12, 18, 0.98));
}

.region-map-fallback {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 24, 0.82);
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.55;
}

.region-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend-swatch.live {
  background: var(--signal);
  box-shadow: 0 0 12px rgba(111, 213, 255, 0.44);
}

.legend-swatch.next {
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
}

.region-map .leaflet-pane,
.region-map .leaflet-control-container {
  z-index: 1;
}

.region-map.leaflet-container {
  width: 100%;
  height: 100%;
  background: transparent;
  font-family: var(--font-body);
}

.region-map .leaflet-tile {
  filter: saturate(0.9) brightness(0.78) contrast(1.05);
}

.region-map .leaflet-control-attribution {
  background: rgba(7, 8, 12, 0.62);
  color: rgba(245, 242, 235, 0.62);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  padding: 2px 6px;
}

.region-map .leaflet-control-attribution a {
  color: rgba(241, 202, 109, 0.82);
}

.region-network-line {
  stroke-linecap: round;
}

.region-tooltip {
  background: rgba(12, 16, 24, 0.92);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 2px;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.region-tooltip::before {
  display: none;
}

.region-marker {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.region-marker-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(7, 8, 12, 0.86);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 18px rgba(7, 8, 12, 0.26);
}

.region-marker--live .region-marker-dot {
  background: var(--signal);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 18px rgba(111, 213, 255, 0.42);
}

.region-marker--live .region-marker-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(111, 213, 255, 0.42);
  animation: ringPulse 2.8s ease-out infinite;
}

.region-marker--next .region-marker-dot {
  background: var(--gold-bright);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 14px rgba(212, 168, 67, 0.34);
}

.region-marker.is-selected {
  transform: scale(1.18);
}

.region-marker.is-selected .region-marker-dot {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16), 0 0 24px rgba(241, 202, 109, 0.42);
}

.region-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.region-copy p {
  max-width: 34rem;
}

.market-tiles {
  display: grid;
  gap: 14px;
}

.market-tile {
  padding: 18px 20px;
  border-radius: 0;
}

.market-tile.live {
  border-color: rgba(111, 213, 255, 0.34);
}

.market-tile.next {
  border-color: rgba(212, 168, 67, 0.3);
}

.market-tile.wide {
  border-color: rgba(255, 255, 255, 0.08);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.credibility-card {
  border-radius: 0;
  padding: 24px;
}

.credibility-card strong,
.market-tile strong {
  margin-bottom: 10px;
}

.contact-card {
  border-radius: 0;
  padding: 38px;
  text-align: center;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(212, 168, 67, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-kicker {
  display: block;
  margin-bottom: 14px;
}

.contact-card h2 {
  max-width: 14ch;
  margin: 0 auto 16px;
}

.contact-text {
  max-width: 40rem;
  margin: 0 auto 24px;
  font-size: 1.02rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.text-link {
  color: var(--gold-bright);
  text-decoration: none;
}

.site-footer {
  padding: 0 32px 36px;
}

.site-footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted-dim);
  font-size: 0.92rem;
}

.footer-meta {
  color: var(--muted-dim);
}

@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.76);
    opacity: 0.72;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.7);
    opacity: 0;
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.35;
  }
}

@media (max-width: 1080px) {
  .site-nav-inner,
  .section,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .story-shell,
  .region-layout,
  .lens-panel {
    grid-template-columns: 1fr;
  }

  .story-visual {
    position: relative;
    top: auto;
    min-height: 460px;
  }

  .proof-layout,
  .proof-metrics,
  .pipeline,
  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .pipeline::before {
    display: none;
  }

  .decision-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 116px;
  }

  .site-nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    order: 3;
    gap: 18px;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 30px);
  }

  .hero-tagline {
    margin-top: -8px;
  }

  .hero-actions,
  .hero-metrics,
  .contact-actions {
    width: 100%;
  }

  .hero-actions a,
  .contact-actions a {
    flex: 1 1 220px;
  }

  .story-stage,
  .proof-card,
  .region-map-card,
  .contact-card,
  .lens-panel {
    padding: 22px;
  }

  .blind-city,
  .capture-grid,
  .decision-board {
    inset: 76px 22px 22px;
  }

  .capture-strip {
    right: 18px;
    width: 150px;
  }

  .region-map-top {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .hero-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
  .mosaic-cell--wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .site-nav-inner {
    gap: 16px;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-contact {
    width: auto;
  }

  .hero-section {
    align-items: end;
    padding-bottom: 110px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-tagline {
    font-size: 1.65rem;
  }

  .story-visual {
    min-height: 380px;
  }

  .story-step-head,
  .proof-card-header,
  .lens-top,
  .site-footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .proof-bars,
  .proof-metrics,
  .decision-metrics,
  .lens-metrics {
    grid-template-columns: 1fr;
  }

  .capture-strip {
    position: static;
    width: auto;
    margin-top: 18px;
  }

  .capture-beam {
    width: 160px;
    height: 160px;
  }

  .decision-map {
    height: 240px;
  }

  .metric-chip,
  .lens-button,
  .region-market-button {
    width: 100%;
    justify-content: space-between;
  }

  .region-map-shell {
    height: 320px;
  }

  .region-map-fallback {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  /* Nav — 5 links on one row at small screens */
  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  /* Decision zone overlays — hide on mobile, too complex */
  .decision-zone {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.78rem;
  }

  .hero-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .metric-chip {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

body.reduced-motion .story-stage,
body.reduced-motion [data-reveal] {
  opacity: 1;
  transform: none;
}

body.reduced-motion .story-visual {
  position: relative;
  top: auto;
}

body.reduced-motion .scroll-cue::after,
body.reduced-motion .mosaic-cell,
body.reduced-motion .capture-beam,
body.reduced-motion .region-marker--live .region-marker-dot::after {
  animation: none;
}

/* ── Verticals Strip ─────────────────────────────────────── */
.verticals-strip {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 8, 12, 0.6);
}

.verticals-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.verticals-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-right: 4px;
  white-space: nowrap;
}

.vertical-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.vertical-chip[data-vertical="government"] {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(240, 240, 236, 0.55);
}
.vertical-chip[data-vertical="investment"] {
  border-color: rgba(58, 216, 155, 0.22);
  color: #3AD89B;
}
.vertical-chip[data-vertical="realestate"] {
  border-color: rgba(232, 124, 58, 0.22);
  color: #E87C3A;
}
.vertical-chip[data-vertical="business"] {
  border-color: rgba(58, 191, 232, 0.22);
  color: #3ABFE8;
}
.vertical-chip[data-vertical="ooh"] {
  border-color: rgba(212, 168, 67, 0.28);
  color: var(--gold);
}

/* ── Pipeline Step Numbers ───────────────────────────────── */
.pipeline-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 10px;
}

/* ── Lens Context Label ──────────────────────────────────── */
.lens-context {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
  pointer-events: none;
}

@media (max-width: 640px) {
  .verticals-strip {
    padding: 0 20px;
  }
  .verticals-label {
    display: none;
  }
}
