:root {
  --ivory: #f7f3ea;
  --ivory-2: #ece5d4;
  --navy: #1f5c3a;
  --navy-2: #0f2e1e;
  --lime: #f0c66b;
  --orange: #d9a441;
  --ink: #12140f;
  --muted: #454b42;
  --line: rgba(18, 20, 15, .22);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --radius: 30px;
  --shell: min(1480px, calc(100% - 48px));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.shell { margin-inline: auto; width: var(--shell); }
.section-space { padding-block: clamp(90px, 11vw, 170px); }
.eyebrow {
  font: 400 12px/1.3 var(--mono);
  letter-spacing: -.025em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .92;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 82px;
  margin-inline: auto;
  width: var(--shell);
}
.brand {
  align-items: center;
  display: inline-flex;
  font-size: 22px;
  font-weight: 500;
  gap: 10px;
  justify-self: start;
  text-decoration: none;
}
.brand-mark {
  border: 2px solid var(--orange);
  height: 24px;
  position: relative;
  width: 24px;
}
.brand-mark::before, .brand-mark::after {
  background: var(--ivory);
  border: 2px solid var(--orange);
  content: "";
  height: 9px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 9px;
}
.brand-mark::before { transform: translate(-9px, -9px); }
.brand-mark::after { transform: translate(9px, 9px); }
.site-nav { display: flex; gap: clamp(22px, 3vw, 46px); }
.site-nav a {
  font-size: 14px;
  text-decoration: none;
}
.site-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
.site-nav a::after {
  color: var(--orange);
  content: " ↗";
}
.header-actions { justify-self: end; }
.menu-toggle { display: none; }

/* Buttons */
.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  gap: 16px;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.button:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, .13); transform: translateY(-3px); }
.button b { font-size: 20px; font-weight: 400; }
.button-orange { background: var(--orange); color: #fff; }
.button-lime { background: var(--lime); color: var(--ink); }
.button-dark { background: var(--navy-2); color: var(--ivory); }
.text-link { border-bottom: 1px solid currentColor; padding-bottom: 4px; text-decoration: none; }

/* Hero */
.hero { padding-top: 0; }
.hero-panel {
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  min-height: calc(100svh - 106px);
  overflow: hidden;
  position: relative;
}
.hero-panel::after {
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 20px;
  content: "";
  inset: 24px;
  pointer-events: none;
  position: absolute;
}
.hero-copy {
  align-self: center;
  padding: 90px clamp(42px, 6vw, 82px) 130px;
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  color: var(--lime);
  font-size: clamp(4.6rem, 7.6vw, 8.2rem);
  margin: 0;
  max-width: 7ch;
}
.lede { font-size: clamp(17px, 1.4vw, 20px); max-width: 31rem; }
.hero-copy .button { margin-top: 20px; }
.hero-media { min-height: 650px; position: relative; }
.media-slot { overflow: hidden; position: relative; }
.media-slot > img, .media-slot > video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.media-label {
  background: rgba(15,46,30,.82);
  border: 1px solid rgba(255,255,255,.45);
  bottom: 32px;
  color: #fff;
  font: 10px var(--mono);
  left: 32px;
  letter-spacing: .06em;
  padding: 8px 10px;
  position: absolute;
  z-index: 4;
}
.media-slot.has-final-media .media-label { display: none; }
.hero-glyph {
  color: var(--lime);
  font: 70px/.65 var(--sans);
  position: absolute;
  right: 4%;
  top: 7%;
  z-index: 3;
}
.hero-benefits {
  bottom: 30px;
  display: flex;
  gap: 9px;
  left: 6%;
  position: absolute;
  z-index: 4;
}
.hero-benefits span { border: 1px solid rgba(255,255,255,.55); border-radius: 999px; font: 11px var(--mono); padding: 10px 16px; }

/* Marquee and manifesto */
.trust-strip { overflow: hidden; text-align: center; }
.trust-strip > p { font-size: 14px; margin-bottom: 55px; }
.trust-marquee { overflow: hidden; }
.trust-marquee > div { animation: marquee 25s linear infinite; display: flex; gap: 75px; width: max-content; }
.trust-marquee span { color: var(--orange); font: 500 clamp(22px, 2.6vw, 38px) var(--serif); }
@keyframes marquee { to { transform: translateX(-50%); } }
.manifesto { align-items: flex-end; display: grid; grid-template-columns: 1fr auto; gap: 45px; min-height: 92vh; }
.manifesto-line { font: clamp(3rem, 6.6vw, 7.4rem)/.98 var(--serif); letter-spacing: -.045em; margin: 0; }
.manifesto-line i { color: transparent; filter: blur(10px); font-style: normal; text-shadow: 0 0 22px rgba(23,25,20,.45); transition: color .7s var(--ease), filter .7s var(--ease), text-shadow .7s var(--ease); }
.manifesto-line i.is-clear { color: var(--ink); filter: none; text-shadow: none; }

/* Feature blocks */
.navy-feature {
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(65px, 8vw, 110px);
}
.navy-feature h2 { color: var(--lime); font-size: clamp(3.8rem, 6vw, 7rem); margin: 0; max-width: 8ch; }
.navy-feature > div:nth-child(2) { align-self: end; font-size: 18px; max-width: 34rem; }
.metric-row { border-top: 1px solid rgba(255,255,255,.35); display: grid; gap: 30px; grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); padding-top: 35px; }
.metric strong { color: var(--lime); display: block; font: 4rem/1 var(--serif); }
.metric span { display: block; font-size: 13px; margin-top: 10px; }
.section-heading { align-items: end; display: grid; gap: 50px; grid-template-columns: 1fr .55fr; margin-bottom: 70px; }
.section-heading h2 { font-size: clamp(3.6rem, 6.4vw, 7rem); margin: 0; max-width: 10ch; }
.section-heading > p { color: var(--muted); font-size: 18px; }
.capability-tabs { border-bottom: 1px solid var(--line); display: flex; gap: 8px; }
.capability-tabs { scrollbar-width: none; }
.capability-tabs::-webkit-scrollbar { display: none; }
.capability-tabs button { background: transparent; border: 0; border-bottom: 4px solid transparent; color: var(--muted); cursor: pointer; font-size: clamp(18px, 2vw, 28px); padding: 0 24px 18px 0; }
.capability-tabs button.is-active { border-color: var(--orange); color: var(--ink); }
.capability-stage { background: var(--navy-2); border-radius: var(--radius); color: #fff; display: grid; grid-template-columns: .7fr 1.3fr; margin-top: 32px; min-height: 590px; overflow: hidden; }
#capability-copy { align-self: center; padding: clamp(40px, 6vw, 80px); }
#capability-copy h3 { color: var(--lime); font: 4.5rem/.95 var(--serif); margin: 0 0 35px; }
#capability-copy ul { list-style: none; margin: 0; padding: 0; }
#capability-copy li { border-top: 1px solid rgba(255,255,255,.25); padding: 15px 0; }
.workflow-visual { background: linear-gradient(135deg,#183e4f,#0e2633); }
.document-stack i { animation: document-flow 4.5s var(--ease) infinite; background: var(--ivory); border-radius: 8px; height: 150px; left: 22%; opacity: .9; position: absolute; top: 32%; width: 105px; }
.document-stack i:nth-child(2) { animation-delay: -.9s; left: 42%; top: 24%; }
.document-stack i:nth-child(3) { animation-delay: -1.8s; left: 62%; top: 39%; }
.document-stack b { background: var(--lime); border-radius: 50%; box-shadow: 0 0 70px var(--lime); height: 16px; left: 49%; position: absolute; top: 50%; width: 16px; }
@keyframes document-flow { 50% { transform: translateY(-25px) rotate(3deg); } }

/* Workflow */
.workflow { background: var(--orange); margin-top: 100px; overflow: hidden; }
.workflow .section-heading { color: #fff; padding-top: 100px; }
.workflow .section-heading > p { color: rgba(255,255,255,.78); }
.workflow-track { display: flex; gap: 14px; overflow-x: auto; padding: 0 max(24px, calc((100vw - 1380px)/2)) 110px; scrollbar-width: none; }
.workflow-card { background: var(--ivory); flex: 0 0 290px; min-height: 390px; padding: 28px; transition: background .35s, color .35s, transform .35s var(--ease); }
.workflow-card:hover, .workflow-card.active { background: var(--navy-2); color: #fff; transform: translateY(-14px); }
.workflow-card span { font: 12px var(--mono); }
.workflow-card h3 { font: 3.2rem/1 var(--serif); margin: 55px 0 25px; }
.workflow-card p { color: var(--muted); }
.workflow-card:hover p, .workflow-card.active p { color: rgba(255,255,255,.7); }

/* Human and proof */
.human-section { display: grid; grid-template-columns: 1.1fr .9fr; margin-block: 140px; min-height: 620px; }
.human-media { background: #9eac9e; }
.team-art { height: 100%; position: relative; }
.team-art::before { background: linear-gradient(135deg,#aebaa8,#4f6b64); content: ""; inset: 0; position: absolute; }
.team-art i { background: #263b40; border-radius: 50% 50% 10px 10px; bottom: 0; height: 70%; position: absolute; width: 28%; }
.team-art i:nth-child(1) { left: 7%; transform: rotate(-3deg); }
.team-art i:nth-child(2) { background: #c68e67; height: 78%; left: 36%; }
.team-art i:nth-child(3) { background: #ecddd0; right: 6%; transform: rotate(3deg); }
.human-copy { background: var(--navy); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 7vw, 95px); }
.human-copy h2 { color: var(--lime); font-size: clamp(3.4rem, 5vw, 5.8rem); margin: 0; }
.human-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 17px; margin-block: 35px; }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-grid article { border-left: 1px solid var(--line); min-height: 340px; padding: 25px; }
.proof-grid article:last-child { border-right: 1px solid var(--line); }
.proof-grid span { color: var(--orange); font: 11px var(--mono); }
.proof-grid h3 { font: 2.1rem/1 var(--serif); margin: 70px 0 20px; }
.proof-grid p { color: var(--muted); font-size: 14px; }
.final-cta { background: var(--navy-2); border-radius: var(--radius); color: #fff; margin-bottom: 100px; padding: clamp(65px, 9vw, 130px); text-align: center; }
.final-cta h2 { color: var(--lime); font-size: clamp(4rem, 7.5vw, 8.8rem); margin: 0 auto; max-width: 10ch; }
.final-cta > p:not(.eyebrow) { font-size: 18px; margin: 35px auto; max-width: 42rem; }

/* Shared internal pages */
.page-hero { border-top: 1px solid var(--line); padding: 110px 0 90px; }
.page-hero h1 { font-size: clamp(5rem, 10vw, 11rem); margin: 0; max-width: 9ch; }
.page-hero p { font-size: 20px; margin: 35px 0 0 auto; max-width: 38rem; }
.page-band { background: var(--navy); border-radius: var(--radius); color: #fff; padding: clamp(55px, 8vw, 100px); }
.page-band h2 { color: var(--lime); font-size: clamp(3.6rem, 6vw, 7rem); margin: 0; max-width: 10ch; }
.content-grid { display: grid; gap: 18px; grid-template-columns: repeat(3,1fr); margin-block: 70px 120px; }
.content-card { border: 1px solid var(--line); min-height: 310px; padding: 30px; }
.content-card span { color: var(--orange); font: 11px var(--mono); }
.content-card h2, .content-card h3 { font: 2.7rem/1 var(--serif); margin: 50px 0 20px; }
.content-card p { color: var(--muted); }
.article-list article { border-top: 1px solid var(--line); display: grid; gap: 30px; grid-template-columns: 120px 1fr auto; padding: 30px 0; }
.article-list h2 { font: 2.5rem/1 var(--serif); margin: 0; }
.article-list p { color: var(--muted); margin: 0; }
.contact-layout { display: grid; gap: 70px; grid-template-columns: .8fr 1.2fr; margin-bottom: 120px; }
.contact-form { background: var(--navy); border-radius: var(--radius); color: #fff; display: grid; gap: 20px; padding: clamp(35px,6vw,75px); }
.contact-form label { display: grid; font-size: 12px; gap: 8px; }
.contact-form input, .contact-form textarea { background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.4); border-radius: 0; color: #fff; padding: 12px 0; resize: vertical; }
.form-success { background: var(--lime); color: var(--ink); padding: 30px; }

/* Footer */
.site-footer { background: var(--navy-2); color: #fff; padding: 70px 0 30px; }
.footer-grid { display: grid; gap: 50px; grid-template-columns: 1.2fr .8fr .8fr; }
.footer-grid h2 { color: var(--lime); font-size: clamp(3rem,5vw,5.5rem); margin: 25px 0; max-width: 8ch; }
.footer-grid h3 { font-size: 13px; font-weight: 500; margin-bottom: 22px; text-transform: uppercase; }
.footer-grid a { display: block; margin: 9px 0; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.2); display: flex; font-size: 11px; justify-content: space-between; margin-top: 70px; padding-top: 22px; }

@media (max-width: 850px) {
  :root { --shell: min(100% - 28px, 1480px); --radius: 20px; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav, .header-actions { display: none; }
  .menu-toggle { background: none; border: 0; display: grid; gap: 5px; padding: 8px; }
  .menu-toggle i { background: var(--ink); display: block; height: 1px; width: 22px; }
  .site-header.nav-open .site-nav { background: var(--ivory); display: flex; flex-direction: column; gap: 25px; inset: 82px 0 auto; padding: 35px 20px 50px; position: fixed; z-index: 20; }
  .hero-panel, .navy-feature, .section-heading, .capability-stage, .human-section, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 28px 45px; }
  .hero-copy h1 { font-size: clamp(4.3rem, 18vw, 7rem); }
  .hero-media { min-height: 540px; }
  .hero-benefits { bottom: 18px; gap: 5px; left: 20px; right: 20px; }
  .hero-benefits span { font-size: 8px; padding: 7px; }
  .manifesto { align-items: start; grid-template-columns: 1fr; min-height: auto; }
  .manifesto-line { font-size: clamp(3.2rem, 14vw, 5.8rem); }
  .navy-feature { gap: 38px; padding: 55px 28px; }
  .metric-row { grid-template-columns: 1fr; }
  .section-heading { align-items: start; gap: 20px; }
  .section-heading h2 { font-size: clamp(3.7rem, 15vw, 6rem); }
  .capability-stage { min-height: 850px; }
  .workflow-visual { min-height: 480px; }
  .human-media { min-height: 480px; }
  .proof-grid, .content-grid { grid-template-columns: 1fr; }
  .proof-grid article, .proof-grid article:last-child { border-bottom: 1px solid var(--line); border-right: 0; min-height: auto; }
  .proof-grid h3 { margin-top: 35px; }
  .final-cta { padding-inline: 26px; }
  .final-cta h2 { font-size: clamp(3.7rem, 15vw, 6.2rem); }
  .page-hero { padding-top: 70px; }
  .page-hero h1 { font-size: clamp(4.5rem, 19vw, 8rem); }
  .article-list article { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

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

/* Full-canvas fidelity pass ------------------------------------------------ */
:root { --shell: min(1480px, calc(100% - 48px)); }
.site-header { width: min(1380px, calc(100% - 48px)); }

.hero.shell,
.results-scene.shell,
.capabilities.shell,
.human-section.shell,
.final-cta.shell {
  width: calc(100% - 8px);
}
.hero-panel { min-height: calc(100svh - 86px); }
.hero-copy { padding-left: clamp(70px, 7vw, 138px); }
.hero-copy h1 { font-size: clamp(5rem, 7vw, 8.4rem); }
.hero-media { min-height: 760px; }

.results-scene {
  min-height: min(920px, 100svh);
  overflow: hidden;
  padding: clamp(110px, 12vw, 205px) clamp(70px, 15vw, 285px) 280px;
  position: relative;
}
.results-scene > div:not(.metric-row):not(.results-rig) { position: relative; z-index: 4; }
.results-scene .metric-row {
  border: 0;
  bottom: 86px;
  display: flex;
  gap: 12px;
  left: 50%;
  padding: 0;
  position: absolute;
  transform: translateX(-50%);
  width: min(1060px, calc(100% - 80px));
  z-index: 5;
}
.results-scene .metric {
  background: #395565;
  border: 1px solid rgba(217,255,113,.8);
  box-shadow: 0 0 0 12px rgba(255,255,255,.06);
  flex: 1;
  min-height: 170px;
  padding: 28px;
}
.results-scene .metric strong { font-size: clamp(2.7rem, 4.3vw, 5.3rem); }
.results-scene .metric span { font-size: 14px; }
.results-rig { bottom: -165px; height: 570px; left: 50%; position: absolute; transform: translateX(-50%); width: min(720px, 64vw); z-index: 1; }
.results-rig::before, .results-rig::after, .results-rig i { border: 1px solid rgba(217,255,113,.16); content: ""; left: 50%; position: absolute; transform: translateX(-50%); }
.results-rig::before { border-radius: 160px 160px 0 0; bottom: 0; height: 330px; width: 88%; }
.results-rig::after { border-radius: 130px 130px 0 0; bottom: 0; height: 300px; width: 75%; }
.results-rig i:first-child { border-bottom: 0; border-radius: 55px 55px 0 0; height: 90px; top: 45px; width: 85px; }
.results-rig i:nth-child(2) { background: linear-gradient(180deg,rgba(217,255,113,.08),transparent); border-radius: 30px; height: 90px; top: 90px; width: 360px; }
.results-rig b { align-items: center; color: rgba(255,255,255,.12); display: flex; font-size: 24px; gap: 12px; justify-content: center; left: 50%; position: absolute; top: 118px; transform: translateX(-50%); white-space: nowrap; }
.results-rig .brand-mark { border-color: currentColor; height: 22px; width: 22px; }
.results-rig .brand-mark::before, .results-rig .brand-mark::after { background: var(--navy); border-color: currentColor; }

.capabilities {
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
  margin-block: 8px;
  min-height: 930px;
  padding: 110px clamp(40px, 8.5vw, 165px) 75px;
  position: relative;
}
.capabilities .section-heading { display: block; left: clamp(40px, 8.5vw, 165px); margin: 0; position: absolute; top: 110px; width: 38%; z-index: 3; }
.capabilities .section-heading h2 { color: var(--lime); }
.capabilities .section-heading h2 { font-size: clamp(3.6rem, 4.7vw, 5.7rem); max-width: 9ch; }
.capabilities .section-heading > p { color: rgba(255,255,255,.75); }
.capabilities .section-heading > p { margin-top: 28px; max-width: 34rem; }
.capabilities .capability-tabs { border-color: rgba(255,255,255,.4); bottom: 75px; left: clamp(40px, 8.5vw, 165px); margin: 0; position: absolute; width: 38%; z-index: 4; }
.capabilities .capability-tabs button { color: rgba(255,255,255,.68); }
.capabilities .capability-tabs button.is-active { border-color: var(--lime); color: #fff; }
.capabilities .capability-stage { background: transparent; border-radius: 0; display: block; margin: 0; min-height: 745px; overflow: visible; }
.capabilities #capability-copy { bottom: 145px; left: clamp(40px, 8.5vw, 165px); padding: 0; position: absolute; width: 38%; }
.capabilities #capability-copy h3 { display: none; }
.capabilities #capability-copy ul { display: grid; gap: 10px; grid-template-columns: repeat(3,1fr); }
.capabilities #capability-copy li { border: 1px solid rgba(255,255,255,.25); font-size: 12px; padding: 14px; }
.capabilities .workflow-visual { background: transparent; overflow: visible; }
.capabilities .workflow-visual { height: 745px; position: absolute; right: clamp(40px, 8.5vw, 165px); top: 110px; width: 45%; }
.document-matrix { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); height: 100%; padding: 0; }
.document-matrix i {
  align-items: center;
  animation: matrix-breathe 5s var(--ease) infinite alternate;
  background: var(--ivory);
  border: 1px solid rgba(23,25,20,.18);
  border-radius: 8px;
  color: var(--orange);
  display: flex;
  font: normal 11px var(--mono);
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
.document-matrix i::before { background: repeating-linear-gradient(180deg,rgba(23,25,20,.09) 0 5px,transparent 5px 16px); content: ""; filter: blur(1px); inset: 15px; opacity: .5; position: absolute; }
.document-matrix i::after { background: linear-gradient(90deg,transparent,var(--ivory) 48%,transparent); content: ""; inset: 0; opacity: .75; position: absolute; transform: translateX(-100%); }
.document-matrix i:nth-child(2n) { animation-delay: -1.2s; }
.document-matrix i:nth-child(3n) { animation-delay: -2.4s; }
.document-matrix i b { position: relative; z-index: 2; }
@keyframes matrix-breathe { to { transform: translateY(-8px); } }

.convergence {
  background: #020302;
  color: #fff;
  min-height: 980px;
  overflow: hidden;
  padding: 100px 24px 0;
  position: relative;
}
.convergence-inner { height: 880px; margin: auto; max-width: 1120px; position: relative; }
.source-row { display: grid; gap: 20px; grid-template-columns: repeat(6,1fr); position: relative; z-index: 2; }
.source-row span { align-items: center; display: flex; flex-direction: column; font: 12px var(--mono); gap: 10px; }
.source-row i { align-items: center; border: 1px solid rgba(255,255,255,.85); border-radius: 50%; display: flex; font: normal 18px var(--sans); height: 52px; justify-content: center; width: 52px; }
.flow-lines { height: 320px; left: 0; position: absolute; top: 70px; width: 100%; }
.flow-lines path { fill: none; stroke: rgba(255,255,255,.22); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.convergence-copy { left: 50%; position: absolute; text-align: center; top: 400px; transform: translateX(-50%); width: min(470px,90vw); z-index: 4; }
.convergence-copy .eyebrow { color: var(--lime); margin-bottom: 12px; }
.convergence-copy h2 { font-size: clamp(3.5rem,5vw,6rem); margin: 0; }
.convergence-copy p { color: rgba(255,255,255,.72); margin: 24px auto; max-width: 38rem; }
.sequence { align-items: center; border: 1px solid var(--lime); border-radius: 50%; color: var(--lime); display: flex; font: 18px var(--mono); height: 62px; justify-content: center; margin: 26px auto 0; width: 62px; }
.signal-arc { border: 1px solid var(--lime); border-bottom: 0; border-radius: 50% 50% 0 0 / 100% 100% 0 0; bottom: -360px; height: 650px; left: 50%; overflow: hidden; position: absolute; transform: translateX(-50%); width: 1180px; }
.signal-arc::before { background: linear-gradient(180deg,#769faf,#304c58 55%,#020302); border: 1px solid var(--lime); border-radius: inherit; content: ""; inset: 70px 70px 0; position: absolute; }
.signal-arc i { animation: arc-glow 6s ease-in-out infinite; background: radial-gradient(circle,rgba(217,255,113,.38),transparent 65%); height: 330px; left: 10%; position: absolute; top: -70px; width: 330px; }
@keyframes arc-glow { 50% { left: 65%; opacity: .45; } }

.human-section { margin-block: 8px; }
.human-copy { padding-inline: clamp(55px,9vw,170px); }

.proof-rail { overflow: hidden; width: 100%; }
.proof-rail .section-heading { margin-inline: auto; width: min(1380px, calc(100% - 48px)); }
.proof-rail .proof-grid { display: flex; gap: 24px; overflow-x: auto; padding: 0 max(24px, calc((100vw - 1380px)/2)) 35px; scroll-snap-type: x mandatory; scrollbar-width: none; width: 100%; }
.proof-rail .proof-grid article { border: 1px solid var(--orange); border-radius: 14px; flex: 0 0 min(440px,82vw); min-height: 360px; padding: 28px; scroll-snap-align: start; }
.proof-rail .proof-grid article:last-child { border-right: 1px solid var(--orange); }
.proof-rail .proof-grid h3 { color: var(--orange); margin-top: 70px; }

.final-cta { margin-bottom: 8px; }

/* Cinematic footer */
.site-footer {
  background: linear-gradient(180deg,#6b94a6 0%,#567b8c 45%,#304f5f 100%);
  color: #fff;
  min-height: 930px;
  overflow: hidden;
  padding: 115px 0 0;
  position: relative;
}
.site-footer::after { background: linear-gradient(180deg,transparent 35%,rgba(9,37,53,.55)); content: ""; inset: 0; pointer-events: none; position: absolute; }
.footer-clouds { inset: 0; overflow: hidden; position: absolute; }
.footer-clouds i { animation: cloud-drift 25s ease-in-out infinite alternate; background: radial-gradient(ellipse at center,rgba(255,255,255,.62),rgba(255,255,255,.12) 55%,transparent 72%); filter: blur(8px); height: 240px; position: absolute; width: 700px; }
.footer-clouds i:first-child { left: -8%; top: 38%; }
.footer-clouds i:nth-child(2) { animation-delay: -9s; right: -10%; top: 28%; }
.footer-clouds i:nth-child(3) { animation-delay: -15s; left: 35%; top: 52%; width: 950px; }
@keyframes cloud-drift { to { transform: translateX(80px) scale(1.08); } }
.footer-marquee { font: clamp(6rem,10vw,12rem)/.88 var(--serif); letter-spacing: -.05em; overflow: hidden; position: relative; white-space: nowrap; z-index: 2; }
.footer-marquee span { animation: footer-marquee 28s linear infinite; color: var(--lime); display: inline-block; }
@keyframes footer-marquee { to { transform: translateX(-50%); } }
.footer-intro { align-items: center; display: flex; gap: 30px; justify-content: flex-end; margin: 25px auto 110px; position: relative; width: min(1380px,calc(100% - 48px)); z-index: 3; }
.footer-intro p { margin: 0; }
.footer-card { backdrop-filter: blur(18px); background: rgba(248,246,220,.13); border: 1px solid rgba(255,255,255,.9); border-bottom: 0; border-radius: 28px 28px 0 0; bottom: 0; left: 50%; position: absolute; transform: translateX(-50%); width: min(1440px,calc(100% - 48px)); z-index: 4; }
.footer-brand { background: var(--lime); border-radius: 27px 27px 0 0; color: var(--navy-2); padding: 25px; }
.footer-brand .brand-mark::before, .footer-brand .brand-mark::after { background: var(--lime); }
.footer-links { display: grid; grid-template-columns: repeat(5,1fr); }
.footer-links a { border-bottom: 1px solid rgba(255,255,255,.8); border-right: 1px solid rgba(255,255,255,.8); display: flex; justify-content: space-between; margin: 0; padding: 25px; text-decoration: none; }
.footer-links a:last-child { border-right: 0; }
.footer-links b { color: var(--lime); font-weight: 400; }
.footer-contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 125px; }
.footer-contact > * { margin: 0; padding: 25px; }
.footer-contact > p { border-left: 1px solid rgba(255,255,255,.8); }
.footer-contact a { display: block; margin: 4px 0; text-decoration: none; }
.footer-contact div > p { margin-top: 0; }
.site-footer .footer-bottom { margin: 0; padding: 20px 25px; }
.site-footer > .media-label { bottom: auto; left: auto; right: 24px; top: 24px; }

@media (max-width: 850px) {
  :root { --shell: min(100% - 28px, 1480px); }
  .site-header { width: calc(100% - 28px); }
  .hero.shell, .results-scene.shell, .capabilities.shell, .human-section.shell, .final-cta.shell { width: calc(100% - 8px); }
  .hero-copy { padding-left: 28px; }
  .hero-media { min-height: 500px; }
  .results-scene { min-height: 1120px; padding: 70px 28px 520px; }
  .results-scene .metric-row { bottom: 70px; flex-direction: column; width: calc(100% - 48px); }
  .results-scene .metric { min-height: 125px; padding: 20px; }
  .results-rig { bottom: -180px; width: 95vw; }
  .capabilities { padding: 75px 24px; }
  .capabilities { min-height: 0; }
  .capabilities .section-heading { left: auto; position: static; top: auto; width: auto; }
  .capabilities .capability-tabs { margin-right: 0; overflow-x: auto; }
  .capabilities .capability-tabs { bottom: auto; left: auto; margin-top: 35px; position: static; width: auto; }
  .capabilities .capability-stage { min-height: auto; }
  .capabilities #capability-copy { bottom: auto; left: auto; padding: 35px 0 60px; position: static; width: auto; }
  .capabilities #capability-copy ul { grid-template-columns: 1fr; }
  .capabilities .workflow-visual { height: auto; position: relative; right: auto; top: auto; width: auto; }
  .document-matrix { gap: 7px; min-height: 670px; padding: 0; }
  .document-matrix i { min-height: 135px; }
  .convergence { min-height: 870px; padding-inline: 12px; }
  .convergence-inner { height: 760px; }
  .source-row { gap: 5px; }
  .source-row span { font-size: 7px; }
  .source-row i { height: 34px; width: 34px; }
  .flow-lines { top: 48px; }
  .convergence-copy { top: 350px; }
  .signal-arc { bottom: -380px; height: 590px; width: 760px; }
  .proof-rail .section-heading { width: calc(100% - 28px); }
  .proof-rail .proof-grid { padding-left: 14px; padding-right: 14px; }
  .site-footer { min-height: 970px; padding-top: 85px; }
  .footer-marquee { font-size: clamp(5rem,23vw,8rem); }
  .footer-intro { align-items: flex-start; flex-direction: column; margin-bottom: 90px; width: calc(100% - 28px); }
  .footer-card { width: calc(100% - 16px); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links a:nth-child(even) { border-right: 0; }
  .footer-contact { grid-template-columns: 1fr; }
  .footer-contact > p { border-left: 0; border-top: 1px solid rgba(255,255,255,.8); }
  .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}
