/* =========================================================
   Smart Surface Robotics — Design Tokens & Base Styles
   ========================================================= */

:root {
  /* Brand palette */
  --forest: #1E3B2E;
  --forest-2: #142B21;
  --forest-3: #0F211A;
  --eucalyptus: #7FA98A;
  --eucalyptus-light: #A9C7B3;
  --eucalyptus-dim: #5C8570;
  --charcoal: #14171A;
  --warm-white: #F8F6F0;
  --paper: #FCFBF7;
  --stone: #E4DECF;
  --stone-dark: #B9AF98;
  --teal: #3E8E8A;
  --amber: #C98A3E;
  --signal: #7FA98A; /* green accent on dark sections, matched to the Solution flow */
  --danger: #B5502F;

  /* Semantic tokens */
  --color-bg: var(--warm-white);
  --color-surface: var(--paper);
  --color-ink: #1A1D1B;
  --color-ink-soft: #45504A;
  --color-border: #DBD4C2;
  --color-link: var(--forest);

  /* Type */
  --font-head: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  /* Scale */
  --step-0: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.4vw, 1.375rem);
  --step-2: clamp(1.5rem, 1.35rem + 0.7vw, 1.875rem);
  --step-3: clamp(1.9rem, 1.6rem + 1.3vw, 2.5rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.2vw, 3.5rem);
  --step-5: clamp(3rem, 2.2rem + 3.6vw, 4.75rem);

  /* Space (standard density) */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 20, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 20, 0.18);
  --container: 1200px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark section theme overrides */
.theme-dark {
  --color-bg: var(--forest-3);
  --color-surface: var(--forest-2);
  --color-ink: var(--warm-white);
  --color-ink-soft: #C7D2C9;
  --color-border: rgba(248, 246, 240, 0.14);
  --color-link: var(--eucalyptus-light);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@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; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-link); text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 var(--space-sm); color: var(--color-ink); font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 var(--space-sm); color: var(--color-ink-soft); max-width: 62ch; }
p.lede { font-size: var(--step-1); color: var(--color-ink-soft); }
button { font-family: inherit; }

/* Focus visibility — never remove */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* =========================================================
   Layout
   ========================================================= */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--space-md);
}
.section {
  padding-block: var(--space-2xl);
}
.section-tight { padding-block: var(--space-xl); }
.section-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--eucalyptus-dim);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.theme-dark .section-eyebrow { color: var(--eucalyptus-light); }
.section-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}
.section-head { max-width: 46rem; margin-bottom: var(--space-xl); }
.section-head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: minmax(0, 1fr); }
  h1 { font-size: var(--step-4); }
}
@media (max-width: 480px) {
  .brand { font-size: 0.85rem; white-space: nowrap; gap: 0.4rem; }
  .brand img { height: 24px; }
  .nav-cta .btn-primary { padding: 0.65rem 0.9rem; font-size: 0.85rem; min-height: 40px; }
  .nav-toggle { min-width: 40px; min-height: 40px; }
  .nav { gap: var(--space-xs); }
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--space-lg); }
}
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split.reverse > :first-child { order: 0; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--eucalyptus);
  color: var(--forest-3);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--eucalyptus-light); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  border-color: currentColor;
  color: var(--color-ink);
}
.btn-secondary:hover { background: rgba(127, 169, 138, 0.12); }
.btn-ghost {
  background: transparent;
  color: var(--color-link);
  padding-inline: 0.4rem;
  min-height: auto;
}
.btn-ghost::after { content: "→"; margin-left: 0.35rem; transition: transform var(--transition); }
.btn-ghost:hover::after { transform: translateX(3px); }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-xs);
  gap: var(--space-lg);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--forest);
}
.brand img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav-links a {
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  border-bottom-color: var(--eucalyptus);
  color: var(--forest);
}
.nav-cta { display: flex; align-items: center; gap: var(--space-sm); }
.nav-toggle {
  display: none;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--forest);
  position: relative; transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1320px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: var(--space-md); border-bottom: 1px solid var(--color-border);
    gap: var(--space-sm); box-shadow: var(--shadow-md);
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, var(--warm-white) 100%);
  color: var(--color-ink);
  overflow: hidden;
}

