* {
  box-sizing: border-box;
}

@media (pointer: coarse) {
  button,
  a {
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-action,
  .primary-action,
  .hero-question-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  button:active,
  a:active {
    transform: scale(0.985);
  }
}

:root {
  --ink: #0f172a;
  --muted: #526174;
  --line: #dbe4ef;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --blue: #2563eb;
  --green: #16a34a;
  --red: #dc2626;
  --cyan: #0891b2;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 12px clamp(16px, 5vw, 56px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand-mark,
.landing-nav nav,
.hero-actions,
.workflow-row,
.cta-band,
footer {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 10px;
  font-weight: 800;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08), 0 10px 24px rgba(37, 99, 235, 0.14);
  overflow: hidden;
}

.landing-emblem {
  width: 34px;
  height: 34px;
  display: block;
}

.landing-nav nav {
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.nav-action,
.primary-action {
  padding: 12px 18px;
  border: 0;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
}

.secondary-action {
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.58) 72%, rgba(255, 255, 255, 0.28) 100%),
    url("assets/landing-hero-blueprint.png") center right / cover no-repeat,
    #f8fbff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0) 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
}

.ops-shell {
  width: min(1120px, 96vw);
  min-height: 560px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
  transform: rotate(-2deg) translateX(8vw);
  opacity: 0.9;
}

.ops-topbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.ops-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #94a3b8;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
}

.ops-panel {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.ops-panel-wide {
  grid-column: span 2;
}

.ops-panel-tall {
  grid-row: span 2;
}

.ops-panel small,
.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.2;
}

