/* The homepage's own scale. It is a wide marketing page with large cards, not a reading
   column, so it overrides the frame TOKENS rather than redefining any rule — the vocabulary in
   base.css still holds, this page just starts from different values.
   --max was the one that mattered: without it the hero collapsed to the 760px reading column and
   wrapped one word per line. Caught by looking at a screenshot, not by any check. */
@layer page {

body {
  --max: 1180px;          /* the wide marketing frame, against base's 760px reading column */
  --radius: 22px;         /* larger cards */
  --shadow: 0 24px 70px rgba(11, 19, 32, .11);
  --ink-2: #28364c;       /* this page's secondary ink */
  --blue-2: #5b82f4;      /* a LIGHTER hover, because this page uses it on dark sections */
}

/* index.html — extracted from the inline <style> so the site can enforce a CSP. */
/* Self-hosted Inter (variable, latin 100-900) — no third-party font requests */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
button { font: inherit; }
svg { display: block; }
::selection { background: var(--sky); color: var(--ink); }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -60px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223,229,238,.84);
  background: rgba(246,248,251,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo { height: 60px; width: auto; display: block; }

.brand-mark {
  width: 28px;
  height: 28px;
  position: relative;
  border-radius: 9px;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(37,99,235,.25);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  height: 2px;
  border-radius: 9px;
  background: var(--white);
}
.brand-mark::before { top: 9px; }
.brand-mark::after { bottom: 9px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  color: #526079;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .16s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--ink); }
.nav-links .nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 11px;
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}
.menu-button svg { width: 20px; height: 20px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 118px) 0 clamp(72px, 8vw, 104px);
  background:
    radial-gradient(circle at 78% 12%, rgba(37,99,235,.13), transparent 30rem),
    linear-gradient(180deg, #fbfcfe 0%, var(--paper) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11,19,32,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,19,32,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(360px, .87fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 760;
}
h1 span { color: var(--blue); }

.hero-copy > p {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--ink-2);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  letter-spacing: -.02em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; }
.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 15px 34px rgba(37,99,235,.25);
}
.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,.82);
}

.kernel-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 94% 0%, rgba(37,99,235,.48), transparent 18rem),
    var(--ink);
  box-shadow: var(--shadow);
}
.kernel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

.kernel-head,
.kernel-flow,
.kernel-foot { position: relative; z-index: 1; }
.kernel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}
.kernel-head strong {
  font-size: 15px;
  letter-spacing: -.02em;
}
.kernel-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a9f4dd;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kernel-head span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55dfb4;
  box-shadow: 0 0 0 5px rgba(85,223,180,.1);
}


.agent-cluster {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.agent-mini {
  position: relative;
  min-width: 0;
  padding: 13px 12px 14px;
  border: 1px solid var(--dark-line);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  text-align: center;
}
.agent-mini::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  height: 12px;
  border-left: 1px solid rgba(207,221,255,.28);
}
.agent-mini small,
.kernel-core small,
.outcome-core small {
  display: block;
  margin-bottom: 4px;
  color: #8195b3;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.agent-mini b {
  display: block;
  overflow: hidden;
  color: #f3f6ff;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.org-connector {
  position: relative;
  z-index: 1;
  height: 26px;
}
.org-connector::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 16.666%;
  right: 16.666%;
  border-top: 1px solid rgba(207,221,255,.28);
}
.org-connector::after {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(207,221,255,.28);
}
.kernel-core,
.outcome-core {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 13px;
  border-radius: 17px;
}
.kernel-core {
  grid-template-columns: 40px 1fr auto;
  min-height: 80px;
  padding: 14px;
  border: 1px solid rgba(91,130,244,.55);
  background: rgba(37,99,235,.17);
}
.kernel-core b,
.outcome-core b {
  display: block;
  color: #f3f6ff;
  font-size: 14px;
  line-height: 1.4;
}
.org-arrow {
  position: relative;
  z-index: 1;
  height: 30px;
  display: grid;
  place-items: center;
  color: #617795;
  font-size: 16px;
}
.outcome-core {
  grid-template-columns: 1fr auto;
  min-height: 68px;
  padding: 13px 14px;
  border: 1px solid var(--dark-line);
  background: rgba(255,255,255,.055);
}

.kernel-flow {
  display: grid;
  gap: 10px;
}
.flow-node {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid var(--dark-line);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
}
.flow-node.primary {
  border-color: rgba(91,130,244,.55);
  background: rgba(37,99,235,.16);
}
.flow-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #cfddff;
  background: rgba(255,255,255,.08);
}
.flow-icon svg { width: 19px; height: 19px; }
.flow-node small {
  display: block;
  margin-bottom: 3px;
  color: #8195b3;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.flow-node b {
  display: block;
  color: #f3f6ff;
  font-size: 14px;
  line-height: 1.35;
}
.flow-state {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: #9eafc7;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.flow-node.primary .flow-state {
  color: #cddcff;
  border-color: rgba(91,130,244,.38);
  background: rgba(37,99,235,.18);
}