/* Animated 3D wireframe city background (built by js/hero-city.js) */
.hero-city-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-city-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0.6; /* keep the city quiet behind the copy */
}
/* Scrim: whiten the top (headline) zone + fade edges so text stays readable */
.hero-city-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--warm-white) 0%, rgba(248,246,240,0.55) 20%, rgba(248,246,240,0) 46%),
    radial-gradient(150% 135% at 50% 68%, rgba(248,246,240,0) 44%, rgba(248,246,240,0.5) 80%, var(--warm-white) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  padding-block: var(--space-3xl) calc(var(--space-3xl) + var(--space-lg));
}
@media (max-width: 900px) {
  .hero-inner { padding-block: var(--space-2xl) var(--space-2xl); }
}
.hero h1 { color: var(--forest-3); text-shadow: 0 2px 22px rgba(248,246,240,0.95), 0 1px 4px rgba(248,246,240,0.9); }
.hero .lede { color: var(--forest-2); font-weight: 500; max-width: 38rem; margin-inline: auto; text-shadow: 0 1px 14px rgba(248,246,240,0.95), 0 1px 3px rgba(248,246,240,0.9); }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; justify-content: center; margin-top: var(--space-lg); }
.hero .btn-secondary { border-color: var(--forest); color: var(--forest); }
.hero .btn-secondary:hover { background: rgba(30, 59, 46, 0.08); }
.hero-credibility {
  margin-top: var(--space-xl);
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(248,246,240,0.95), 0 1px 3px rgba(248,246,240,0.9);
}