.status-pill {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.status-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.status-green {
  background: #dcfce7;
  color: #15803d;
}

.status-red {
  background: #fee2e2;
  color: #b91c1c;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 8px;
  background: #e2e8f0;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.doc-stack {
  display: grid;
  gap: 8px;
}

.doc-stack span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  font-weight: 800;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-content h1 {
  max-width: 720px;
  margin: 10px 0 16px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: #263548;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.45;
}

.hero-question-stack {
  display: grid;
  gap: 8px;
  width: min(560px, 100%);
  margin: 20px 0;
}

.hero-question-stack span,
.hero-question-card {
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  color: #172033;
  font-weight: 800;
}

.hero-question-stack span {
  padding: 12px 14px;
}

.hero-question-card {
  overflow: hidden;
}

.hero-question-trigger {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: #172033;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hero-question-trigger::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 900;
}

.hero-question-card.is-open {
  background: #ffffff;
}

.hero-question-card.is-open .hero-question-trigger::after {
  content: "-";
}

.hero-question-answer {
  padding: 0 14px 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc;
}

.hero-question-answer p {
  margin: 10px 0 6px;
  color: #263548;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-question-answer strong {
  display: block;
  color: #1d4ed8;
  font-size: 13px;
  line-height: 1.35;
}

.hero-belief {
  max-width: 650px;
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.hero-belief.compact {
  margin-top: 14px;
  color: #1d4ed8;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.readiness-hero {
  padding: clamp(56px, 9vw, 110px) clamp(18px, 6vw, 72px);
  background:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #eef6ff 100%);
  background-size: 30px 30px, 30px 30px, auto;
}

.readiness-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.readiness-hero h1 {
  max-width: 760px;
  margin: 10px 0 16px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.enterprise-hero {
  padding: clamp(56px, 9vw, 110px) clamp(18px, 6vw, 72px);
  background:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 56%, #eef6ff 100%);
  background-size: 30px 30px, 30px 30px, auto;
}

.enterprise-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.enterprise-hero h1 {
  max-width: 760px;
  margin: 10px 0 12px;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.enterprise-subtitle {
  max-width: 620px;
  margin: 0 0 22px;
  color: #1d4ed8;
  font-size: clamp(21px, 2.6vw, 31px);
  font-weight: 900;
  line-height: 1.15;
}

.readiness-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.readiness-console {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.enterprise-stage-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.enterprise-stage-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.enterprise-stage-list article {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.enterprise-stage-list small,
.enterprise-roadmap span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-stage-list strong {
  font-size: 20px;
  line-height: 1.15;
}

.enterprise-reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.enterprise-reference-layout h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.enterprise-reference-layout p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.55;
}

.compact-reference-list {
  grid-template-columns: 1fr;
  margin-top: 20px;
}

.enterprise-reference-figure {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.enterprise-reference-gallery {
  display: grid;
  gap: 14px;
}

.enterprise-reference-gallery .enterprise-reference-figure:first-child {
  width: min(420px, 100%);
  justify-self: center;
}

.enterprise-reference-figure img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.enterprise-reference-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.readiness-console-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.readiness-console-body article {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.readiness-console-body small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.readiness-console-body strong {
  font-size: 21px;
  line-height: 1.12;
}

.readiness-pill-grid,
.enterprise-grid,
.readiness-matrix,
.roadmap-list {
  display: grid;
  gap: 14px;
}

.readiness-pill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.readiness-pill-grid article,
.enterprise-grid article,
.roadmap-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.readiness-pill-grid article {
  padding: 20px;
}

.readiness-pill-grid span,
.roadmap-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.readiness-pill-grid h3,
.enterprise-grid h3,
.roadmap-list h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.1;
}

.readiness-pill-grid p,
.enterprise-grid li,
.readiness-matrix span,
.roadmap-list p {
  color: var(--muted);
  line-height: 1.5;
}

.enterprise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enterprise-grid article {
  padding: 20px;
}

.enterprise-grid ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.enterprise-grid li {
  padding-left: 2px;
}

.readiness-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.readiness-matrix div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: #ffffff;
}

.readiness-matrix strong {
  font-size: 20px;
  line-height: 1.1;
}

.roadmap-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.roadmap-list article {
  min-height: 240px;
  padding: 18px;
}

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

.enterprise-roadmap article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: #ffffff;
}

.enterprise-roadmap h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.1;
}

.enterprise-roadmap p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.enterprise-roadmap ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.enterprise-roadmap li {
  color: var(--muted);
  line-height: 1.45;
}

.role-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.role-chip-grid span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: #1f2937;
  font-size: 13px;
  font-weight: 800;
}

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

.success-criteria-grid div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #1f2937;
  font-weight: 800;
  line-height: 1.35;
}

.success-criteria-grid span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green);
}

.who-for-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.who-for-chips span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: #1f2937;
  font-weight: 800;
  font-size: 14px;
}

.section-band {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 72px);
  background: #ffffff;
}

