:root {
  --paper: #f4f0e6;
  --paper-2: #fffdf7;
  --ink: #161916;
  --ink-soft: #575b54;
  --line: rgba(22, 25, 22, 0.18);
  --acid: #d8ff55;
  --cobalt: #3157ff;
  --parent-accent: #ff6f4a;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 22px 70px rgba(22, 25, 22, 0.12);
  --max: 1180px;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-mono: "DM Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.speed-theme {
  --paper: #f7f7f4;
  --paper-2: #ffffff;
  --ink: #0a0c10;
  --ink-soft: #555b65;
  --line: rgba(10, 12, 16, 0.16);
  --acid: #ffb020;
  --cobalt: #136ef6;
  --parent-accent: #008080;
  background-image:
    radial-gradient(circle at 88% 8%, rgba(19, 110, 246, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0, #f7f7f4 38%, #f2f5f5 100%);
}

body.syn-theme {
  --paper: #f4f6fb;
  --paper-2: #ffffff;
  --ink: #101e42;
  --ink-soft: #596985;
  --line: rgba(16, 30, 66, 0.17);
  --acid: #ff6b35;
  --cobalt: #2bae66;
  --parent-accent: #ffb020;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(43, 174, 102, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 107, 53, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0, #f4f6fb 50%, #edf2f8 100%);
}

body.security-theme {
  --paper: #eef3f0;
  --paper-2: #fbfdfc;
  --ink: #10211a;
  --ink-soft: #53665d;
  --line: rgba(16, 33, 26, 0.17);
  --acid: #b7f55d;
  --cobalt: #0c7a64;
  --parent-accent: #ff7a59;
}

body.pilot-theme {
  --paper: #eee9ff;
  --paper-2: #faf8ff;
  --ink: #21183d;
  --ink-soft: #675e7e;
  --line: rgba(33, 24, 61, 0.16);
  --acid: #d6ff57;
  --cobalt: #5231d7;
  --parent-accent: #ff7058;
}

::selection {
  background: var(--acid);
  color: #111;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 20px;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: -6px;
  bottom: -4px;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  font-weight: 750;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

main {
  overflow: hidden;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 74px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 0.77rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 8px;
  background: var(--acid);
  border: 2px solid currentColor;
  border-radius: 99px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 8vw, 7.8rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  margin-bottom: 26px;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  margin-bottom: 16px;
}

.lede {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.microcopy {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 750;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 5px 5px 0 color-mix(in srgb, var(--ink) 24%, transparent);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 color-mix(in srgb, var(--ink) 24%, transparent);
}

.button:active {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 color-mix(in srgb, var(--ink) 24%, transparent);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--paper-2);
}

.hero-stage {
  min-height: 520px;
  position: relative;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 0 3% 8%;
  z-index: -2;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--acid);
  transform: rotate(3deg);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 3% 8% 10% 0;
  z-index: -1;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  transform: rotate(-2deg);
}

.route-map {
  position: absolute;
  inset: 7% 8% 8%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: color-mix(in srgb, var(--paper-2) 92%, transparent);
  box-shadow: var(--shadow);
}

.route-header,
.route-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.route-led {
  display: flex;
  gap: 7px;
}

.route-led span {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.route-led span:first-child {
  background: var(--parent-accent);
}

.route-led span:nth-child(2) {
  background: var(--acid);
}

.route-led span:last-child {
  background: var(--cobalt);
}

.route-body {
  display: grid;
  align-content: center;
  gap: 12px;
}

.mail-card {
  position: relative;
  padding: 17px 18px 18px 50px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper-2);
  font-size: 0.9rem;
  font-weight: 760;
  transform: rotate(var(--tilt, 0deg));
}

.mail-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 20px;
  height: 16px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background:
    linear-gradient(145deg, transparent 48%, var(--ink) 49%, var(--ink) 54%, transparent 55%),
    linear-gradient(215deg, transparent 48%, var(--ink) 49%, var(--ink) 54%, transparent 55%);
}

.mail-card small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-weight: 650;
}

