/*
Theme Name: ConVis Digital Twin
Theme URI: https://convis-digitaltwin.com/
Author: Glaucus Games GmbH
Author URI: https://www.glaucus.games/
Description: Pixel-faithful ConVis Digital Twin theme with a locked native WordPress block-editor workflow.
Version: 2.0.0
Requires at least: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: convis-digitaltwin
*/

:root {
  color-scheme: dark;
  --bg: #05070b;
  --bg-soft: #090d13;
  --bg-raised: #0d131b;
  --surface: rgba(255, 255, 255, 0.052);
  --surface-strong: rgba(255, 255, 255, 0.082);
  --surface-subtle: rgba(255, 255, 255, 0.028);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.075);
  --text: #f5f7f8;
  --muted: #a8b3b8;
  --muted-2: #7f8c92;
  --green: #56f56b;
  --green-soft: rgba(86, 245, 107, 0.13);
  --cyan: #72e7ff;
  --cyan-soft: rgba(114, 231, 255, 0.12);
  --violet: #a683ff;
  --amber: #ffd666;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.23);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --container-wide: 1240px;
  --nav-height: 76px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(114, 231, 255, 0.045), transparent 29rem),
    radial-gradient(circle at 12% 30%, rgba(86, 245, 107, 0.035), transparent 33rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, h4 { margin: 0; }
ul { margin: 0; padding: 0; }
::selection { background: rgba(86, 245, 107, 0.25); color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #05070b;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container,
.container-wide {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.container-wide { width: min(calc(100% - 48px), var(--container-wide)); }

.section {
  position: relative;
  padding: 124px 0;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.section:nth-of-type(even)::before {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.012) 18%, rgba(255,255,255,0.012) 82%, transparent);
}

.eyebrow,
.card-label,
.phase-badge,
.node-index,
.journey-label,
.subsection-kicker,
.mobile-phase {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head h2 {
  max-width: 14ch;
  margin-top: 17px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.057em;
  text-wrap: balance;
}
.section-head > p {
  max-width: 57ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}
.section-head-narrow h2 { max-width: 15ch; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.nav-panel a:focus-visible,
.filter-chip:focus-visible,
.rail-button:focus-visible,
.nav-toggle:focus-visible,
.horizontal-rail:focus-visible {
  outline: 3px solid rgba(114, 231, 255, 0.55);
  outline-offset: 4px;
}
.button-primary {
  color: #031006;
  background: linear-gradient(135deg, #7cff88, var(--green));
  box-shadow: 0 18px 52px rgba(86, 245, 107, 0.18);
}
.button-primary:hover { box-shadow: 0 24px 64px rgba(86, 245, 107, 0.27); }

/* Navigation */
.site-nav {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(calc(100% - 36px), 1320px);
  height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 13px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(5, 8, 12, 0.72);
  box-shadow: 0 18px 55px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  border-radius: 13px;
}
.brand-icon { width: 38px; height: 38px; border-radius: 10px; }
.brand-lockup { display: grid; gap: 1px; }
.brand-name { font-size: 18px; font-weight: 880; letter-spacing: -0.035em; line-height: 1; }
.brand-sub { color: #98a6ab; font-size: 10px; font-weight: 650; letter-spacing: 0.055em; line-height: 1.2; }
.nav-panel { display: flex; align-items: center; gap: 7px; }
.nav-panel > a {
  padding: 9px 10px;
  border-radius: 10px;
  color: #c4ccd0;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}
.nav-panel > a:hover,
.nav-panel > a.is-current { color: #fff; background: rgba(255,255,255,0.055); }
.nav-panel .nav-cta {
  margin-left: 5px;
  padding: 10px 15px;
  color: #031006;
  background: var(--green);
  font-weight: 850;
}
.nav-panel .nav-cta:hover { color: #031006; background: #79ff88; }
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: min(930px, 100svh);
  overflow: hidden;
  background: #060a10 url("assets/hero_spawnlink_poster_v2.webp") center / cover no-repeat;
}
.hero-media,
.hero-video,
.hero-scrim { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; opacity: 0; transition: opacity 1.15s ease; }
.hero-video.is-ready { opacity: 0.78; }
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4,7,11,0.96) 0%, rgba(4,7,11,0.86) 35%, rgba(4,7,11,0.30) 72%, rgba(4,7,11,0.58) 100%),
    linear-gradient(180deg, rgba(4,7,11,0.3), rgba(4,7,11,0.05) 45%, #05070b 100%),
    radial-gradient(circle at 67% 55%, rgba(86,245,107,0.035), transparent 30rem);
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: min(930px, 100svh);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 76px;
}
.hero-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.72fr);
  gap: 70px;
  align-items: center;
}
.hero-copy { max-width: 760px; }
.hero-copy h1 {
  max-width: 10.5ch;
  margin-top: 21px;
  font-size: clamp(58px, 6.8vw, 104px);
  line-height: 0.91;
  letter-spacing: -0.07em;
  text-wrap: balance;
}
.hero-copy h1 .hero-line { display: block; color: var(--text); }
.hero-copy h1 .hero-line-accent {
  color: transparent;
  background: linear-gradient(115deg, #fff 0%, #beffc4 45%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 58ch;
  margin-top: 28px;
  color: #c2cbce;
  font-size: 17px;
  line-height: 1.67;
}
.hero-actions { margin-top: 30px; }
.trust-note {
  display: block;
  max-width: 560px;
  margin-top: 16px;
  color: #9eadb2;
  font-size: 13px;
  line-height: 1.5;
}
.hero-preview {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  background: rgba(8,12,18,0.72);
  box-shadow: 0 34px 100px rgba(0,0,0,0.46), 0 0 0 1px rgba(86,245,107,0.03) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero-preview-media {
  aspect-ratio: 16 / 10;
  background-position: center 58%;
  background-size: cover;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hero-preview-media::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 58%, rgba(4,7,11,0.45));
}
.hero-preview-copy { padding: 24px 25px 27px; }
.card-eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  color: #9eb0b5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.card-eyebrow span:first-child { color: var(--green); }
.hero-preview-copy h2 {
  max-width: 16ch;
  margin-top: 19px;
  font-size: 30px;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.hero-preview-copy > p:last-child {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}
.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 9px;
  transform: translateX(-50%);
  color: #86969c;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.scroll-cue i { width: 1px; height: 26px; background: linear-gradient(var(--green), transparent); }

/* Shared card primitives */
.platform-card,
.value-card,
.flow-node,
.delivery-model article,
.media-card,
.capture-loop-card,
.journey-card,
.proof-step {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028));
  box-shadow: var(--shadow-soft);
}

/* Platform overview */
.platform-overview { padding-top: 132px; }
.platform-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.platform-card {
  position: relative;
  min-height: 390px;
  padding: 31px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 31px;
  right: 31px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
  opacity: .82;
}
.platform-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -130px;
  right: -100px;
  border-radius: 50%;
  background: var(--card-accent);
  opacity: .055;
  filter: blur(10px);
}
.platform-card h3 {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  margin-top: 22px;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.01;
  letter-spacing: -0.052em;
}
.platform-card > p:not(.card-label) {
  position: relative;
  z-index: 1;
  max-width: 54ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}
.check-list { display: grid; gap: 12px; margin-top: 24px; list-style: none; }
.check-list li {
  position: relative;
  padding-left: 26px;
  color: #d5dcdf;
  font-size: 14px;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--card-accent) 55%, transparent);
}
.data-principle {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 58px;
  align-items: center;
  margin-top: 28px;
  padding: 27px 30px;
  border-top: 1px solid rgba(86,245,107,0.34);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(86,245,107,0.045), transparent 48%);
}
.data-principle-title { display: grid; gap: 3px; }
.data-principle-title span {
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.038em;
}
.data-principle-title span:last-child { color: var(--green); }
.data-principle > p { color: var(--muted); font-size: 15px; line-height: 1.62; }