.section-quiet {
  background: var(--soft);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading h2,
.proof-layout h2,
.cta-band h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.proof-layout p,
.cta-band p,
.value-grid p,
.workflow-row p {
  color: var(--muted);
  line-height: 1.55;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-grid article,
.workflow-row article,
.proof-list,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.value-grid article {
  padding: 22px;
}

.value-grid span {
  color: var(--blue);
  font-weight: 900;
}

.value-grid h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.core-values-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.values-compass {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.values-compass-ring {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 29%, transparent 30%),
    conic-gradient(from -12deg, #1d4ed8, #0f766e, #16a34a, #0891b2, #1d4ed8);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.values-compass-ring::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 10px solid #ffffff;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.values-compass-center {
  position: absolute;
  inset: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 8px solid #ffffff;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24);
}

.values-compass-center strong {
  font-size: 19px;
  line-height: 1.05;
}

.values-compass-center span {
  display: block;
  margin-top: 6px;
  color: #bfdbfe;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-node {
  position: absolute;
  width: 118px;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.value-node:nth-child(2) { top: 0; left: 50%; transform: translate(-50%, -18%); }
.value-node:nth-child(3) { top: 18%; right: -2%; }
.value-node:nth-child(4) { right: -4%; bottom: 20%; }
.value-node:nth-child(5) { left: 50%; bottom: 0; transform: translate(-50%, 18%); }
.value-node:nth-child(6) { left: -4%; bottom: 20%; }
.value-node:nth-child(7) { top: 18%; left: -2%; }

.values-loop {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #16a34a;
  border-right-color: #16a34a;
  transform: rotate(28deg);
}

.values-loop::before,
.values-loop::after {
  position: absolute;
  color: #16a34a;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-loop::before {
  content: "Protect Momentum";
  top: 12%;
  right: -14px;
  transform: rotate(38deg);
}

.values-loop::after {
  content: "Respect the Field";
  left: -28px;
  bottom: 14%;
  transform: rotate(-76deg);
}

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

.core-values-list article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.core-values-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-values-list h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.08;
}

.core-values-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.workflow-row {
  align-items: stretch;
  gap: 14px;
}

.workflow-row article {
  flex: 1;
  min-width: 0;
  padding: 18px;
}

.workflow-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.proof-list {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #f8fafc;
}

.proof-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffffff;
  font-weight: 800;
}

.proof-list span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.closing-story .section-inner {
  max-width: 880px;
}

.closing-story h2 {
  margin: 8px 0 14px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

.closing-story p:last-child {
  color: #334155;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
}

.evolution-transition .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fafc 64%, #eff6ff 100%);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.evolution-transition h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: 0;
}

.evolution-transition p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.evolution-transition p + p {
  margin-top: 6px;
}

.evolution-transition .secondary-action {
  flex: 0 0 auto;
  min-height: 52px;
}

.cta-band {
  width: min(1120px, calc(100% - 36px));
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto clamp(56px, 8vw, 92px);
  padding: clamp(24px, 4vw, 40px);
  background: var(--ink);
  color: #ffffff;
}

.cta-band p,
.cta-band .eyebrow {
  color: #cbd5e1;
}

.cta-band .primary-action {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--ink);
}

.cta-band-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.closing-story .cta-band-actions {
  flex-wrap: wrap;
  margin-top: 24px;
}

.closing-story .primary-action,
.closing-story .secondary-action {
  min-height: 52px;
}

.cta-band-actions .secondary-action {
  border-color: rgba(255, 255, 255, 0.35);
}

footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.easter-egg-link {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.42;
  transition: opacity 180ms ease, color 180ms ease;
}

.easter-egg-link:hover,
.easter-egg-link:focus-visible {
  color: var(--blue);
  opacity: 1;
}

@media (max-width: 820px) {
  body {
    overflow-x: hidden;
  }

  .landing-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px;
  }

  .landing-nav nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
  }

  .landing-nav nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-action {
    width: 100%;
    min-height: 48px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: 42px 18px 56px;
    background-position: 62% top;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 68%, rgba(255, 255, 255, 0.46) 100%);
  }

  .hero-backdrop,
  .ops-shell {
    display: none;
  }

  .ops-shell {
    min-height: 520px;
    transform: rotate(-2deg) translate(4vw, -40px);
  }

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

  .ops-panel {
    min-height: 120px;
  }

  .ops-panel strong {
    font-size: 16px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    max-width: 680px;
    font-size: clamp(42px, 10vw, 62px);
    line-height: 1;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 18px;
  }

  .hero-question-stack {
    width: 100%;
    gap: 10px;
    margin: 18px 0;
  }

  .hero-question-stack span,
  .hero-question-trigger {
    min-height: 48px;
    padding: 13px 14px;
    font-size: 16px;
    line-height: 1.25;
  }

  .hero-belief {
    max-width: 100%;
    font-size: clamp(25px, 7vw, 36px);
  }

  .hero-belief.compact {
    font-size: 18px;
  }

  .hero-actions a {
    min-height: 48px;
  }

  .value-grid,
  .core-values-layout,
  .proof-layout,
  .readiness-hero-layout,
  .enterprise-hero-layout,
  .enterprise-reference-layout,
  .readiness-pill-grid,
  .enterprise-grid,
  .readiness-matrix,
  .roadmap-list,
  .enterprise-roadmap,
  .success-criteria-grid {
    grid-template-columns: 1fr;
  }

  .values-compass {
    min-height: 390px;
  }

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

  .workflow-row,
  .cta-band,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-actions {
    width: 100%;
    flex-direction: column;
  }

  .section-band {
    padding: 56px 18px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .proof-layout h2,
  .cta-band h2,
  .evolution-transition h2,
  .closing-story h2 {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.04;
  }

  .value-grid article,
  .core-values-list article,
  .workflow-row article,
  .proof-list,
  .readiness-pill-grid article,
  .enterprise-grid article,
  .readiness-matrix div,
  .roadmap-list article,
  .enterprise-roadmap article,
  .success-criteria-grid div,
  .enterprise-reference-figure,
  .enterprise-reference-gallery,
  .cta-band {
    width: 100%;
  }

  .readiness-console-body {
    grid-template-columns: 1fr;
  }

  .roadmap-list article {
    min-height: auto;
  }

  .workflow-row {
    gap: 12px;
  }

  .proof-list div {
    min-height: 52px;
  }

  .cta-band {
    width: calc(100% - 36px);
    margin-bottom: 56px;
  }

  .cta-band-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-band-actions .primary-action,
  .cta-band-actions .secondary-action {
    width: 100%;
  }

  .evolution-transition .section-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .evolution-transition .secondary-action {
    width: 100%;
    min-height: 52px;
  }

  .cta-band .primary-action {
    width: 100%;
    min-height: 52px;
  }

  footer {
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .landing-nav {
    position: static;
  }

  .landing-nav nav {
    display: none;
  }

  .hero {
    padding: 34px 16px 48px;
    background-position: 67% top;
  }

  .readiness-hero {
    padding: 42px 16px 52px;
  }

  .enterprise-hero {
    padding: 42px 16px 52px;
  }

  .readiness-hero h1 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.02;
  }

  .enterprise-hero h1 {
    font-size: clamp(37px, 11vw, 46px);
    line-height: 1.02;
  }

  .enterprise-reference-layout h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.04;
  }

  .enterprise-subtitle {
    font-size: 20px;
  }

  .readiness-hero-actions .primary-action,
  .readiness-hero-actions .secondary-action {
    width: 100%;
  }

  .ops-shell {
    width: 720px;
    transform: rotate(-2deg) translate(160px, -55px);
  }

  .hero-content h1 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-question-stack span,
  .hero-question-trigger {
    padding: 12px 13px;
    font-size: 15px;
  }

  .hero-belief {
    font-size: clamp(25px, 8vw, 32px);
  }

  .hero-belief.compact {
    font-size: 17px;
  }

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

  .section-band {
    padding: 48px 16px;
  }

  .value-grid h3 {
    font-size: 21px;
  }

  .values-compass {
    min-height: 320px;
  }

  .values-compass-ring {
    width: min(300px, 78vw);
  }

  .values-compass-center {
    width: 116px;
    height: 116px;
    border-width: 6px;
  }

  .values-compass-center strong {
    font-size: 15px;
  }

  .value-node {
    width: 92px;
    min-height: 58px;
    padding: 8px;
    font-size: 11px;
  }

  .values-loop::before,
  .values-loop::after {
    display: none;
  }

  .value-grid article,
  .core-values-list article,
  .workflow-row article,
  .readiness-pill-grid article,
  .enterprise-grid article,
  .readiness-matrix div,
  .roadmap-list article,
  .enterprise-roadmap article,
  .success-criteria-grid div {
    padding: 18px;
  }

  .closing-story p:last-child {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .brand-mark {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-copy,
  .hero-belief.compact {
    font-size: 16px;
  }

  .section-heading h2,
  .proof-layout h2,
  .cta-band h2,
  .evolution-transition h2,
  .closing-story h2 {
    font-size: 29px;
  }
}