/* Hero 3D isometric blueprint backdrop — a small city under construction */
.hero-blueprint {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blueprint svg { width: 100%; height: 100%; display: block; }

/* Bold outer silhouette edges */
.hero-blueprint .outline {
  fill: none;
  stroke: var(--forest);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-opacity: 0.62;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
}
/* Thin internal floor/mullion grid lines */
.hero-blueprint .struct {
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-opacity: 0.38;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
}
/* Faint construction / annotation lines */
.hero-blueprint .accent {
  fill: none;
  stroke: var(--eucalyptus-dim);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-opacity: 0.32;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
}
/* Light face-shading planes to sell volume */
.hero-blueprint .face-front { fill: var(--eucalyptus); fill-opacity: 0; stroke: none; }
.hero-blueprint .face-side { fill: var(--forest); fill-opacity: 0; stroke: none; }
.hero-blueprint .ground-shadow { fill: var(--forest-3); fill-opacity: 0; stroke: none; }
/* Under-construction dashed edges + crane */
.hero-blueprint .unfinished {
  fill: none;
  stroke: var(--eucalyptus-dim);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 7 6;
  opacity: 0;
}
.hero-blueprint .crane {
  fill: none;
  stroke: var(--stone-dark);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0;
}
.hero-blueprint .scan { opacity: 0; }

@media (prefers-reduced-motion: no-preference) {
  .hero-blueprint .hg1 .outline, .hero-blueprint .hg1 .struct { animation: draw-line 1.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards; }
  .hero-blueprint .hg1 .face-front { animation: fade-fill 1s ease-out 0.1s forwards; --fill-to: 0.05; }
  .hero-blueprint .hg1 .face-side { animation: fade-fill 1s ease-out 0.1s forwards; --fill-to: 0.09; }

  .hero-blueprint .hg2 .outline, .hero-blueprint .hg2 .struct { animation: draw-line 1.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; }
  .hero-blueprint .hg2 .face-front { animation: fade-fill 1s ease-out 0.4s forwards; --fill-to: 0.05; }
  .hero-blueprint .hg2 .face-side { animation: fade-fill 1s ease-out 0.4s forwards; --fill-to: 0.09; }

  .hero-blueprint .hg3 .outline, .hero-blueprint .hg3 .struct { animation: draw-line 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards; }
  .hero-blueprint .hg3 .face-front { animation: fade-fill 1.1s ease-out 0.7s forwards; --fill-to: 0.06; }
  .hero-blueprint .hg3 .face-side { animation: fade-fill 1.1s ease-out 0.7s forwards; --fill-to: 0.1; }
  .hero-blueprint .hg3 .unfinished { animation: fade-in 0.9s ease-out 1.3s forwards; }
  .hero-blueprint .crane { animation: fade-in 0.9s ease-out 1.1s forwards; }

  .hero-blueprint .hg4 .outline, .hero-blueprint .hg4 .struct { animation: draw-line 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards; }
  .hero-blueprint .hg4 .face-front { animation: fade-fill 1s ease-out 1s forwards; --fill-to: 0.05; }
  .hero-blueprint .hg4 .face-side { animation: fade-fill 1s ease-out 1s forwards; --fill-to: 0.09; }

  .hero-blueprint .hg5 .struct, .hero-blueprint .hg5 .ground-shadow { animation: draw-line 1s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards; }
  .hero-blueprint .hg5 .ground-shadow { animation: fade-fill 1s ease-out 1.3s forwards; --fill-to: 0.07; }
  .hero-blueprint .hg6 .accent { animation: draw-line 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards; }
  .hero-blueprint .scan { animation: scan-sweep 5s ease-in-out 2.2s infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-blueprint .outline, .hero-blueprint .struct, .hero-blueprint .accent { stroke-dashoffset: 0; }
  .hero-blueprint .unfinished, .hero-blueprint .crane { opacity: 1; }
  .hero-blueprint .face-front { fill-opacity: 0.05; }
  .hero-blueprint .face-side { fill-opacity: 0.09; }
  .hero-blueprint .ground-shadow { fill-opacity: 0.07; }
}
@keyframes fade-in {
  to { opacity: 1; }
}
@keyframes fade-fill {
  to { fill-opacity: var(--fill-to); }
}
@keyframes scan-sweep {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(-450px); opacity: 0; }
}

/* Page header (non-home hero) */
.page-header {
  position: relative;
  background: linear-gradient(160deg, var(--forest-3) 0%, var(--forest) 100%);
  color: var(--warm-white);
  padding-block: var(--space-2xl) var(--space-xl);
  overflow: hidden;
}
.page-header h1 { color: var(--warm-white); }
.page-header .lede { color: #DDE7E0; }
.page-header > .wrap { position: relative; }

/* =========================================================
   Blueprint line-drawing background
   ========================================================= */
.blueprint-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.22;
}
.blueprint-bg svg { width: 100%; height: 100%; display: block; }
.blueprint-bg .draw {
  fill: none;
  stroke: var(--warm-white);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
@media (prefers-reduced-motion: no-preference) {
  .blueprint-bg .g1 .draw { animation: draw-line 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards; }
  .blueprint-bg .g2 .draw { animation: draw-line 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; }
  .blueprint-bg .g3 .draw { animation: draw-line 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards; }
  .blueprint-bg .g4 .draw { animation: draw-line 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards; }
  .blueprint-bg .g5 .draw { animation: draw-line 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards; }
  .blueprint-bg .g6 .draw { animation: draw-line 1s cubic-bezier(0.4, 0, 0.2, 1) 1.05s forwards; }
}
@media (prefers-reduced-motion: reduce) {
  .blueprint-bg .draw { stroke-dashoffset: 0; }
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* =========================================================
   Cards / Components
   ========================================================= */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  height: 100%;
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(127, 169, 138, 0.16);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.theme-dark .card { background: rgba(248,246,240,0.04); }
.theme-dark .card-icon { background: rgba(127, 169, 138, 0.18); color: var(--eucalyptus-light); }

.stat-card { text-align: left; }
.stat-value {
  font-family: var(--font-head);
  font-size: var(--step-3);
  color: var(--forest);
  display: block;
  margin-bottom: var(--space-3xs);
}
.theme-dark .stat-value { color: var(--eucalyptus-light); }
.stat-label { font-size: 0.92rem; color: var(--color-ink-soft); }
.stat-note { font-size: 0.8rem; color: var(--stone-dark); margin-top: var(--space-2xs); }
.theme-dark .stat-note { color: #8C9E90; }

/* =========================================================
   Metrics — Alethia-inspired "data readout" on dark forest
   ========================================================= */
.metrics-section .section-eyebrow { color: var(--signal); }
.metrics-section .section-eyebrow::before { background: var(--signal); }
.metrics-section h2 { letter-spacing: -0.02em; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--space-2xl);
  border-top: 1px solid rgba(127, 169, 138, 0.22);
}
.metric {
  padding: var(--space-lg);
  border-right: 1px solid rgba(127, 169, 138, 0.12);
}
.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: none; padding-right: 0; }
.m-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.6rem, 2rem + 2.8vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--warm-white);
}
.m-value .u { color: var(--signal); }
.m-label {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #A9C7B3;
  max-width: 26ch;
}
.metrics-section .btn-ghost { color: var(--signal); }
@media (max-width: 640px) {
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid rgba(127, 169, 138, 0.12); padding-left: 0; padding-right: 0; }
  .metric:last-child { border-bottom: none; }
}