.state-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.state-pill {
  padding: 10px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.state-pill.active {
  background: var(--acid);
  color: #111;
}

.route-dot {
  position: absolute;
  left: 22%;
  top: 38%;
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--parent-accent);
  animation: route 4.6s ease-in-out infinite;
}

@keyframes route {
  0%, 14% { transform: translate(0, 0); }
  38%, 48% { transform: translate(180px, 45px); }
  70%, 78% { transform: translate(55px, 165px); }
  100% { transform: translate(0, 0); }
}

.marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  background: var(--acid);
  color: #111;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 32px;
  padding: 14px 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 32px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 54px;
}

.section-heading p {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.kicker-number {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

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

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

.card {
  position: relative;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper-2);
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--ink) 14%, transparent);
}

.card p:last-child {
  margin-bottom: 0;
}

.card-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  color: #111;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 900;
}

.card p {
  color: var(--ink-soft);
}

.statement {
  padding: clamp(44px, 8vw, 100px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.statement h2 {
  max-width: 15ch;
  margin-right: auto;
  margin-left: auto;
}

.statement p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: color-mix(in srgb, var(--paper) 74%, transparent);
  font-size: 1.2rem;
}

.statement .button {
  background: var(--acid);
  color: #111;
  border-color: var(--paper);
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--paper) 36%, transparent);
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
}

.split-panel > * {
  padding: clamp(30px, 6vw, 70px);
}

.split-panel > * + * {
  border-left: 2px solid var(--ink);
}

.face-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: transform 180ms ease;
}

.face-card:hover {
  transform: translateY(-5px);
}

.face-card.speed-face {
  background: #e9f1ff;
  color: #0a0c10;
}

.face-card.syn-face {
  background: #eef4fb;
  color: #101e42;
}

.face-card.speed-face .tape {
  background: #ffb020;
}

.face-card.syn-face .tape {
  background: #ff6b35;
  color: #101e42;
}

.face-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.face-arrow {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.4rem;
}

.face-card p {
  max-width: 480px;
  font-size: 1.05rem;
  opacity: 0.78;
}

.tape {
  display: inline-block;
  padding: 5px 10px;
  background: var(--acid);
  color: #111;
  transform: rotate(-2deg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.loop {
  display: grid;
  grid-template-columns: 1fr 62px 1fr 62px 1fr;
  gap: 10px;
  align-items: stretch;
}

.loop-step {
  min-height: 210px;
  padding: 25px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper-2);
}

.loop-step strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.loop-arrow {
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-weight: 900;
}

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

.story {
  display: grid;
  grid-template-columns: 0.35fr 1fr 1fr 1fr;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper-2);
}

.story > * {
  padding: 24px;
}

.story > * + * {
  border-left: 1px solid var(--line);
}

.story-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.story b {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.never-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.never-list li {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper-2);
  font-weight: 780;
}

.never-list li::before {
  content: "×";
  flex: 0 0 auto;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--parent-accent);
  color: #111;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.price-box {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 36px;
  align-items: center;
  padding: clamp(34px, 7vw, 80px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--acid);
  color: #111;
}

.price-box p {
  max-width: 670px;
}

.price-note {
  padding: 26px;
  border: 2px solid #111;
  border-radius: 20px;
  background: rgba(255,255,255,0.54);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.6;
}

.price-note strong {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper-2);
}

summary {
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  font-weight: 820;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 820px;
  padding: 0 22px 22px;
  margin: 0;
  color: var(--ink-soft);
}

.status-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.status-note::before {
  content: "i";
  flex: 0 0 auto;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
}

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

.security-node {
  min-height: 240px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper-2);
}

.security-node .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--acid);
  color: #111;
  font-size: 1.4rem;
}

.pilot-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  align-items: start;
}