/* Value wall */
.value-section { overflow: hidden; }
.value-section::after {
  content: "";
  position: absolute;
  inset: 30% -10% 10%;
  z-index: -1;
  opacity: .22;
  background-image:
    linear-gradient(rgba(114,231,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,231,255,.11) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
}
.value-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.value-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 29px 28px 25px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -10%, rgba(114,231,255,.07), transparent 11rem),
    linear-gradient(180deg, rgba(255,255,255,0.072), rgba(255,255,255,0.025));
}
.value-card h3 {
  margin-top: 24px;
  font-size: clamp(26px, 2.35vw, 33px);
  line-height: 1.06;
  letter-spacing: -0.047em;
}
.value-card > p:not(.card-label) {
  margin-top: 19px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.value-outcome {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: #dce5e7;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.value-outcome::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(86,245,107,.4);
}
.value-note {
  max-width: 920px;
  margin: 27px auto 0;
  color: #91a0a5;
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

/* Implementation flow */
.implementation-section { background: radial-gradient(circle at 70% 48%, rgba(86,245,107,.035), transparent 38rem); }
.implementation-map-desktop {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto 112px auto auto;
  gap: 18px;
  align-items: center;
}
.flow-phase {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: #b7c3c7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.flow-phase::before {
  content: "";
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--green), rgba(86,245,107,.16));
  box-shadow: 0 0 14px rgba(86,245,107,.22);
}
.flow-phase span { display: none; }
.phase-base { grid-column: 1 / 8; grid-row: 1; justify-self: start; }
.phase-enrich { grid-column: 9 / 13; grid-row: 1; justify-self: start; }
.flow-node {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-radius: 26px;
}
.implementation-section .flow-node {
  border-color: rgba(86,245,107,.30);
  background:
    radial-gradient(circle at 50% 0%, rgba(86,245,107,.13), transparent 14rem),
    linear-gradient(180deg, rgba(255,255,255,.072), rgba(255,255,255,.03));
  box-shadow: 0 24px 76px rgba(0,0,0,.32), 0 0 42px rgba(86,245,107,.055);
}
.flow-node h3 {
  margin-top: 16px;
  font-size: 26px;
  line-height: 1.06;
  letter-spacing: -0.042em;
}
.flow-node > p:last-child {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.node-source { grid-column: 1 / 4; grid-row: 2; min-height: 250px; }
.node-twin {
  grid-column: 5 / 8;
  grid-row: 2;
  min-height: 250px;
}
.node-check { grid-column: 9 / 13; grid-row: 2; min-height: 250px; }
.flow-arrow {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(114,231,255,.24);
  border-radius: 50%;
  color: transparent;
  background: rgba(114,231,255,.07);
  font-size: 0;
}
.flow-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  background: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8h9M9 4.6L12.4 8 9 11.4' fill='none' stroke='%2372e7ff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.arrow-one { grid-column: 4; grid-row: 2; }
.arrow-two { grid-column: 8; grid-row: 2; }
.decision-branch {
  position: relative;
  grid-column: 5 / 13;
  grid-row: 3;
  align-self: stretch;
  min-height: 112px;
  overflow: visible;
}
/* The decision trunk starts at node 03, then splits towards the two outcomes. */
.decision-branch::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 75%;
  width: 1px;
  height: 51px;
  background: linear-gradient(rgba(255,255,255,.22), rgba(114,231,255,.52));
}
.decision-branch::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 18.75%;
  right: 25%;
  height: 1px;
  background: linear-gradient(90deg, rgba(114,231,255,.40), rgba(114,231,255,.58));
}
.branch-option {
  position: absolute;
  top: 27px;
  bottom: 12px;
  display: flex;
  width: min(220px, 29%);
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  color: #b7c4c8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.branch-option-use { left: 18.75%; }
.branch-option-gap { left: 75%; }
.branch-option::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 2px solid #05070b;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px rgba(114,231,255,.28), 0 0 18px rgba(114,231,255,.18);
}
.branch-option span {
  margin-top: 11px;
  padding: 0 7px;
  background: #05070b;
}
.branch-option i {
  position: relative;
  width: 1px;
  min-height: 28px;
  flex: 1 1 auto;
  margin-top: 9px;
  background: linear-gradient(rgba(114,231,255,.45), rgba(114,231,255,.78));
}
.branch-option i::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 1px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  transform: rotate(45deg);
}
.node-use {
  grid-column: 5 / 8;
  grid-row: 4;
  align-self: start;
  min-height: 205px;
}
.capture-branch {
  grid-column: 9 / 13;
  grid-row: 4 / 6;
  align-self: start;
  display: grid;
  gap: 11px;
}
.capture-branch .node-capture { align-self: start; }
.capture-branch .flow-node { min-height: 190px; }
.arrow-down { margin-inline: auto; }
.return-loop {
  grid-column: 5 / 9;
  grid-row: 5;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 16px;
  border-top: 1px solid rgba(86,245,107,.27);
  color: #9fb0b5;
  font-size: 13px;
  line-height: 1.4;
}
.return-loop span { color: var(--green); font-size: 23px; line-height: 1; }
.return-loop strong { color: #d8e5df; font-weight: 800; }
.implementation-map-mobile { display: none; }

/* Workflow section */
.workflows-section { background: radial-gradient(circle at 14% 42%, rgba(166,131,255,.035), transparent 35rem); }
.delivery-model {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.delivery-model article {
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
}
.delivery-model h3 {
  margin-top: 17px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.delivery-model p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.subsection-heading,
.library-head,
.capture-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.subsection-heading { margin: 4px 0 18px; }
.subsection-heading p,
.capture-group-head p {
  font-size: 26px;
  font-weight: 820;
  letter-spacing: -0.035em;
}
.subsection-heading span,
.capture-group-head span,
.library-hint {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}
.featured-workflows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.media-card {
  overflow: hidden;
  border-radius: 26px;
}
.media-card img,
.media-card picture {
  width: 100%;
}
.media-card picture { display: block; }
.media-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.media-card-body { padding: 21px 21px 23px; }
.media-card-body h3 {
  margin-top: 13px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.042em;
}
.media-card-body > p:last-child {
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.featured-workflow img { aspect-ratio: 16 / 10; }
.featured-workflow .media-card-body { min-height: 225px; }
.featured-workflow .media-card-body h3 { font-size: 29px; }
.featured-workflow .media-card-body > p:last-child { font-size: 14.5px; }
.library-head { margin-top: 55px; }
.library-controls { display: flex; gap: 9px; }
.rail-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #dce5e7;
  background: rgba(255,255,255,.045);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.rail-button:hover { transform: translateY(-1px); border-color: rgba(114,231,255,.35); background: rgba(114,231,255,.07); }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.filter-chip {
  padding: 9px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #a9b5b9;
  background: rgba(255,255,255,.025);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.filter-chip:hover { color: #fff; border-color: rgba(255,255,255,.18); }
.filter-chip.is-active { color: #061008; border-color: rgba(86,245,107,.6); background: var(--green); }
.horizontal-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 22px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) transparent;
}
.horizontal-rail::-webkit-scrollbar { height: 7px; }
.horizontal-rail::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(255,255,255,.16); }
.library-card {
  flex: 0 0 clamp(320px, 28.5vw, 350px);
  scroll-snap-align: start;
  transition: opacity .2s ease, transform .2s ease;
}
.library-card[hidden] { display: none !important; }
.library-card .media-card-body { min-height: 218px; }
.mobile-reachability { display: none; }
.swipe-hint { display: none; }

/* Spatial Data Capture */
.capture-section { background: radial-gradient(circle at 88% 24%, rgba(114,231,255,.04), transparent 35rem); }
.capture-spectrum {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 57px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: rgba(255,255,255,.025);
}
.capture-spectrum::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(86,245,107,.3), rgba(114,231,255,.26), rgba(166,131,255,.22), rgba(255,214,102,.28));
}
.capture-spectrum article {
  position: relative;
  z-index: 1;
  min-height: 152px;
  padding: 24px;
  border-right: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(5,7,11,.86), rgba(5,7,11,.57));
}
.capture-spectrum article:last-child { border-right: 0; }
.capture-spectrum article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(86,245,107,.27);
  border-radius: 12px;
  color: var(--green);
  background: #09100c;
  font-size: 11px;
  font-weight: 850;
}
.capture-spectrum strong { display: block; margin-top: 17px; font-size: 17px; line-height: 1.22; }
.capture-spectrum p { margin-top: 5px; color: var(--muted-2); font-size: 12px; line-height: 1.4; }
.capture-group + .capture-group { margin-top: 58px; }
.capture-group-head { margin-bottom: 18px; }
.capture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.capture-card .media-card-body { min-height: 258px; }
.capture-card .media-card-body h3,
.capture-loop-card h3 {
  margin-top: 13px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.042em;
}
.capture-card .media-card-body > p:last-child,
.capture-loop-card > div:first-child > p:last-child {
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}
.phase-badge { color: var(--cyan); font-size: 10px; }
.capture-loop-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0, rgba(255,214,102,.08), transparent 15rem),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.028));
}
.loop-visual { display: grid; gap: 9px; margin-top: 24px; }
.loop-visual div {
  padding: 12px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(0,0,0,.16);
}
.loop-visual strong { display: block; font-size: 13px; line-height: 1.25; }
.loop-visual span { display: block; margin-top: 3px; color: var(--muted-2); font-size: 11px; line-height: 1.4; }
.loop-visual i { color: var(--cyan); font-style: normal; line-height: 1; text-align: center; }
.capture-mobile-rail-wrap { display: none; }