/* ===== Industries: stacked drag-momentum carousel ===== */
.ind-carousel { width: 100%; }
.ind-stage {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: var(--space-2xl) auto 0;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 640px) { .ind-stage { height: 400px; } }
@media (min-width: 1024px) { .ind-stage { height: 440px; } }
.ind-drag {
  position: absolute;
  inset: 0;
  z-index: 200;
  cursor: grab;
  touch-action: pan-y;
  outline: none;
}
.ind-drag:active { cursor: grabbing; }
.ind-drag:focus-visible { box-shadow: inset 0 0 0 2px var(--eucalyptus-dim); border-radius: 18px; }
.ind-card {
  position: absolute;
  width: 176px;
  height: 224px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--forest-3);
  box-shadow: 0 20px 55px rgba(15, 33, 26, 0.38);
  pointer-events: none;
  will-change: transform, opacity;
}
@media (min-width: 640px) { .ind-card { width: 224px; height: 320px; } }
@media (min-width: 1024px) { .ind-card { width: 256px; height: 360px; } }
.ind-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}
.ind-card .ind-dark { position: absolute; inset: 0; background: #000; opacity: 0; }
.ind-card .ind-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 33, 26, 0.92), rgba(15, 33, 26, 0.15) 55%, transparent);
}
.ind-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--signal);
  color: var(--forest-3);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ind-caption { position: absolute; left: 16px; right: 16px; bottom: 16px; color: #fff; }
.ind-caption h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.15;
  margin: 0 0 4px;
  color: #fff;
}
.ind-caption p {
  font-size: 0.76rem;
  line-height: 1.4;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
}
.ind-view {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--signal);
}
@media (max-width: 640px) { .ind-caption p { display: none; } }
.ind-controls {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-xl);
}
.ind-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  font-size: 1.1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ind-arrow:hover { background: var(--forest); color: var(--warm-white); border-color: var(--forest); }
.ind-dots { display: flex; gap: 8px; align-items: center; }
.ind-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.ind-dot.is-active { width: 24px; background: var(--eucalyptus-dim); }