.pilot-panel,
.form-card {
  padding: clamp(28px, 5vw, 54px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}

.pilot-panel {
  position: sticky;
  top: 105px;
}

.pilot-facts {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.pilot-facts li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pilot-facts li::before {
  content: "✓";
  flex: 0 0 auto;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  color: #111;
  font-weight: 900;
}

.field-grid {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.legend-label {
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  cursor: pointer;
  font-weight: 850;
}

.choice label small {
  color: var(--ink-soft);
  font-weight: 600;
}

.choice input:checked + label {
  background: var(--acid);
  color: #111;
  box-shadow: 4px 4px 0 var(--ink);
}

.choice input:focus-visible + label,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--cobalt);
  outline-offset: 3px;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.site-footer {
  padding: 42px 0 60px;
  border-top: 2px solid var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-weight: 750;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-meta {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
}

.center {
  text-align: center;
}

.center h1,
.center h2,
.center .lede {
  margin-right: auto;
  margin-left: auto;
}

.hide {
  display: none !important;
}



/* Coordination engine revision */
.parent-theme .hero,
.speed-theme .hero,
.syn-theme .hero {
  min-height: auto;
  padding-top: 104px;
  padding-bottom: 112px;
}

.parent-theme .hero-stage::before {
  background: #d8ff55;
}

.hero-title-wide {
  max-width: 13ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

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

.grid-4 .card {
  min-height: 360px;
}

.people-first {
  background:
    radial-gradient(circle at 20% 15%, rgba(216, 255, 85, .18), transparent 25%),
    var(--ink);
}

.asset-brand {
  gap: 12px;
}

.brand-logo {
  flex: 0 0 auto;
  object-fit: contain;
}

.speed-logo {
  width: 48px;
  height: 38px;
}

.syn-logo {
  width: 42px;
  height: 48px;
}

.branded-stage .route-map {
  z-index: 1;
}

.product-mark {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  user-select: none;
}

.speed-puma-mark {
  width: 160px;
  right: -12px;
  top: -34px;
  transform: rotate(3deg);
  filter: drop-shadow(0 14px 20px rgba(10, 12, 16, .16));
}

.syn-astronaut-mark {
  width: 132px;
  right: -18px;
  top: -58px;
  animation: astronaut-float 4.8s ease-in-out infinite;
  filter: drop-shadow(0 16px 18px rgba(16, 30, 66, .16));
}

@keyframes astronaut-float {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

.state-pill.success {
  background: var(--cobalt);
  color: #fff;
}

body.speed-theme .hero-stage::before {
  background: #136ef6;
}

body.speed-theme .hero-stage::after {
  background: #fff;
}

body.speed-theme .route-map {
  border-color: #0a0c10;
}

body.speed-theme .button {
  box-shadow: 5px 5px 0 #ffb020;
}

body.speed-theme .statement {
  background: #0a0c10;
}

body.speed-theme .marquee {
  background: #136ef6;
  color: #fff;
}

body.speed-theme .marquee-track span::after {
  color: #ffb020;
}

body.syn-theme .site-header {
  background: color-mix(in srgb, #ffffff 90%, transparent);
}

body.syn-theme .hero-stage::before {
  background: #ff6b35;
}

body.syn-theme .hero-stage::after {
  background: #ffffff;
}

body.syn-theme .route-map {
  background: rgba(255, 255, 255, .96);
}

body.syn-theme .button {
  background: #101e42;
  color: #ffffff;
  box-shadow: 5px 5px 0 #ff6b35;
}

body.syn-theme .button.secondary {
  background: transparent;
  color: #101e42;
  box-shadow: none;
}

body.syn-theme .marquee {
  background: #ff6b35;
  color: #101e42;
}

body.syn-theme .statement {
  background: #101e42;
  color: #ffffff;
}

body.syn-theme .statement p {
  color: rgba(255,255,255,.76);
}

body.syn-theme .price-box {
  background: #ffddcf;
  color: #101e42;
}

body.syn-theme .price-note {
  border-color: #101e42;
  background: rgba(255,255,255,.76);
}

body.syn-theme .never-list li::before {
  background: #ff6b35;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: var(--paper-2);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav .button {
    width: 100%;
  }

  .hero-grid,
  .section-heading,
  .price-box,
  .pilot-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 490px;
  }

  .grid-3,
  .grid-4,
  .security-diagram {
    grid-template-columns: 1fr;
  }

  .split-panel {
    grid-template-columns: 1fr;
  }

  .split-panel > * + * {
    border-left: 0;
    border-top: 2px solid var(--ink);
  }

  .loop {
    grid-template-columns: 1fr;
  }

  .loop-arrow {
    min-height: 46px;
    transform: rotate(90deg);
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story > * + * {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pilot-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .shell,
  .narrow {
    width: min(100% - 28px, var(--max));
  }

  section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-stage {
    min-height: 440px;
  }

  .route-map {
    inset: 5% 2% 7%;
    padding: 20px;
  }

  .route-dot {
    display: none;
  }

  .speed-puma-mark {
    width: 116px;
    right: -4px;
    top: -26px;
  }

  .syn-astronaut-mark {
    width: 98px;
    right: -6px;
    top: -44px;
  }

  .grid-2,
  .never-list,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .state-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@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;
  }
}


/* Supplied Speed & Co. artwork */
.company-brand {
  min-width: 0;
  line-height: 1;
}

.company-brand img {
  width: 92px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.footer-company-brand img {
  width: 132px;
  height: 116px;
}

.speed-logo {
  width: 72px;
  height: 30px;
  object-fit: contain;
}

.speed-puma-mark {
  width: 225px;
  right: -38px;
  top: -24px;
}

@media (max-width: 620px) {
  .company-brand img {
    width: 76px;
    height: 46px;
  }

  .footer-company-brand img {
    width: 112px;
    height: 96px;
  }

  .speed-logo {
    width: 58px;
    height: 26px;
  }

  .speed-puma-mark {
    width: 160px;
    right: -18px;
    top: -20px;
  }
}


/* July 2026 integration and product-brand pass */
.company-wordmark {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .06em;
  line-height: 1;
}
.company-wordmark span { color: var(--cobalt); }
.footer-wordmark { color: #fff; }
.footer-wordmark span { color: var(--acid); }
.asset-brand small {
  display: block;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.state-pill.received { background: #e8f0ff; color: #174e9b; border-color: #174e9b; }
.state-pill.alert { background: #ffe7e4; color: #8d1d16; border-color: #8d1d16; }
.state-pill.human { background: #dff7e8; color: #176b47; border-color: #176b47; }
.face-cta { display: inline-block; margin-top: 22px; font-family: var(--font-mono); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.resource-pair { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.resource-card { padding: 38px; border: 2px solid var(--ink); border-radius: var(--radius-md); background: var(--paper-2); box-shadow: 10px 10px 0 color-mix(in srgb, var(--ink) 18%, transparent); }
.resource-card h2 { font-size: clamp(2.2rem,4vw,4rem); }
.product-demo-band { background: #eaf1ff; border-top: 2px solid #0a0c10; border-bottom: 2px solid #0a0c10; }
.product-demo-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: 50px; align-items: center; }
.demo-ticket { padding: 28px; background: #fff; color: #0a0c10; border: 2px solid #0a0c10; box-shadow: 10px 10px 0 #008080; }
.demo-ticket span { display: block; margin-bottom: 10px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.demo-ticket strong { display: block; margin-bottom: 22px; font-family: var(--font-display); font-size: 1.7rem; line-height: 1.05; }
.founder-section { background: #fff; }
.founder-panel { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 36px; align-items: start; padding: 44px; border: 2px solid #0a0c10; background: #f7f7f4; box-shadow: 12px 12px 0 #136ef6; }
.founder-photo-wrap { display: flex; flex-direction: column; gap: 10px; }
.founder-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center top; border: 2px solid #0a0c10; background: #fff; }
.founder-photo-caption { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

body.speed-theme { --font-display: "Bebas Neue", "Arial Narrow", sans-serif; --font-body: "DM Sans", Arial, sans-serif; --font-mono: "DM Mono", monospace; }
body.speed-theme .site-header { background: rgba(255,255,255,.94); }
body.speed-theme .speed-hero { background: #0a0c10; color: #f3f6fb; }
body.speed-theme .speed-hero .lede, body.speed-theme .speed-hero .microcopy { color: #aeb7c8; }
body.speed-theme .speed-hero .eyebrow { color: #8fbaff; }
body.speed-theme .speed-hero .button { background: #136ef6; border-color: #136ef6; color: #fff; }
body.speed-theme .speed-hero .button.secondary { background: transparent; border-color: #f3f6fb; color: #f3f6fb; box-shadow: none; }
body.speed-theme .speed-hero .hero-stage::after { background: #fff; }
body.speed-theme .speed-hero .route-map { color: #0a0c10; }
body.speed-theme h1, body.speed-theme h2, body.speed-theme h3 { letter-spacing: .012em; font-weight: 400; }
body.speed-theme .button { border-radius: 8px; }
body.speed-theme .story-name { font-family: var(--font-display); letter-spacing: .04em; }
body.speed-theme .speed-footer { border-top: 4px solid #136ef6; }

body.syn-theme h1, body.syn-theme h2, body.syn-theme h3 { letter-spacing: -.035em; }
body.syn-theme .syn-header { background: rgba(10,18,38,.96); color: #fff; border-bottom-color: rgba(255,255,255,.15); }
body.syn-theme .syn-header .asset-brand small { color: #9eadcb; }
body.syn-theme .syn-header .nav a { color: #d9e1f1; }
body.syn-theme .syn-header .nav-toggle { color: #fff; background: #101e42; border-color: #53658c; }
body.syn-theme .syn-hero { background: #0a1226; color: #f4f6fb; position: relative; }
body.syn-theme .syn-hero::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.5; background-image: radial-gradient(circle at 15% 18%,#fff 0 1px,transparent 1.5px), radial-gradient(circle at 78% 22%,#fff 0 1px,transparent 1.5px), radial-gradient(circle at 88% 68%,#ff6b35 0 1.5px,transparent 2px); }
body.syn-theme .syn-hero .shell { position: relative; }
body.syn-theme .syn-hero .lede, body.syn-theme .syn-hero .microcopy { color: #aeb9d2; }
body.syn-theme .syn-hero .eyebrow { color: #ff8b61; }
body.syn-theme .syn-hero .button { background: #ff6b35; border-color: #ff6b35; color: #210c04; box-shadow: none; border-radius: 8px; }
body.syn-theme .syn-hero .button.secondary { background: transparent; border-color: #91a1c2; color: #fff; }
body.syn-theme .syn-hero .hero-stage::before { background: #ff6b35; }
body.syn-theme .syn-hero .route-map { color: #101e42; border-radius: 14px; }
body.syn-theme .mail-card, body.syn-theme .state-pill { border-radius: 8px; }
body.syn-theme .card, body.syn-theme .loop-step, body.syn-theme .story { border-radius: 8px; }
body.syn-theme .syn-demo-band { background: #101e42; color: #fff; border-color: #ff6b35; }
body.syn-theme .syn-demo-band p { color: #b8c3da; }
body.syn-theme .syn-demo-band .demo-ticket { border-color: #ff6b35; box-shadow: 10px 10px 0 #ff6b35; }
body.syn-theme .syn-demo-band .button { background: #ff6b35; color: #210c04; border-color: #ff6b35; box-shadow: none; }
body.syn-theme .syn-footer { border-top: 4px solid #ff6b35; }
body.syn-theme .story-name { font-family: "Space Grotesk", sans-serif; letter-spacing: -.03em; }

@media (max-width: 900px) {
  .product-demo-grid, .resource-pair { grid-template-columns: 1fr; }
  .founder-panel { grid-template-columns: 150px minmax(0,1fr); }
}
@media (max-width: 620px) {
  .company-wordmark { font-size: 1.7rem; }
  .founder-panel { grid-template-columns: 1fr; padding: 28px; }
  .founder-photo { max-width: 150px; }
  .product-demo-grid { gap: 26px; }
}

/* Keep the dark Speed mark legible over the dark hero surface. */
body.speed-theme .speed-puma-mark {
  background: #fff;
  border: 2px solid #0a0c10;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 8px 8px 0 rgba(19, 110, 246, .45);
}


/* Reader-first typography and homepage fork refinement */
.prose-eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 800;
}

.hero-trust {
  max-width: 610px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.4;
  color: var(--ink);
}

.hero-actions {
  align-items: center;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 4px;
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-text-link:hover {
  color: var(--ink);
}

.product-door-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-door {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(30px, 5vw, 54px);
  border: 2px solid currentColor;
  border-radius: var(--radius-lg);
}

.product-door h2 {
  max-width: 10ch;
  margin-top: 22px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.product-door p {
  max-width: 520px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.speed-door {
  background: #e9f1ff;
  color: #0a0c10;
  box-shadow: 12px 12px 0 #136ef6;
}

.syn-door {
  background: #101e42;
  color: #f4f6fb;
  box-shadow: 12px 12px 0 #ff6b35;
}

.syn-door p {
  color: #c4cee2;
}

.syn-door .face-label {
  color: #f4f6fb;
}

.product-door-button {
  align-self: flex-start;
  box-shadow: none;
}

.speed-door .product-door-button {
  background: #136ef6;
  border-color: #136ef6;
  color: #fff;
}

.syn-door .product-door-button {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #210c04;
}

.short-list {
  grid-template-columns: 1fr;
}

.short-list li::before {
  content: "✓";
}

@media (max-width: 900px) {
  .product-door-grid {
    grid-template-columns: 1fr;
  }

  .product-door {
    min-height: 480px;
  }
}


/* Full-site unification pass, July 2026 */
.parent-theme .hero-stage::before { background:#242a33; }
.one-to-one-callout {
  padding: clamp(28px, 5vw, 52px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper-2);
  box-shadow: 8px 8px 0 color-mix(in srgb, var(--ink) 16%, transparent);
}
.one-to-one-callout h3 { max-width: 22ch; margin-bottom: 12px; }
.one-to-one-callout p { max-width: 820px; margin-bottom: 0; color: var(--ink-soft); font-size:1.08rem; }
.story-bridge { margin: 36px 0 18px; font-size:1.15rem; font-weight:800; }
.story-name small { display:block; margin-top:8px; color:var(--ink-soft); font-family:var(--font-body); font-size:.72rem; letter-spacing:0; line-height:1.35; text-transform:none; }
.story b { color: var(--ink); }
.pilot-list.emphasis-list li:nth-child(3),
.pilot-list.emphasis-list li:nth-child(4) { border:2px solid var(--ink); border-radius:14px; padding:14px 16px; background:var(--paper-2); box-shadow:5px 5px 0 color-mix(in srgb, var(--ink) 16%, transparent); }
.pilot-exchange { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:26px; }
.pilot-exchange article { padding:20px; border:2px solid var(--ink); border-radius:16px; background:var(--paper-2); }
.pilot-exchange h3 { font-size:1.55rem; margin-bottom:9px; }
.pilot-exchange p { margin-bottom:0; color:var(--ink-soft); }
.pilot-audience { margin-top:20px; color:var(--ink-soft); font-weight:700; }
.pilot-theme .form-card { box-shadow:10px 10px 0 color-mix(in srgb, var(--cobalt) 34%, transparent); }
.thanks-next { margin:26px auto 0; max-width:680px; padding:22px; border:2px solid var(--ink); border-radius:16px; background:var(--paper-2); }
.thanks-next p { margin-bottom:14px; color:var(--ink-soft); }
.board-status { display:grid; gap:14px; padding:28px; border:2px solid var(--ink); border-radius:var(--radius-md); background:var(--paper-2); box-shadow:10px 10px 0 #136ef6; }
.board-status-row { display:grid; grid-template-columns:58px 1fr; gap:16px; align-items:start; padding-bottom:14px; border-bottom:1px solid var(--line); }
.board-status-row:last-child { padding-bottom:0; border-bottom:0; }
.board-status-num { display:grid; width:50px; height:50px; place-items:center; border:2px solid var(--ink); border-radius:50%; background:#e9f1ff; font-family:var(--font-mono); font-weight:900; }
.board-status-row h3 { margin-bottom:5px; font-size:1.55rem; }
.board-status-row p { margin:0; color:var(--ink-soft); }
.board-note { margin-top:24px; padding:20px; border:2px solid var(--ink); border-radius:16px; background:#e9f1ff; }
.board-snapshot { padding:clamp(28px,5vw,52px); border:2px solid var(--ink); border-radius:var(--radius-lg); background:var(--paper-2); box-shadow:10px 10px 0 #136ef6; }
.board-snapshot-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.board-snapshot-cell { padding:22px; border:2px solid var(--ink); border-radius:16px; text-align:center; background:#fff; }
.board-snapshot-cell strong { display:block; font-family:var(--font-display); font-size:3rem; line-height:1; color:#136ef6; }
.board-snapshot-cell span { display:block; margin-top:7px; color:var(--ink-soft); font-weight:700; }
.board-watch { margin-top:18px; padding:20px; border:2px solid var(--ink); border-radius:16px; background:#fff5dc; }
.board-cta { display:grid; grid-template-columns:1.2fr .8fr; gap:32px; align-items:center; padding:clamp(34px,7vw,76px); border:2px solid var(--ink); border-radius:var(--radius-lg); background:#0a0c10; color:#fff; }
.board-cta p { color:#b8c0cf; }
.board-cta .price-note { background:#fff; color:#0a0c10; }
.resource-body { background:#fff; }
.resource-body .site-header { background:rgba(255,255,255,.95); }
.resource-body .site-footer { margin-top:40px; }
.resource-body .footer-wordmark { color:#fff; }
.resource-body .footer-meta { color:rgba(255,255,255,.7); }
@media(max-width:900px){
  .pilot-exchange,.board-cta { grid-template-columns:1fr; }
  .board-snapshot-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:620px){
  .board-snapshot-grid { grid-template-columns:1fr; }
}

/* Footer contrast and pilot form completion */
.site-footer {
  background: #0a0c10;
  color: #ffffff;
  border-top-color: #0a0c10;
}
.site-footer .footer-wordmark,
.site-footer .footer-links a { color: #ffffff; }
.site-footer .footer-meta { color: rgba(255,255,255,.68); }
.site-footer .footer-wordmark span { color: var(--acid); }

.pilot-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr);
  gap: 48px;
  align-items: start;
}
.pilot-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding-left: 28px;
}
.pilot-reward {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--paper-2) 76%, transparent);
  color: var(--ink-soft);
  font-weight: 700;
}
.hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.form-card fieldset {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}
.form-card legend {
  margin-bottom: 10px;
  font-weight: 800;
}
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-card { position: relative; }
.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-card span {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  cursor: pointer;
}
.radio-card small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
}
.radio-card input:checked + span {
  background: var(--acid);
  color: #111;
  box-shadow: 4px 4px 0 var(--ink);
}
.radio-card input:focus-visible + span {
  outline: 4px solid var(--cobalt);
  outline-offset: 3px;
}
@media(max-width:900px){
  .pilot-grid { grid-template-columns: 1fr; }
}
@media(max-width:620px){
  .radio-grid { grid-template-columns: 1fr; }
}