/* Capture automation */
.automation-section {
  --automation-accent: var(--cyan);
  --automation-line: rgba(114, 231, 255, .27);
  background:
    radial-gradient(circle at 76% 18%, rgba(114, 231, 255, .055), transparent 34rem),
    linear-gradient(180deg, rgba(114, 231, 255, .012), transparent 85%);
}
.automation-section .eyebrow,
.automation-section .journey-label { color: var(--automation-accent); }
.journey-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.journey-card {
  min-height: 430px;
  padding: 30px;
  border-color: var(--automation-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0, rgba(114, 231, 255, .075), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, .068), rgba(255, 255, 255, .026));
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(114, 231, 255, .025) inset,
    0 0 42px rgba(114, 231, 255, .035);
}
.journey-card h3 {
  max-width: 18ch;
  margin-top: 17px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.048em;
}
.journey-now,
.journey-more { border-color: var(--automation-line); }
.journey-step {
  display: block;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid rgba(114, 231, 255, .15);
}
.journey-step h4 { font-size: 18px; line-height: 1.2; letter-spacing: -0.025em; }
.journey-step p { margin-top: 7px; color: var(--muted); font-size: 13.5px; line-height: 1.52; }
.journey-transition { display: none; }
.journey-bridge { display: none; color: #9eb9c1; }
.process-strip {
  display: grid;
  grid-template-columns: repeat(7, auto);
  justify-content: center;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 17px 22px;
  border-top: 1px solid rgba(114, 231, 255, .17);
  border-bottom: 1px solid rgba(114, 231, 255, .17);
  background: linear-gradient(90deg, transparent, rgba(114, 231, 255, .025), transparent);
  color: #bcc7ca;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.process-strip i { color: var(--automation-accent); font-style: normal; }

/* Proof of Value */
.pov-section { background: transparent; }
.pov-section::before { background: none !important; }
.pov-section .section-head { margin-bottom: 40px; }
.pov-phase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
  color: #a8b4b8;
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.pov-phase-row span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  white-space: nowrap;
}
.pov-phase-row span::before {
  content: "";
  width: 18px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(86,245,107,.72);
}
.pov-phase-row span::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: rgba(255,255,255,.12);
}
.proof-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  min-height: 580px;
  padding: 22px 0;
}
.proof-axis {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255,255,255,.16);
}
.proof-step {
  position: relative;
  align-self: start;
  min-height: 228px;
  padding: 22px;
  border-color: rgba(255,255,255,.14);
  border-radius: 25px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  box-shadow: none;
}
.proof-step-bottom { align-self: end; }
.proof-step::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 55px;
  background: rgba(255,255,255,.18);
}
.proof-step-top::after { top: 100%; }
.proof-step-bottom::after { bottom: 100%; }
.proof-node {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(86,245,107,.32);
  border-radius: 50%;
  color: var(--green);
  background: #08100b;
  box-shadow: none;
  font-size: 10px;
  font-weight: 850;
}
.proof-step-top .proof-node { top: calc(100% + 38px); }
.proof-step-bottom .proof-node { bottom: calc(100% + 38px); }
.proof-step h3 {
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.proof-step > p:last-child { margin-top: 10px; color: var(--muted); font-size: 13.5px; line-height: 1.52; }


/* Next step */
.next-step-section {
  padding-top: 135px;
  padding-bottom: 138px;
  background:
    radial-gradient(circle at 13% 52%, rgba(86,245,107,.065), transparent 29rem),
    linear-gradient(180deg, transparent, rgba(255,255,255,.012));
}
.next-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 90px;
  align-items: start;
}
.next-step-copy h2 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: clamp(56px, 6vw, 84px);
  line-height: .94;
  letter-spacing: -0.065em;
}
.next-step-copy > p:not(.eyebrow):not(.contact-microcopy) {
  max-width: 56ch;
  margin-top: 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}