/* ===== Pilot Evidence: interactive environmental profile chart ===== */
.pc { margin-top: var(--space-2xl); }
.pc-head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.pc-tabs { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid rgba(127, 169, 138, 0.22); border-radius: 999px; }
.pc-tab {
  border: none;
  background: transparent;
  color: #A9C7B3;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.pc-tab:hover { color: var(--warm-white); }
.pc-tab.is-active { background: var(--signal); color: var(--forest-3); }
.pc-readout { text-align: right; min-width: 240px; }
.pc-ro-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #8C9E90;
  margin-bottom: 6px;
}
.pc-ro-vals { display: inline-flex; flex-wrap: wrap; gap: 10px 16px; justify-content: flex-end; align-items: baseline; }
.pc-val { font-family: var(--font-mono); font-size: 1.02rem; color: var(--warm-white); white-space: nowrap; }
.pc-val em { font-style: normal; color: #8C9E90; font-size: 0.7rem; letter-spacing: 0.05em; margin-right: 5px; text-transform: uppercase; }
.pc-val i { font-style: normal; color: #A9C7B3; font-size: 0.72rem; margin-left: 1px; }
.pc-val-key { color: var(--signal); }
.pc-val-key i { color: rgba(127, 169, 138, 0.7); }
.pc-flag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 999px;
}
.pc-flag.is-safe { background: rgba(127, 169, 138, 0.14); color: var(--signal); }
.pc-flag.is-watch { background: rgba(201, 138, 62, 0.16); color: var(--amber); }
.pc-plot { width: 100%; touch-action: pan-y; cursor: crosshair; }
.pc-svg { display: block; width: 100%; height: auto; }
.pc-grid { stroke: rgba(169, 199, 179, 0.12); stroke-width: 1; }
.pc-axis { fill: #8C9E90; font-family: var(--font-mono); font-size: 10px; }
.pc-band { fill: rgba(127, 169, 138, 0.18); stroke: none; }
.pc-mean { fill: none; stroke: var(--signal); stroke-width: 2.25; stroke-linejoin: round; stroke-linecap: round; }
.pc-threshold { stroke: var(--amber); stroke-width: 1.25; opacity: 0.8; }
.pc-thlabel { fill: var(--amber); font-family: var(--font-mono); font-size: 10px; opacity: 0.85; }
.pc-guide { stroke: rgba(127, 169, 138, 0.55); stroke-width: 1; opacity: 0; transition: opacity 0.12s ease; }
.pc-dot { fill: var(--signal); stroke: var(--forest-3); stroke-width: 2; opacity: 0; transition: opacity 0.12s ease; }
.pc-caption {
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #8C9E90;
  max-width: 62ch;
}
@media (max-width: 620px) {
  .pc-head { flex-direction: column; align-items: stretch; }
  .pc-readout { text-align: left; }
  .pc-ro-vals { justify-content: flex-start; }
  .pc-tabs { overflow-x: auto; }
}

/* Solution: connected intelligence flow (Sense -> Understand -> Predict -> Act) */
.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.flow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(127,169,138,0.12), rgba(127,169,138,0.45), rgba(127,169,138,0.12));
}
.flow-step { position: relative; padding-top: calc(var(--space-lg) + 4px); text-align: center; }
.flow-node {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest-3); border: 2px solid var(--eucalyptus);
  display: grid; place-items: center;
}
.flow-node > span { width: 7px; height: 7px; border-radius: 50%; background: var(--eucalyptus); }
.flow-step h4 { color: var(--warm-white); margin: 0 0 0.35rem; }
.flow-step p { color: #C7D2C9; font-size: 0.92rem; margin: 0 auto; max-width: 24ch; }
@media (max-width: 900px) {
  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--space-xl); }
  .flow::before { display: none; }
}
@media (max-width: 560px) {
  .flow { grid-template-columns: 1fr; }
  .flow-step { text-align: left; padding-top: 0; padding-left: 38px; }
  .flow-node { left: 0; transform: none; top: 3px; }
  .flow-step p { max-width: none; margin: 0; }
}

.pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-ink-soft);
}
.pill-amber { border-color: var(--amber); color: var(--amber); }
.pill-teal { border-color: var(--teal); color: var(--teal); }

.divider { border: none; border-top: 1px solid var(--color-border); margin-block: var(--space-xl); }

.callout {
  border-left: 3px solid var(--eucalyptus);
  padding: var(--space-sm) var(--space-md);
  background: rgba(127, 169, 138, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--step-1);
  color: var(--color-ink);
  font-family: var(--font-head);
}

/* =========================================================
   Problem section
   ========================================================= */