.kernel-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.kernel-foot span {
  padding: 7px 9px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: #8fa1bd;
  font-size: 10px;
  font-weight: 750;
}

.proof-bar {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(11,19,32,.08);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(11,19,32,.08);
}
.proof-item {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
}
.proof-item + .proof-item { border-left: 1px solid var(--line); }
.proof-item svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--blue);
}
.proof-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.section { padding: clamp(76px, 9vw, 112px) 0; }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(37,99,235,.18), transparent 28rem),
    var(--ink);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(29px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 740;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.section-dark .section-head p { color: #9dacc2; }
.section-dark .eyebrow { color: #b8c8df; }

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}
.why-copy h2 {
  margin: 16px 0 20px;
  font-size: clamp(29px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 740;
}
.why-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}
.quote {
  margin-top: 27px;
  padding: 19px 21px;
  border-left: 3px solid var(--blue);
  border-radius: 0 14px 14px 0;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 32px rgba(11,19,32,.05);
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(11,19,32,.06);
}
.comparison-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.1fr;
  gap: 0;
  align-items: stretch;
}
.comparison-row + .comparison-row { border-top: 1px solid var(--line); }
.comparison-row > div { padding: 18px 19px; }
.comparison-row > div + div { border-left: 1px solid var(--line); }
.comparison-row.header {
  color: #7a879b;
  background: #f2f5fa;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.comparison-row:not(.header) .surface {
  color: var(--ink);
  font-size: 13px;
  font-weight: 830;
}
.comparison-row:not(.header) .typical,
.comparison-row:not(.header) .charter {
  color: #637087;
  font-size: 13px;
  line-height: 1.48;
}
.comparison-row:not(.header) .charter {
  color: var(--ink-2);
  background: rgba(37,99,235,.035);
  font-weight: 700;
}


.organization-section {
  padding-top: clamp(92px, 10vw, 132px);
  background: var(--white);
}
.organization-flow {
  display: grid;
  grid-template-columns: minmax(0,1fr) 62px minmax(0,1fr) 62px minmax(0,1fr);
  align-items: stretch;
  margin-top: 46px;
}
.organization-stage {
  position: relative;
  min-height: 252px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfcfe;
  box-shadow: 0 16px 44px rgba(11,19,32,.055);
}
.organization-stage.featured {
  color: var(--white);
  border-color: rgba(37,99,235,.42);
  background:
    radial-gradient(circle at 88% 8%, rgba(91,130,244,.35), transparent 15rem),
    var(--ink);
  box-shadow: 0 22px 60px rgba(11,19,32,.15);
}
.stage-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #a3afc0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}
.featured .stage-number { color: #7287a6; }
.stage-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 39px;
  border: 1px solid #d8e2f1;
  border-radius: 14px;
  color: var(--blue);
  background: var(--white);
}
.featured .stage-icon {
  color: #d7e2ff;
  border-color: rgba(91,130,244,.28);
  background: rgba(37,99,235,.17);
}
.stage-icon svg { width: 22px; height: 22px; }
.organization-stage h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.organization-stage p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.organization-stage.featured p { color: #9eafc7; }
.organization-link {
  display: grid;
  place-items: center;
  color: #a5b0c0;
  font-size: 24px;
}
.organization-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.mission-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.mission-intro .section-head { margin-bottom: 0; }
.mission-note {
  max-width: 380px;
  margin: 0 0 5px;
  color: #9dacc2;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

.missions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mission-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.mission-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91,130,244,.48);
  background: rgba(255,255,255,.065);
}
.mission-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(91,130,244,.2);
  border-radius: 50%;
  pointer-events: none;
}
.mission-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 35px;
}
.mission-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #cbd9ff;
  background: rgba(37,99,235,.16);
  border: 1px solid rgba(91,130,244,.22);
}
.mission-icon svg { width: 21px; height: 21px; }
.mission-meta {
  color: #788da9;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mission-card h3 {
  max-width: 520px;
  margin: 0 0 14px;
  font-size: clamp(27px, 3.2vw, 38px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.mission-card > p {
  max-width: 560px;
  margin-bottom: 30px;
  color: #9aabc2;
  font-size: 15px;
  line-height: 1.6;
}
.mission-gate {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--dark-line);
}
.mission-gate span {
  display: block;
  margin-bottom: 5px;
  color: #7186a5;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.mission-gate strong {
  display: block;
  color: #edf3ff;
  font-size: 13px;
  line-height: 1.5;
}

.validity {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.validity-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(29px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 740;
}
.validity-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.validity-copy strong { color: var(--ink); }

.validity-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(11,19,32,.06);
}
.validity-step {
  position: relative;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
}
.validity-step + .validity-step { border-left: 1px solid var(--line); }
.validity-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -13px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: var(--paper);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-50%);
}
.validity-step span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.validity-step strong {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.guarantee {
  min-height: 188px;
  padding: 25px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}
.guarantee:nth-child(3n) { border-right: 0; }
.guarantee:nth-last-child(-n+3) { border-bottom: 0; }
.guarantee strong {
  display: block;
  margin-bottom: 9px;
  color: var(--white);
  font-size: 17px;
  letter-spacing: -.02em;
}
.guarantee p {
  margin: 0;
  color: #98a9c0;
  font-size: 14px;
  line-height: 1.58;
}
.guarantee-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid rgba(91,130,244,.3);
  border-radius: 10px;
  color: #baceff;
  background: rgba(37,99,235,.12);
  font-size: 10px;
  font-weight: 850;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(91,130,244,.28);
  border-radius: 18px;
  background: rgba(37,99,235,.1);
}
.trust-strip strong {
  font-size: 17px;
  letter-spacing: -.02em;
}
.trust-strip span {
  color: #9fb0ca;
  font-size: 14px;
}
.trust-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #dce7ff;
  background: rgba(255,255,255,.05);
  font-size: 11px;
  font-weight: 820;
}
.trust-badge::before {
  content: "✓";
  color: #64e5bc;
  font-weight: 900;
}