.contact-trust {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.contact-trust p { color: #9dabb0; font-size: 13px; line-height: 1.55; }
.contact-button {
  min-height: 64px;
  margin-top: 30px;
  padding: 18px 31px;
  font-size: 16px;
  letter-spacing: -0.015em;
  box-shadow: 0 22px 64px rgba(86,245,107,.24);
}
.contact-button span { font-size: 19px; line-height: 1; }
.contact-microcopy { margin-top: 11px; color: var(--muted-2); font-size: 11px; letter-spacing: .03em; }
.first-call {
  margin-top: 25px;
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.first-call > article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-soft);
}
.first-call > article:last-child { border-bottom: 0; }
.first-call > article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(86,245,107,.32);
  border-radius: 11px;
  color: var(--green);
  background: rgba(86,245,107,.055);
  font-size: 10px;
  font-weight: 850;
}
.first-call h3 { font-size: 21px; line-height: 1.12; letter-spacing: -0.032em; }
.first-call p { margin-top: 7px; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Footer */
.site-footer { padding: 34px 0 38px; border-top: 1px solid var(--line-soft); background: #030508; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 13px; color: #95a1a5; font-size: 12px; }
.footer-brand img { width: 125px; height: auto; opacity: .78; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 17px; }
.footer-links a { color: #8f9ca1; font-size: 12px; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.mobile-sticky-cta { display: none; }

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .68s ease, transform .68s cubic-bezier(.2,.8,.2,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  .site-nav { width: min(calc(100% - 28px), 1120px); }
  .nav-panel { gap: 2px; }
  .nav-panel > a { padding-inline: 8px; font-size: 12px; }
  .hero-grid { gap: 42px; grid-template-columns: minmax(0, 1fr) minmax(350px, .72fr); }
  .hero-copy h1 { font-size: clamp(58px, 8vw, 86px); }
  .value-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-card { min-height: 315px; }
  .implementation-map-desktop { display: none; }
  .implementation-map-mobile { display: grid; max-width: 760px; gap: 12px; margin-inline: auto; }
  .implementation-map-mobile > *,
  .implementation-map-mobile .flow-node,
  .implementation-map-mobile .node-twin,
  .implementation-map-mobile .node-use,
  .implementation-map-mobile .return-loop {
    grid-column: auto;
    grid-row: auto;
  }
  .implementation-map-mobile .flow-node { min-height: auto; }
  .mobile-phase { margin: 18px 0 2px; }
  .mobile-flow-arrow { justify-self: center; color: var(--cyan); font-size: 18px; }
  .mobile-branch-grid { display: grid; gap: 12px; }
  .mobile-or { justify-self: center; color: var(--muted-2); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .implementation-map-mobile .return-loop { margin-top: 2px; }
  .featured-workflows { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .featured-third { grid-column: 1 / -1; max-width: calc(50% - 9px); }
  .capture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capture-loop-card { min-height: 100%; }
  .proof-timeline { min-height: 650px; }
  .proof-step { padding: 19px; }
  .next-step-grid { gap: 58px; }
}

@media (max-width: 1040px) {
  :root { --nav-height: 68px; }
  .site-nav { top: 12px; }
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 1px; background: #fff; transition: transform .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(6,9,14,.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }
  .nav-panel.is-open { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 5px; }
  .nav-panel > a { padding: 12px 13px; font-size: 13px; }
  .nav-panel .nav-cta { margin: 4px 0 0; grid-column: 1 / -1; text-align: center; }
  .hero { min-height: auto; }
  .hero-inner { min-height: 1000px; align-items: start; padding-top: 150px; padding-bottom: 80px; }
  .hero-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .hero-copy h1 { max-width: 10.5ch; }
  .hero-preview { max-width: 760px; }
  .hero-preview-media { aspect-ratio: 16 / 7.5; background-position: center 55%; }
  .hero-preview-copy { display: none; }
  .scroll-cue { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .section-head h2 { max-width: 15ch; }
  .section-head > p { max-width: 66ch; }
  .platform-pair { grid-template-columns: 1fr; }
  .platform-card { min-height: auto; }
  .data-principle { grid-template-columns: 1fr; gap: 18px; }
  .delivery-model { grid-template-columns: 1fr; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.024); }
  .delivery-model article { min-height: auto; border: 0; border-bottom: 1px solid var(--line-soft); border-radius: 0; background: transparent; box-shadow: none; }
  .delivery-model article:last-child { border-bottom: 0; }
  .capture-spectrum { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .capture-spectrum article:nth-child(2) { border-right: 0; }
  .capture-spectrum article:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .capture-spectrum::before { display: none; }
  .journey-card { min-height: auto; }
  .proof-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: auto; gap: 18px; margin-top: 42px; padding: 0; }
  .proof-axis { display: none; }
  .proof-step,
  .proof-step-bottom { align-self: stretch; min-height: 240px; }
  .proof-step::after,
  .proof-node { display: none; }
  .pov-phase-row { display: none; }
  .proof-timeline::after {
    content: "Fast start with available data";
    position: absolute;
    top: -34px;
    right: 0;
    left: 0;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: #a8b4b8;
    font-size: 10px;
    font-weight: 840;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .proof-step-phase-break,
  .proof-step-phase-break + .proof-step { margin-top: 42px; }
  .proof-step-phase-break::after {
    content: "Validate value & decide next step";
    display: block;
    position: absolute;
    top: -35px;
    left: 0;
    width: calc(200% + 18px);
    height: auto;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: none;
    color: #a8b4b8;
    font-size: 10px;
    font-weight: 840;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .next-step-grid { grid-template-columns: 1fr; gap: 64px; }
  .first-call { max-width: 720px; margin-top: 0; padding-top: 32px; padding-left: 0; border-left: 0; border-top: 1px solid var(--line-soft); }
}

@media (max-width: 720px) {
  :root {
    --radius-xl: 27px;
    --radius-lg: 23px;
    --radius-md: 18px;
  }
  html { scroll-padding-top: 78px; }
  body { font-size: 15px; }
  .container,
  .container-wide { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 88px 0; }
  .site-nav { width: calc(100% - 20px); padding-left: 10px; padding-right: 10px; border-radius: 20px; }
  .brand-icon { width: 34px; height: 34px; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 9px; }
  .nav-panel.is-open { grid-template-columns: 1fr; max-height: calc(100svh - 104px); overflow-y: auto; }
  .nav-panel .nav-cta { grid-column: auto; }
  .hero {
    min-height: 810px;
    background-image: url("assets/hero_spawnlink_poster_mobile_v2.webp");
    background-position: center;
  }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(4,7,11,.94), rgba(4,7,11,.57) 88%),
      linear-gradient(180deg, rgba(4,7,11,.24), rgba(4,7,11,.16) 45%, #05070b 100%);
  }
  .hero-media { display: block; }
  .hero-video { object-position: 58% 50%; }
  .hero-inner { min-height: 810px; padding-top: 132px; padding-bottom: 72px; align-items: center; }
  .hero-grid { display: block; }
  .hero-copy h1 { max-width: 9.3ch; margin-top: 16px; font-size: clamp(49px, 14.5vw, 66px); line-height: .92; }
  .hero-lead { margin-top: 22px; font-size: 15px; line-height: 1.58; }
  .hero-actions { margin-top: 25px; }
  .hero-actions .button { width: 100%; }
  .trust-note { font-size: 12px; }
  .hero-preview { display: none; }
  .section-head { margin-bottom: 34px; }
  .section-head h2 { margin-top: 13px; font-size: clamp(37px, 11.5vw, 54px); line-height: .99; }
  .section-head > p { font-size: 15px; line-height: 1.62; }
  .platform-overview { padding-top: 96px; }
  .platform-card { padding: 24px; border-radius: 26px; }
  .platform-card::before { left: 24px; right: 24px; }
  .platform-card h3 { font-size: 35px; }
  .platform-card > p:not(.card-label) { font-size: 14.5px; }
  .data-principle { padding: 23px 5px; background: transparent; }
  .data-principle-title span { font-size: 25px; }
  .data-principle > p { font-size: 14px; }
  .value-wall { grid-template-columns: 1fr; gap: 14px; }
  .value-card { min-height: 255px; padding: 24px; }
  .value-card h3 { font-size: 29px; }
  .value-card > p:not(.card-label) { font-size: 14px; }
  .value-note { margin-top: 22px; text-align: left; }
  .implementation-map-mobile { gap: 10px; }
  .implementation-map-mobile .flow-node { padding: 22px; border-radius: 23px; }
  .flow-node h3 { font-size: 24px; }
  .mobile-phase { margin-top: 20px; }
  .delivery-model { margin-bottom: 38px; }
  .delivery-model article { padding: 21px; }
  .delivery-model h3 { font-size: 22px; }
  .subsection-heading { align-items: start; flex-direction: column; margin-bottom: 15px; }
  .subsection-heading p,
  .capture-group-head p { font-size: 23px; }
  .featured-workflows { grid-template-columns: 1fr; }
  .featured-workflow .media-card-body { min-height: auto; }
  .featured-workflow .media-card-body h3 { font-size: 27px; }
  .featured-third { display: none; }
  .library-head { align-items: start; margin-top: 42px; }
  .library-controls, .filter-row { display: none; }
  .mobile-reachability { display: block; }
  .library-card { flex-basis: 84vw; max-width: 360px; }
  .library-card .media-card-body { min-height: 220px; }
  .horizontal-rail { margin-right: -14px; padding-right: 14px; }
  .swipe-hint { display: block; margin-top: -3px; color: var(--muted-2); font-size: 12px; }
  .capture-spectrum {
    grid-auto-flow: column;
    grid-auto-columns: minmax(178px, 72vw);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border-radius: 23px;
    scrollbar-width: none;
  }
  .capture-spectrum::-webkit-scrollbar { display: none; }
  .capture-spectrum article { min-height: 138px; border-right: 1px solid var(--line-soft) !important; border-bottom: 0 !important; scroll-snap-align: start; }
  .capture-group-head { align-items: start; flex-direction: column; margin-bottom: 14px; }
  .capture-grid { display: block; }
  .capture-card { margin-bottom: 14px; }
  .capture-card .media-card-body { min-height: auto; }
  .capture-group-one .capture-card[data-capture-id="3"],
  .capture-group-two .capture-card[data-capture-id="4"],
  .capture-group-two .capture-card[data-capture-id="5"] { display: none; }
  .capture-group-two { margin-top: 16px !important; }
  .capture-group-two .capture-group-head { display: none; }
  .capture-mobile-rail-wrap { display: block; margin-top: 39px; }
  .capture-mobile-rail .capture-card { flex: 0 0 84vw; max-width: 360px; margin-bottom: 0; scroll-snap-align: start; }
  .capture-loop-card { min-height: auto; }
  .journey-pair { grid-template-columns: 1fr; gap: 18px; }
  .journey-card { padding: 24px; border-radius: 26px; }
  .journey-card h3 { font-size: 30px; }
  .journey-bridge { display: block; margin: 0 auto; max-width: 310px; color: var(--muted-2); font-size: 12px; line-height: 1.55; text-align: center; }
  .journey-bridge::before { content: none; }
  .process-strip {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 9px;
    padding-inline: 0;
  }
  .process-strip i { transform: rotate(90deg); margin-left: 30px; }
  .proof-timeline { grid-template-columns: 1fr; gap: 14px; margin-top: 14px; padding-left: 24px; }
  .proof-timeline::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 7px;
    width: 1px;
    background: rgba(255,255,255,.16);
  }
  .proof-step,
  .proof-step-bottom { min-height: auto; padding: 22px; }
  .proof-step::before {
    content: "";
    position: absolute;
    top: 28px;
    left: -22px;
    width: 11px;
    height: 11px;
    border: 2px solid #05070b;
    border-radius: 50%;
    background: var(--green);
    box-shadow: none;
  }
  .proof-step-phase-break { margin-top: 58px; }
  .proof-step-phase-break + .proof-step { margin-top: 0; }
  .proof-step-phase-break::after {
    content: "Validate value & decide next step";
    display: block;
    position: absolute;
    top: -46px;
    left: -24px;
    width: calc(100% + 24px);
    height: auto;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: none;
    color: #a8b4b8;
    font-size: 10px;
    font-weight: 840;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .proof-timeline::after {
    content: "Fast start with available data";
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: #a8b4b8;
    font-size: 10px;
    font-weight: 840;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .next-step-section { padding-top: 96px; padding-bottom: 108px; }
  .next-step-grid { gap: 48px; }
  .next-step-copy h2 { font-size: 54px; }
  .next-step-copy > p:not(.eyebrow):not(.contact-microcopy) { font-size: 15px; }
  .contact-button { width: 100%; }
  .first-call > article { grid-template-columns: 36px 1fr; padding: 22px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .site-footer { padding-bottom: 96px; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 24;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(86,245,107,.55);
    border-radius: 999px;
    color: #041007;
    background: var(--green);
    box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 35px rgba(86,245,107,.18);
    font-size: 13px;
    font-weight: 880;
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-sticky-cta.is-hidden { opacity: 0; transform: translateY(90px); pointer-events: none; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 50px; }
  .section-head h2 { font-size: 40px; }
  .platform-card h3 { font-size: 32px; }
  .value-card h3 { font-size: 27px; }
  .next-step-copy h2 { font-size: 49px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Final responsive corrections */
@media (max-width: 1180px) {
  .implementation-map-mobile > *,
  .implementation-map-mobile .flow-node,
  .implementation-map-mobile .return-loop,
  .implementation-map-mobile .node-twin,
  .implementation-map-mobile .node-use,
  .implementation-map-mobile .node-capture {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 720px) {
  .capture-spectrum {
    grid-template-columns: repeat(4, minmax(178px, 72vw));
    grid-auto-flow: row;
  }
  .capture-loop-mobile-slot { margin-top: 14px; }
  .capture-group-two:not(:has(.capture-card)) { display: none; }
}

/* Implementation flow polish v37.2 */
.implementation-map-desktop {
  grid-template-rows: auto auto 104px auto auto;
}
.flow-phase {
  min-height: 38px;
  padding-left: 0;
}
.flow-phase span { display: none; }
.phase-base { grid-column: 1 / 8; grid-row: 1; }
.phase-enrich { grid-column: 9 / 13; grid-row: 1; }
.implementation-map-desktop .flow-node,
.implementation-map-mobile .flow-node {
  border-color: rgba(86,245,107,.27);
  background:
    radial-gradient(circle at 50% 0%, rgba(86,245,107,.12), transparent 14rem),
    linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.03));
  box-shadow: 0 28px 90px rgba(0,0,0,.35), 0 0 42px rgba(86,245,107,.055);
}
.implementation-map-desktop .node-twin,
.implementation-map-desktop .node-use,
.implementation-map-mobile .node-twin,
.implementation-map-mobile .node-use,
.implementation-map-mobile .node-capture {
  border-color: rgba(86,245,107,.27);
  background:
    radial-gradient(circle at 50% 0%, rgba(86,245,107,.12), transparent 14rem),
    linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.03));
  box-shadow: 0 28px 90px rgba(0,0,0,.35), 0 0 42px rgba(86,245,107,.055);
}
.flow-arrow {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 1;
  color: transparent;
}
.flow-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  background: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8h9M9 4.6L12.4 8 9 11.4' fill='none' stroke='%2372e7ff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.arrow-down::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.arrow-one { grid-column: 4; grid-row: 2; align-self: center; }
.arrow-two { grid-column: 8; grid-row: 2; align-self: center; }
.decision-branch {
  grid-column: 9 / 13;
  grid-row: 3;
  min-height: 104px;
}
.decision-branch::before {
  top: -18px;
  left: 50%;
  height: 42px;
}
.decision-branch::after {
  top: 23px;
  left: -103%;
  right: 0;
}
.branch-option {
  top: 18px;
  bottom: 12px;
}
.branch-option-use { left: -78%; }
.branch-option-gap { left: 50%; }
.node-use {
  grid-column: 5 / 8;
  grid-row: 4;
  align-self: start;
  min-height: 205px;
}
.capture-branch {
  grid-column: 9 / 13;
  grid-row: 4 / 6;
  align-self: start;
}
.capture-branch .node-capture {
  align-self: start;
}
.capture-branch .flow-node { min-height: 205px; }
.return-loop { grid-column: 5 / 8; }
.mobile-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  justify-self: center;
  border: 1px solid rgba(114,231,255,.24);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(114,231,255,.07);
  font-size: 0 !important;
}
.mobile-flow-arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}
.mobile-phase {
  color: #b7c3c7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Navigation and Spatial Data Capture polish v37.5 */
.site-nav {
  position: fixed;
  z-index: 80;
}

/* ConVis stays green; Spatial Data Capture stays blue. */
.platform-card {
  border-color: color-mix(in srgb, var(--card-accent) 34%, transparent);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px color-mix(in srgb, var(--card-accent) 5%, transparent) inset,
    0 0 46px color-mix(in srgb, var(--card-accent) 4%, transparent);
}
.platform-card .card-label { color: var(--card-accent); }
.data-principle {
  border-top: 1px solid transparent;
  border-top-color: transparent;
  background:
    linear-gradient(#05070b, #05070b) padding-box,
    linear-gradient(90deg, rgba(86,245,107,.55), rgba(114,231,255,.55)) border-box;
}
.data-principle-title span:last-child { color: var(--cyan); }

.capture-section {
  --capture-accent: var(--cyan);
  --capture-accent-soft: rgba(114,231,255,.12);
  --capture-line: rgba(114,231,255,.27);
}
.capture-section .eyebrow,
.capture-section .phase-badge,
.capture-section .subsection-kicker { color: var(--capture-accent); }

/* Static, uniformly treated phase rail. The global navigation is the sticky element. */
.capture-spectrum {
  position: relative;
  top: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  overflow: hidden;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(114,231,255,.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10,18,24,.96), rgba(7,13,18,.96));
  box-shadow: 0 18px 48px rgba(0,0,0,.24), 0 0 0 1px rgba(114,231,255,.025) inset;
  isolation: isolate;
}
.capture-spectrum::before { display: none; }
.capture-spectrum article {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-content: center;
  min-height: 76px;
  padding: 12px 14px;
  border: 1px solid rgba(114,231,255,.14) !important;
  border-radius: 17px;
  background: rgba(114,231,255,.028);
  box-shadow: none;
}
.capture-spectrum article > span {
  grid-row: 1 / 3;
  align-self: center;
  width: 36px;
  height: 36px;
  border-color: rgba(114,231,255,.34);
  border-radius: 11px;
  color: var(--capture-accent);
  background: rgba(8,25,33,.72);
  box-shadow: none;
  font-size: 10px;
}
.capture-spectrum strong {
  align-self: end;
  margin: 0;
  font-size: 14px;
  line-height: 1.12;
  letter-spacing: -.018em;
}
.capture-spectrum p {
  align-self: start;
  margin: 3px 0 0;
  font-size: 10.5px;
  line-height: 1.28;
}

/* Both capture groups receive identical vertical spacing. */
.capture-group-one,
.capture-group-two,
.capture-group + .capture-group { margin-top: 58px; }
.capture-group-head { margin-bottom: 22px; }

/* Responsive source crops keep focal subjects stable between desktop and mobile. */
.capture-card > picture {
  display: block;
  flex: 0 0 auto;
  width: 100%;
}

/* Consistent, compact capture cards, including the update-loop placeholder. */
.capture-grid {
  align-items: stretch;
  grid-auto-rows: auto;
}
.capture-card {
  display: flex;
  height: auto;
  flex-direction: column;
  border-color: rgba(114,231,255,.23);
  background:
    radial-gradient(circle at 50% 0, rgba(114,231,255,.045), transparent 13rem),
    linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.023));
  box-shadow: var(--shadow-soft), 0 0 34px rgba(114,231,255,.03);
}
.capture-card img {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.65;
  object-fit: cover;
  border-bottom-color: rgba(114,231,255,.14);
}
.capture-card .media-card-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 17px 19px 18px;
}
.capture-card .media-card-body h3 {
  margin-top: 9px;
  font-size: 22px;
  line-height: 1.08;
}
.capture-card .media-card-body > p:last-child {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.48;
}
.capture-card .phase-badge {
  color: var(--capture-accent);
  font-size: 10px;
  letter-spacing: .105em;
}
.capture-loop-mobile-slot { display: none !important; }

@media (max-width: 1100px) {
  .capture-spectrum {
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 42vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .capture-spectrum::-webkit-scrollbar { display: none; }
  .capture-spectrum article {
    min-height: 78px;
    scroll-snap-align: start;
  }
}

@media (max-width: 720px) {
  .capture-spectrum {
    top: auto;
    grid-auto-columns: minmax(215px, 64vw);
    margin: 0;
    padding: 6px;
    border-radius: 22px;
  }
  .capture-spectrum article {
    min-height: 82px;
    padding: 11px 12px;
    border-radius: 16px;
  }
  .capture-spectrum strong { font-size: 14px; }
  .capture-spectrum p { font-size: 10px; }
  .capture-group-one { margin-top: 38px; }
  .capture-group-two { margin-top: 18px; }
  .capture-card .media-card-body { padding: 18px 19px 20px; }
  .capture-card .media-card-body h3 { font-size: 25px; }
  .capture-card .media-card-body > p:last-child {
    font-size: 14px;
    line-height: 1.55;
  }
  .capture-mobile-rail .capture-card {
    display: flex;
    height: auto;
  }
  .capture-mobile-rail .capture-card img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* v37.6 — keep the complete card outline equally visible over photos and dark placeholder artwork. */
.capture-card {
  position: relative;
  border-color: transparent;
}
.capture-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(114, 231, 255, .27);
  border-radius: inherit;
  pointer-events: none;
}
.capture-card:hover::after {
  border-color: rgba(114, 231, 255, .38);
}


/* v37.7 — Workflows & automations polish */
.workflows-section {
  --workflow-accent: var(--green);
  --workflow-line: rgba(86, 245, 107, .28);
}

/* Featured and Explore use one clear, equal subsection hierarchy. */
.workflows-section .workflow-subsection-title {
  margin: 0;
  color: var(--workflow-accent);
  font-size: 26px;
  font-weight: 820;
  letter-spacing: -.035em;
  line-height: 1.12;
  text-transform: none;
}
.workflows-section .workflow-subsection-heading {
  align-items: center;
  margin-bottom: 18px;
}

/* A complete green frame remains visible across bright and dark footage. */
.workflows-section .featured-workflow,
.workflows-section .library-card {
  position: relative;
  border-color: transparent;
  background:
    radial-gradient(circle at 50% 0, rgba(86, 245, 107, .04), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, .062), rgba(255, 255, 255, .023));
  box-shadow: var(--shadow-soft), 0 0 34px rgba(86, 245, 107, .025);
}
.workflows-section .featured-workflow::after,
.workflows-section .library-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid var(--workflow-line);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.workflows-section .featured-workflow:hover::after,
.workflows-section .library-card:hover::after {
  border-color: rgba(86, 245, 107, .42);
  box-shadow: 0 0 28px rgba(86, 245, 107, .04) inset;
}
.workflows-section .featured-workflow img,
.workflows-section .library-card img {
  border-bottom-color: rgba(86, 245, 107, .14);
}

/* Inactive filters remain clearly visible without competing with the selection. */
.workflows-section .filter-chip {
  padding: 10px 15px;
  border-color: rgba(255, 255, 255, .17);
  color: #c9d2d5;
  background: rgba(255, 255, 255, .058);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .025) inset;
  font-size: 12.5px;
}
.workflows-section .filter-chip:not(.is-active):hover {
  border-color: rgba(86, 245, 107, .34);
  color: #f5fff6;
  background: rgba(86, 245, 107, .075);
}
.workflows-section .filter-chip.is-active {
  border-color: rgba(86, 245, 107, .74);
  color: #061008;
  background: var(--workflow-accent);
  box-shadow: 0 8px 24px rgba(86, 245, 107, .12);
}

/* Previous / next controls use the ConVis workflow accent. */
.workflows-section .rail-button {
  display: inline-grid;
  place-items: center;
  border-color: rgba(86, 245, 107, .26);
  color: var(--workflow-accent);
  background: rgba(86, 245, 107, .055);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.workflows-section .rail-button:hover {
  border-color: rgba(86, 245, 107, .44);
  color: #8cff98;
  background: rgba(86, 245, 107, .10);
}

@media (max-width: 720px) {
  .workflows-section .workflow-subsection-title { font-size: 23px; }
}


/* v37.12 — navigation, platform, Next Step and hierarchy polish */

/* Clearer navigation labels are handled in the markup; IDs remain stable. */

/* Remove the decorative colour glow from ConVis + Spatial Data Capture. */
.platform-overview .platform-card::after {
  content: none;
  display: none;
}
.platform-overview .platform-card {
  box-shadow:
    0 24px 70px rgba(0,0,0,.30),
    0 0 0 1px color-mix(in srgb, var(--card-accent) 5%, transparent) inset;
}

/* Keep the data principle typographically coherent and intentionally green. */
.platform-overview .data-principle-title span:last-child {
  color: var(--green);
}

/* The phase cues use one solid, constant-width line rather than a tapered gradient. */
.implementation-section .flow-phase::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: none;
  opacity: .82;
}

/* Capture group labels stand alone after removing redundant support copy. */
.capture-section .capture-group-head {
  justify-content: flex-start;
}

/* Prevent descenders and capitals from colliding in the large Next Step title. */
.next-step-copy h2 {
  line-height: 1.01;
  letter-spacing: -0.058em;
}

/* Align the right-hand call outline to the top of the white headline, not the eyebrow. */
@media (min-width: 1101px) {
  .first-call {
    margin-top: 29px;
  }
}


/* v37.16 — Featured workflow sizing and final Planning / VR crops */
/* Restore the established RF Coverage image height across all three featured cards. */
.workflows-section .featured-workflow {
  display: flex;
  flex-direction: column;
}
.workflows-section .featured-workflow picture {
  display: block;
  flex: 0 0 506px;
  overflow: hidden;
  height: 506px;
  aspect-ratio: auto;
}
.workflows-section .featured-workflow picture > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.workflows-section .featured-workflow .media-card-body {
  flex: 1 1 auto;
}
/* The live VR proof is intentionally composed around the person and controllers. */
.workflows-section .workflow-vr-image {
  object-position: left center;
}

/* v37.17 — Spatial Data Capture phase cards + flat automation panels */
/* The four capture phases use the same restrained panel language as the
   Capture Automation Path, while retaining their compact footprint. */
.capture-section .capture-spectrum {
  gap: 12px;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.capture-section .capture-spectrum article {
  min-height: 82px;
  padding: 13px 15px;
  border: 1px solid rgba(114, 231, 255, .24) !important;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .064), rgba(255, 255, 255, .026));
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(114, 231, 255, .018) inset;
}
.capture-section .capture-spectrum article > span {
  border-color: rgba(114, 231, 255, .30);
  background: rgba(8, 20, 27, .72);
  box-shadow: none;
}

/* Remove the spotlight-like highlight from both journey panels. */
.automation-section .journey-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .064), rgba(255, 255, 255, .026));
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(114, 231, 255, .018) inset;
}