.problem-intro { max-width: 46rem; margin-inline: auto; text-align: center; }
.consequences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--space-xl);
  row-gap: 0;
  margin-top: var(--space-xl);
}
@media (max-width: 900px) { .consequences { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .consequences { grid-template-columns: 1fr; } }
.consequence {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
}
.consequence h4 { font-size: 1rem; margin: 0 0 0.25rem; color: var(--forest); }
.consequence p { font-size: 0.9rem; margin: 0; }
.problem-thesis {
  font-family: var(--font-head);
  font-size: var(--step-2);
  line-height: 1.25;
  color: var(--forest);
  max-width: 40rem;
  margin: var(--space-2xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 2px solid var(--eucalyptus);
  text-align: center;
}

/* Scroll-reveal utility (IntersectionObserver-driven in main.js).
   Hidden state is applied by JS only (reveal-hidden) so the page is
   fully visible without JS and above-the-fold blocks never flash. */
.reveal {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.reveal-hidden { opacity: 0; transform: translateY(20px); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.reveal-hidden { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Tasteful micro-interactions (hover / press feedback)
   ========================================================= */
.card { transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.card:hover { transform: translateY(-2px); border-color: var(--eucalyptus); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(1px) scale(0.99); }
.industry-card { transition: transform 0.22s ease, box-shadow 0.22s ease; }
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-card .img-wrap img { transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.industry-card:hover .img-wrap img { transform: scale(1.045); }
.feature-media img, .editorial-break img { transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.feature-media:hover img, .editorial-break:hover img { transform: scale(1.035); }
.logo-slot.has-logo { transition: transform 0.22s ease, box-shadow 0.22s ease; }
.logo-slot.has-logo:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
@media (prefers-reduced-motion: reduce) {
  .card, .btn, .industry-card, .industry-card .img-wrap img,
  .feature-media img, .editorial-break img, .logo-slot.has-logo { transition: none; }
  .card:hover, .btn:active, .industry-card:hover, .industry-card:hover .img-wrap img,
  .feature-media:hover img, .editorial-break:hover img, .logo-slot.has-logo:hover { transform: none; }
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.logo-slot {
  flex: 1 1 160px;
  min-height: 74px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone-dark);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: center;
  padding: var(--space-sm);
}
/* Real partner logos: solid white tile, contained, uniform height */
.logo-slot.has-logo {
  border-style: solid;
  border-color: var(--color-border);
  background: #ffffff;
  padding: var(--space-sm) var(--space-md);
}
.logo-slot.has-logo img {
  max-height: 46px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.diagram {
  display: flex;
  align-items: stretch;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
}
.diagram-node {
  flex: 1 1 180px;
  min-width: 180px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
}
.diagram-node h4 { margin-bottom: var(--space-3xs); font-size: 1rem; }
.diagram-node p { font-size: 0.88rem; margin: 0; }
.diagram-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--eucalyptus-dim); font-size: 1.4rem; flex: 0 0 24px;
}

.avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}
.team-card h4 { margin-bottom: 0.15rem; }
.team-role { color: var(--eucalyptus-dim); font-size: 0.85rem; font-weight: 600; margin-bottom: var(--space-2xs); }
.theme-dark .team-role { color: var(--eucalyptus-light); }
.editable-note { font-size: 0.75rem; color: var(--stone-dark); font-style: italic; }

/* ===== Team marquee ===== */
.tm-section { overflow: hidden; }
.tm-head { max-width: 46rem; margin: 0 auto var(--space-xl); text-align: center; }
.tm-marquee { position: relative; width: 100%; }
.tm-marquee::before, .tm-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 3; pointer-events: none;
}
.tm-marquee::before { left: 0; background: linear-gradient(to right, var(--stone), rgba(228, 222, 207, 0)); }
.tm-marquee::after { right: 0; background: linear-gradient(to left, var(--stone), rgba(228, 222, 207, 0)); }
.tm-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: tm-scroll var(--tm-duration, 40s) linear infinite;
  will-change: transform;
}
.tm-marquee:hover .tm-track,
.tm-marquee:focus-within .tm-track { animation-play-state: paused; }
@keyframes tm-scroll { to { transform: translateX(var(--tm-shift, -50%)); } }
.tm-card {
  position: relative;
  width: 232px;
  flex: 0 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--forest-3);
  box-shadow: 0 16px 40px rgba(15, 33, 26, 0.18);
}
.tm-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.tm-card:hover img { filter: grayscale(0); transform: scale(1.04); }
.tm-ph {
  width: 100%; height: 100%;
  display: grid; place-items: center; text-align: center;
  color: var(--eucalyptus-light);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em;
}
.tm-meta {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  background: rgba(248, 246, 240, 0.92);
  border-radius: 11px;
  padding: 9px 12px;
}
.tm-meta h4 { margin: 0; font-size: 0.98rem; color: var(--forest); }
.tm-meta p {
  margin: 3px 0 0;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.02em;
  color: var(--eucalyptus-dim); text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .tm-track { animation: none; }
  .tm-marquee { overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 4px; }
  .tm-card { scroll-snap-align: start; }
}

/* ===== Technology: connected data pipeline (replaces box grid) ===== */
.pipe {
  list-style: none;
  margin: var(--space-2xl) auto 0;
  padding: 0;
  max-width: 46rem;
  counter-reset: pipe;
}
.pipe-stage {
  position: relative;
  padding: 0 0 var(--space-xl) 2.75rem;
  border-left: 2px solid var(--color-border);
  counter-increment: pipe;
}
.pipe-stage:last-child { border-left-color: transparent; padding-bottom: 0; }
.pipe-node {
  position: absolute;
  left: -14px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--eucalyptus);
  display: grid;
  place-items: center;
}
.pipe-node::before {
  content: counter(pipe);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--eucalyptus-dim);
}
.pipe-stage h3 { margin: 0 0 var(--space-2xs); font-size: var(--step-2); }
.pipe-lead { color: var(--color-ink-soft); margin: 0 0 var(--space-sm); max-width: 44ch; }
.pipe-cap { list-style: none; margin: 0; padding: 0; }
.pipe-cap li {
  padding: 0.8rem 0;
  border-top: 1px solid var(--color-border);
}
.pipe-cap li:first-child { border-top: none; padding-top: 0; }
.pipe-cap strong { color: var(--color-ink); font-weight: 600; }
.pipe-cap span {
  display: block;
  margin-top: 2px;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

/* Industry cards */
.industry-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
}
.industry-card .img-wrap { aspect-ratio: 16/10; overflow: hidden; background: var(--stone); }
.industry-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.industry-card .body { padding: var(--space-md); flex: 1; }

/* =========================================================
   Forms
   ========================================================= */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-3xs); }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--color-ink); }
