@font-face {
  font-family: "Futura Round";
  src: url("assets/FuturaRound.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111416;
  --graphite: #555f61;
  --muted: #687174;
  --line: #d9dfdd;
  --paper: #f6f7f2;
  --white: #ffffff;
  --red: #a31922;
  --red-dark: #7b1117;
  --teal: #9fc5bb;
  --blue: #123047;
  --soft: #eef4f1;
  --shadow: 0 28px 80px rgba(17, 20, 22, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(217, 223, 221, 0.72);
  background: rgba(246, 247, 242, 0.88);
  backdrop-filter: blur(18px);
  transition: padding 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(246, 247, 242, 0.94);
  box-shadow: 0 14px 42px rgba(17, 20, 22, 0.09);
}

.brand {
  display: flex;
  width: 86px;
  height: 72px;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.brand img {
  width: auto;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 13px;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1;
}

.nav-cta {
  padding: 13px 18px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
}

.button {
  padding: 15px 20px;
  border: 1px solid transparent;
  font-size: 14px;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero {
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(88px, 0.18fr) minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: stretch;
  padding: 132px clamp(20px, 5vw, 72px) 58px;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 20, 22, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 96px 96px, 96px 96px, auto;
}

.hero-kicker {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding-top: 12px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-kicker span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-copy {
  display: flex;
  max-width: 940px;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--graphite);
  font-size: 88px;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.18;
}

p {
  margin-top: 0;
}

.hero-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  margin: 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  margin-top: 12px;
}

.panel-note {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.panel-note span,
.model-flow small {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-note strong {
  display: block;
  color: var(--ink);
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 26px;
  line-height: 1.12;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metric-strip div {
  min-height: 154px;
  padding: 30px clamp(20px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip strong {
  display: block;
  color: var(--red);
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  display: grid;
  grid-template-columns: minmax(76px, 0.16fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-index {
  color: var(--red);
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.section-main {
  min-width: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 46px;
}

.section-heading p,
.positioning .section-main > p + .section-heading p,
.field-system p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.editorial-grid,
.capability-matrix,
.compliance-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.editorial-grid article,
.capability-matrix article,
.compliance-band article {
  min-height: 248px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.editorial-grid p,
.capability-matrix p,
.launch-steps p,
.model-flow p,
.format-list p,
.compliance-band p,
.check-list {
  color: var(--muted);
  font-size: 15px;
}

.capabilities,
.compliance {
  background: var(--white);
}

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

.capability-matrix article {
  min-height: 360px;
  grid-column: span 2;
}

.capability-matrix span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.model {
  background: var(--blue);
  color: var(--white);
}

.model .eyebrow,
.model .section-index {
  color: var(--teal);
}

.model .section-heading p,
.model-flow p {
  color: rgba(255, 255, 255, 0.72);
}

.model-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.model-flow article {
  min-height: 300px;
  padding: 34px;
  background: #143750;
}

.model-flow .selected {
  background: var(--red);
}

.model-flow .selected small {
  color: rgba(255, 255, 255, 0.82);
}

.launch {
  background: var(--paper);
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
  counter-reset: launch;
}

.launch-steps li {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  counter-increment: launch;
}

.launch-steps li::before {
  content: "0" counter(launch);
  display: block;
  margin-bottom: 64px;
  color: var(--red);
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.launch-steps span,
.format-list span,
.compliance-band span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Futura Round", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--red);
  clip-path: polygon(14% 54%, 35% 72%, 86% 18%, 100% 32%, 37% 96%, 0 65%);
}

.partner-formats {
  background: var(--soft);
}

.format-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.format-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 5vw, 68px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.format-list p {
  max-width: 760px;
  margin: 0;
}

.contact {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.contact h2 {
  max-width: 820px;
}

.contact p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
}

.contact .button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-kicker {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }

  .hero-kicker span {
    writing-mode: initial;
    transform: none;
  }

  .capability-matrix article,
  .launch-steps li {
    grid-column: span 3;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .section,
  .section-heading,
  .split,
  .contact,
  .format-list article {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 122px;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .metric-strip,
  .editorial-grid,
  .model-flow,
  .compliance-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-matrix,
  .launch-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-matrix article,
  .launch-steps li {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-inline: 16px;
  }

  .brand {
    width: 64px;
    height: 56px;
  }

  .brand img {
    width: auto;
    height: 56px;
  }

  .nav-cta {
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero,
  .section,
  .contact {
    padding-inline: 16px;
  }

  .hero {
    gap: 24px;
    padding-top: 112px;
    background-size: 72px 72px, 72px 72px, auto;
  }

  .hero-kicker {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-lede,
  .section-heading p,
  .field-system p,
  .contact p {
    font-size: 16px;
  }

  .hero-panel,
  .editorial-grid article,
  .capability-matrix article,
  .model-flow article,
  .launch-steps li,
  .compliance-band article {
    padding: 22px;
  }

  .metric-strip,
  .editorial-grid,
  .capability-matrix,
  .model-flow,
  .launch-steps,
  .compliance-band {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip div:last-child {
    border-bottom: 0;
  }

  .editorial-grid article,
  .capability-matrix article,
  .model-flow article,
  .launch-steps li,
  .compliance-band article {
    min-height: auto;
  }

  .capability-matrix span,
  .launch-steps li::before {
    margin-bottom: 34px;
  }

  .button {
    width: 100%;
  }
}