@media (max-width: 1100px) {
  .capture-section .capture-spectrum {
    overflow-x: auto;
    padding: 2px 2px 10px;
  }
}

/* v37.18 — final asset integration, mobile workflow hierarchy and alignment polish */
@media (min-width: 1101px) {
  /* The right-column heading starts on the same baseline as the white CTA heading. */
  .first-call {
    margin-top: 32.4px;
  }
}

@media (max-width: 720px) {
  /* Reachability belongs only to the Explore rail on mobile. The stronger selector
     intentionally overrides the later shared featured-card flex declaration. */
  .workflows-section .featured-workflow.featured-third {
    display: none !important;
  }

  /* Center the compact capture-automation sequence as one deliberate mobile unit. */
  .automation-section .process-strip {
    width: min(100%, 320px);
    margin-inline: auto;
    justify-items: center;
    text-align: center;
  }
  .automation-section .process-strip i {
    margin-left: 0;
  }
}


/* WordPress front-end integration. */
body.admin-bar .site-nav { top: 50px; }
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 58px; }
}

/* Custom workflow cards created in the ConVis block editor. */
.workflow-custom-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  color: rgba(255,255,255,.46);
  background:
    linear-gradient(135deg, rgba(86,245,107,.09), rgba(114,231,255,.06)),
    #091018;
  border-bottom: 1px solid rgba(86,245,107,.2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