.field .hint { font-size: 0.78rem; color: var(--color-ink-soft); }
.field input, .field select, .field textarea {
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: inherit;
  font-size: 0.98rem;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--eucalyptus-dim);
}
.field-error { font-size: 0.8rem; color: var(--danger); min-height: 1.1em; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }

.inquiry-tabs { display: flex; flex-wrap: wrap; gap: var(--space-2xs); margin-bottom: var(--space-lg); }
.inquiry-tab {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-ink-soft);
  min-height: 44px;
}
.inquiry-tab[aria-pressed="true"] { background: var(--forest); color: var(--warm-white); border-color: var(--forest); }

.form-status {
  display: none;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(127, 169, 138, 0.14);
  border: 1px solid var(--eucalyptus-dim);
  margin-top: var(--space-md);
}
.form-status.is-visible { display: block; }
.form-status.is-error { background: rgba(181, 80, 47, 0.1); border-color: var(--danger); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--forest-3);
  color: #C7D2C9;
  padding-block: var(--space-2xl) var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { color: var(--warm-white); font-family: var(--font-head); font-size: 0.95rem; margin-bottom: var(--space-sm); }
.site-footer a { color: #C7D2C9; font-size: 0.92rem; }
.site-footer a:hover { color: var(--eucalyptus-light); }
.site-footer li { margin-bottom: var(--space-2xs); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  font-size: 0.82rem;
  color: #93A296;
}
.footer-brand { display: flex; align-items: center; gap: var(--space-2xs); margin-bottom: var(--space-sm); }
.footer-brand img { height: 26px; }
.footer-tagline { font-size: 0.9rem; max-width: 26rem; }

/* =========================================================
   Final CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-3) 100%);
  color: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}
.cta-band h2 { color: var(--warm-white); }
.cta-band p { color: #DDE7E0; margin-inline: auto; }
.cta-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; margin-top: var(--space-lg); }

/* =========================================================
   Utility
   ========================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.max-w-prose { max-width: 62ch; }
.max-w-wide { max-width: 46rem; }
.bleed-img { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); }
.bleed-img img { width: 100%; object-fit: cover; }

/* Feature media with floating caption chip */
.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-media img { width: 100%; display: block; object-fit: cover; }
.feature-media .cap {
  position: absolute;
  left: var(--space-md);
  bottom: var(--space-md);
  background: rgba(15, 33, 26, 0.78);
  color: var(--warm-white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}

/* Full-bleed editorial image break */
.editorial-break {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .editorial-break { aspect-ratio: 4 / 5; }
}
.editorial-break img { width: 100%; height: 100%; object-fit: cover; display: block; }
.editorial-break::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 33, 26, 0) 40%, rgba(15, 33, 26, 0.8) 100%);
}
.editorial-break .caption {
  position: absolute;
  left: var(--space-lg);
  right: var(--space-lg);
  bottom: var(--space-lg);
  z-index: 1;
}
.editorial-break .caption h3 { color: var(--warm-white); max-width: 34rem; margin-bottom: 0; }

/* Process step card with ghost numeral */
.step-card { position: relative; overflow: hidden; padding-top: var(--space-xl); }
.step-card .ghost-num {
  position: absolute;
  top: -0.5rem;
  right: 0.7rem;
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--eucalyptus);
  opacity: 0.16;
  line-height: 1;
  pointer-events: none;
}
.step-card h4 { position: relative; z-index: 1; margin-bottom: 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--forest); color: var(--warm-white); padding: 0.6rem 1rem; border-radius: var(--radius-sm);
}
.skip-link:focus { left: var(--space-sm); top: var(--space-sm); }