.closing {
  padding: clamp(76px, 9vw, 112px) 0 34px;
  background:
    radial-gradient(circle at 76% 24%, rgba(37,99,235,.14), transparent 26rem),
    #fbfcfe;
}
.closing-panel {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 430px);
  align-items: center;
  gap: 42px;
  padding: clamp(34px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(11,19,32,.08);
}
.closing-panel h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(29px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 740;
}
.closing-panel h2 span { color: var(--blue); }
.closing-panel p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #7a879b;
  font-size: 13px;
}
.footer strong { color: var(--ink); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer > :last-child { text-align: right; }
.footer-disclaimer { margin: 0 0 10px; color: #8a93a3; font-size: 12px; line-height: 1.6; }

@media (max-width: 960px) {
  .hero-grid,
  .why-grid,
  .validity { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .kernel-card { max-width: 680px; }
  .organization-flow { grid-template-columns: 1fr 46px 1fr; }
  .organization-stage:last-of-type { grid-column: 1 / -1; margin-top: 46px; }
  .organization-link:last-of-type { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-item:nth-child(4) { border-top: 1px solid var(--line); }
  .mission-intro { align-items: start; flex-direction: column; }
  .mission-note { text-align: left; }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee:nth-child(3n) { border-right: 1px solid var(--dark-line); }
  .guarantee:nth-child(2n) { border-right: 0; }
  .guarantee:nth-last-child(-n+3) { border-bottom: 1px solid var(--dark-line); }
  .guarantee:nth-last-child(-n+2) { border-bottom: 0; }
  .closing-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .menu-button { display: grid; }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 60px rgba(11,19,32,.14);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
  }
  .nav-links .nav-cta { justify-content: center; margin-top: 4px; }
  .hero { padding-top: 66px; }
  .hero-grid { grid-template-columns: 1fr; }
  .kernel-card { padding: 20px; border-radius: 22px; }
  .agent-cluster { gap: 7px; }
  .agent-mini { padding-inline: 8px; }
  .kernel-core { grid-template-columns: 40px 1fr; }
  .kernel-core .flow-state { grid-column: 2; justify-self: start; }
  .outcome-core { grid-template-columns: 1fr; }
  .outcome-core .flow-state { justify-self: start; }
  .flow-node { grid-template-columns: 40px 1fr; }
  .flow-state { grid-column: 2; justify-self: start; }
  .proof-bar { margin-top: -22px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item + .proof-item { border-left: 0; border-top: 1px solid var(--line); }
  .organization-flow { grid-template-columns: 1fr; gap: 0; }
  .organization-stage,
  .organization-stage:last-of-type { grid-column: auto; min-height: 0; margin-top: 0; }
  .organization-link,
  .organization-link:last-of-type { min-height: 50px; display: grid; }
  .organization-link span { transform: rotate(90deg); }
  .missions { grid-template-columns: 1fr; }
  .validity-flow { grid-template-columns: 1fr; }
  .validity-step { min-height: 126px; }
  .validity-step + .validity-step { border-left: 0; border-top: 1px solid var(--line); }
  .validity-step:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -13px;
    transform: translateX(50%);
  }
  .guarantees-grid { grid-template-columns: 1fr; }
  .guarantee,
  .guarantee:nth-child(2n),
  .guarantee:nth-child(3n),
  .guarantee:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }
  .guarantee:last-child { border-bottom: 0; }
  .trust-strip { align-items: flex-start; flex-direction: column; }
  .footer { grid-template-columns: 1fr; padding: 30px 0; }
  .footer > :last-child { text-align: left; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-copy > p { font-size: 18px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .comparison { border-radius: 17px; }
  .comparison-row { grid-template-columns: 82px 1fr; }
  .comparison-row > div { padding: 15px 13px; }
  .comparison-row .typical { display: none; }
  .comparison-row.header .typical { display: none; }
  .mission-card { min-height: 0; padding: 23px; }
  .mission-top { align-items: flex-start; }
  .closing-panel { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
/* Scroll reveal — JS-gated, so no-JS and reduced-motion render everything */
.js-reveal .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-reveal .reveal { opacity: 1; transform: none; } }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 11px; }
.cta-email { color: var(--blue); font-size: 14px; font-weight: 750; letter-spacing: -.01em; text-decoration: none; }
.cta-email:hover, .cta-email:focus-visible { text-decoration: underline; }
.closing-panel { align-items: start; }
.contact-form { display: grid; gap: 10px; width: 100%; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px;
  font: inherit; font-size: 14px; color: var(--ink); background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 84px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.14); }
.contact-form .hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .button { width: 100%; margin-top: 2px; cursor: pointer; }
.contact-form .button[disabled] { opacity: .6; cursor: default; transform: none; }
.form-status { margin: 1px 0 0; font-size: 13px; min-height: 17px; }
.form-status.ok { color: #128a5a; }
.form-status.err { color: #c0392b; }
.form-fallback { margin: 3px 0 0; font-size: 12.5px; color: var(--muted); }
.form-fallback a { color: var(--blue); text-decoration: none; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
/* Mission cards are clickable -> case-study modal */
.mission-card { cursor: pointer; }
.mission-readmore { margin-top: 15px; color: #aebfe0; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.mission-card:hover .mission-readmore { color: #dce6f7; }
.case-modal { width: min(92vw, 760px); max-height: 88vh; padding: 0; border: none; border-radius: 20px; color: var(--ink); background: #fff; box-shadow: 0 40px 120px rgba(11,19,32,.45); }
.case-modal::backdrop { background: rgba(11,19,32,.62); backdrop-filter: blur(3px); }
.case-inner { position: relative; max-height: 88vh; overflow-y: auto; padding: 36px 40px 40px; }
.case-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; display: grid; place-items: center; border: none; border-radius: 9px; background: var(--paper); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; }
.case-close:hover { background: #e6ebf3; }
.case-eyebrow { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.case-modal h3 { margin: 10px 0 0; font-size: clamp(25px, 3.4vw, 33px); line-height: 1.08; letter-spacing: -.025em; font-weight: 760; color: var(--ink); }
.case-stats { margin-top: 10px; color: var(--muted); font-size: 13px; font-weight: 700; }
.case-modal h4 { margin: 22px 0 5px; font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.case-modal p { margin: 0; font-size: 15.5px; line-height: 1.66; color: var(--ink-2); }
.case-proof { margin-top: 24px; padding: 14px 16px; border-left: 3px solid var(--blue); border-radius: 0 12px 12px 0; background: rgba(37,99,235,.05); font-size: 14px; line-height: 1.55; color: var(--ink); }
@media (max-width: 560px) { .case-inner { padding: 28px 22px 32px; } }
.case-roles { margin: 4px 0 0; padding-left: 18px; }
.case-roles li { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); margin: 5px 0; }
.case-grounding { margin-top: 24px; font-size: 12.5px; line-height: 1.7; color: var(--muted); }
.case-grounding b { color: var(--ink-2); font-weight: 700; }
.case-numbers { margin: 14px 0 0; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.case-numbers div { font-size: 14px; line-height: 1.5; color: var(--ink-2); margin: 4px 0; }
.case-numbers b { color: var(--ink); font-weight: 750; }
.case-benchmark { margin-top: 26px; padding: 18px 20px 20px; border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: 0 14px 14px 0; background: var(--paper); }
.case-benchmark > h4 { margin-top: 2px; }
.case-benchmark p { font-size: 14.5px; }
.case-steps { margin: 8px 0 0; padding-left: 20px; }
.case-steps li { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); margin: 7px 0; }
.case-steps li strong { color: var(--ink); }
.bench-final { margin-top: 12px; font-size: 13.5px; color: var(--ink); font-weight: 600; }

}  /* end @layer page */
