@charset "UTF-8";

:root {
  --bg: #050607;
  --bg-soft: #090a0c;
  --panel: #0b0c0f;
  --panel-2: #0e1014;
  --text: #f5f2ed;
  --muted: #94979f;
  --muted-2: #686b72;
  --line: rgba(255,255,255,.11);
  --line-soft: rgba(255,255,255,.065);
  --red: #e62738;
  --red-bright: #ff3448;
  --red-dark: #7d101d;
  --shell: 1240px;
  --serif: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 4%, rgba(158,15,30,.14), transparent 28rem),
    radial-gradient(circle at 18% 26%, rgba(92,4,18,.09), transparent 34rem),
    var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .33;
  background-image:
    radial-gradient(circle at 8% 13%, rgba(255,255,255,.8) 0 1px, transparent 1.2px),
    radial-gradient(circle at 28% 37%, rgba(255,255,255,.5) 0 1px, transparent 1.2px),
    radial-gradient(circle at 69% 17%, rgba(255,255,255,.7) 0 1px, transparent 1.2px),
    radial-gradient(circle at 83% 42%, rgba(255,255,255,.45) 0 1px, transparent 1.2px),
    radial-gradient(circle at 47% 72%, rgba(255,255,255,.48) 0 1px, transparent 1.2px),
    radial-gradient(circle at 92% 88%, rgba(230,39,56,.72) 0 1px, transparent 1.3px);
  background-size: 260px 260px, 340px 340px, 430px 430px, 370px 370px, 520px 520px, 610px 610px;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

::selection { color: #fff; background: var(--red); }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(4,5,6,.94);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  overflow: visible;
}

.brand img {
  width: auto;
  height: 56px;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c8cad0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav .nav-cta {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.18);
}
.desktop-nav .nav-cta:hover { border-color: var(--red); }

.menu-button {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.018);
  cursor: pointer;
}
.menu-button span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 1px;
  background: #fff;
  transition: transform .22s ease, top .22s ease;
}
.menu-button span:first-child { top: 21px; }
.menu-button span:last-child { top: 29px; }
.menu-button[aria-expanded="true"] span:first-child { top: 25px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 25px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 88px 0 auto;
  z-index: 99;
  display: grid;
  padding: 24px max(32px, calc((100vw - var(--shell))/2));
  background: rgba(4,5,6,.985);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  color: #e4e5e8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mobile-nav a:last-child { color: var(--red-bright); border-bottom: 0; }

.section-pad { padding: 116px 0; }
.section-index,
.eyebrow {
  margin: 0;
  color: #b8bac0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 42px; height: 2px; background: var(--red); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 142px 0 52px;
  overflow: clip;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line-soft);
}
.hero-aura {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,22,39,.18), rgba(75,2,14,.05) 42%, transparent 69%);
  filter: blur(12px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
}
.hero-copy { min-width: 0; }
.hero h1 {
  margin: 22px 0 0;
  max-width: 8.8ch;
  font-family: var(--serif);
  font-size: clamp(76px, 7.2vw, 122px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero h1 em {
  display: block;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
}
.hero-lead {
  max-width: 590px;
  margin: 32px 0 0;
  color: #a8abb2;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button span { margin-left: 18px; font-size: 16px; }
.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 34px rgba(230,39,56,.18);
}
.button-primary:hover { transform: translateY(-2px); background: var(--red-bright); box-shadow: 0 16px 40px rgba(230,39,56,.26); }
.text-link {
  color: #d5d6da;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.text-link span { margin-left: 10px; color: var(--red); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: #73767d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-meta span { position: relative; }
.hero-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
}

.hero-visual { min-width: 0; }
.orbit-card {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 67% 35%, rgba(204,25,43,.22), transparent 17rem),
    linear-gradient(145deg, rgba(255,255,255,.025), rgba(0,0,0,.3) 48%, rgba(89,3,16,.12));
  box-shadow: 0 28px 80px rgba(0,0,0,.46), inset 0 0 80px rgba(164,14,31,.055);
}
.orbit-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, #000, transparent 76%);
}
.hero-globe {
  position: absolute;
  top: 42px;
  left: 50%;
  width: min(108%, 720px);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  filter: contrast(1.08) saturate(1.05) drop-shadow(0 28px 38px rgba(0,0,0,.65));
}
.hero-wordmark {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: min(67%, 410px);
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.7));
}
.signal {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), rgba(255,255,255,.95), var(--red), transparent);
  box-shadow: 0 0 18px rgba(230,39,56,.75);
  transform: rotate(-31deg);
}
.signal-one { top: 24%; left: -18%; width: 74%; }
.signal-two { right: -22%; bottom: 31%; width: 67%; }

.proof-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-bar > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.proof-bar > div:first-child { padding-left: 0; }
.proof-bar > div:last-child { border-right: 0; }
.proof-bar strong { color: var(--red); font-size: 10px; letter-spacing: .2em; }
.proof-bar span { color: #a3a6ad; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.statement {
  position: relative;
  background: linear-gradient(180deg, #08090b, #050607);
  border-bottom: 1px solid var(--line-soft);
}
.statement-grid {
  display: grid;
  grid-template-columns: .32fr 1fr;
  align-items: start;
  gap: 50px;
}
.statement h2,
.section-heading h2,
.process h2,
.network h2,
.manifesto h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 6.25vw, 104px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.statement h2 em,
.section-heading h2 em,
.process h2 em,
.network h2 em,
.manifesto h2 em,
.contact h2 em {
  color: var(--red);
  font-weight: 400;
}
.statement-grid > div > p {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.capabilities { border-bottom: 1px solid var(--line-soft); }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .65fr;
  align-items: end;
  gap: 70px;
}
.section-heading h2 { margin-top: 18px; }
.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}
.capability-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  background: var(--panel);
  transition: background .25s ease, transform .25s ease;
}
.capability-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% 30%;
  height: 82%;
  background: radial-gradient(circle, rgba(230,39,56,.15), transparent 65%);
  opacity: 0;
  transition: opacity .25s ease;
}
.capability-card:hover { z-index: 1; background: #101116; }
.capability-card:hover::before { opacity: 1; }
.card-number { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.capability-card h3 {
  margin: 106px 0 18px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.capability-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.72; }
.card-arrow { position: absolute; right: 30px; bottom: 26px; color: var(--red); font-size: 20px; }

.process {
  background:
    radial-gradient(circle at 8% 50%, rgba(125,16,29,.1), transparent 35rem),
    #07080a;
  border-bottom: 1px solid var(--line-soft);
}
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1fr);
  align-items: start;
  gap: clamp(70px, 9vw, 138px);
}
.process-copy h2 { margin-top: 20px; }
.process-copy > p:last-child { max-width: 510px; margin: 32px 0 0; color: var(--muted); line-height: 1.8; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 24px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li > span { padding-top: 7px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1.1; }
.process-list p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }

.network { border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.network-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, .85fr);
  align-items: center;
  gap: clamp(70px, 8vw, 124px);
}
.network-art {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  background: radial-gradient(circle at center, rgba(135,11,27,.16), transparent 58%);
  overflow: hidden;
}
.network-lines {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 64px, rgba(230,39,56,.1) 65px 66px);
  opacity: .7;
}
.network-art img {
  position: relative;
  z-index: 1;
  width: 110%;
  max-width: none;
  filter: contrast(1.07) saturate(1.04) drop-shadow(0 30px 46px rgba(0,0,0,.65));
}
.network-copy h2 { margin-top: 20px; }
.network-copy > p:not(.section-index) { margin: 32px 0 0; color: var(--muted); line-height: 1.8; }
.network-stats { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid var(--line); }
.network-stats > div { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.network-stats strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.network-stats span { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; text-align: right; }

.manifesto {
  text-align: center;
  background:
    linear-gradient(rgba(3,4,5,.66), rgba(3,4,5,.76)),
    radial-gradient(circle at 50% 55%, rgba(230,39,56,.24), transparent 22rem),
    #060709;
  border-bottom: 1px solid var(--line-soft);
}
.manifesto p { margin: 0 0 24px; color: #a4a7ad; font-size: 11px; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.manifesto h2 { font-size: clamp(68px, 7.8vw, 126px); }

.contact { background: #07080a; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(70px, 9vw, 140px);
}
.contact-copy h2 { margin-top: 20px; }
.contact-copy > p:not(.section-index) { max-width: 480px; margin: 30px 0 0; color: var(--muted); line-height: 1.8; }
.email-link { display: inline-block; margin-top: 28px; color: #d8d9dc; font-size: 14px; border-bottom: 1px solid var(--red); }
.contact-form { padding: 38px; border: 1px solid var(--line); background: linear-gradient(145deg, #0b0c0f, #08090b); box-shadow: 0 26px 80px rgba(0,0,0,.24); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 9px; margin-bottom: 18px; }
.contact-form label > span { color: #9b9ea5; font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.17);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input { min-height: 50px; }
.contact-form textarea { min-height: 122px; padding: 12px 0; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--red); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #55585f; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.submit-button { width: 100%; margin-top: 12px; }
.form-note { margin: 22px 0 0; color: #71747b; font-size: 12px; }
.form-note a { color: #b9bbc0; border-bottom: 1px solid #777a80; }
.form-status { min-height: 22px; margin: 14px 0 0; color: #bfc1c6; font-size: 13px; }
.form-status.is-error { color: #ff6b78; }
.form-status.is-success { color: #d9f1df; }

.site-footer { border-top: 1px solid var(--line-soft); background: #030405; }
.footer-main { display: flex; justify-content: space-between; gap: 60px; padding: 58px 0 44px; }
.footer-brand img { width: auto; height: 64px; max-width: 300px; object-fit: contain; object-position: left center; }
.footer-main p { margin: 22px 0 0; color: #a5a7ac; font-family: var(--serif); font-size: 30px; }
.footer-links { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 28px; padding-top: 18px; }
.footer-links a { color: #85888e; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0 28px; border-top: 1px solid var(--line-soft); color: #5f6268; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: minmax(0,.9fr) minmax(390px,1.1fr); gap: 48px; }
  .orbit-card { min-height: 540px; }
  .hero-globe { top: 46px; width: 112%; }
  .process-grid { grid-template-columns: .86fr 1fr; gap: 70px; }
  .network-grid { grid-template-columns: .95fr .8fr; gap: 70px; }
  .contact-grid { grid-template-columns: .75fr minmax(470px,1fr); gap: 70px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 78px; }
  .shell { width: min(calc(100% - 44px), var(--shell)); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .header-inner { min-height: 76px; }
  .brand img { height: 46px; max-width: min(210px, calc(100vw - 100px)); }
  .mobile-nav { inset: 76px 0 auto; padding-inline: 22px; }
  .section-pad { padding: 82px 0; }

  .hero { min-height: auto; padding: 110px 0 42px; }
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; width: min(100%, 650px); margin-inline: auto; }
  .hero h1 { max-width: 8.6ch; font-size: clamp(66px, 13vw, 92px); line-height: .84; }
  .hero-lead { max-width: 640px; }
  .orbit-card { min-height: 0; aspect-ratio: 1.02 / 1; }
  .hero-globe { top: 4%; width: 108%; }
  .hero-wordmark { bottom: 5%; width: min(66%, 390px); }
  .proof-bar { margin-top: 40px; }
  .proof-bar > div { padding: 0 16px; }

  .statement-grid,
  .section-heading,
  .process-grid,
  .network-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .statement-grid { gap: 28px; }
  .statement h2,
  .section-heading h2,
  .process h2,
  .network h2,
  .contact h2 { font-size: clamp(54px, 9.2vw, 80px); }
  .statement-grid > div > p { margin-top: 26px; }
  .section-heading { align-items: start; }
  .section-heading > p { max-width: 620px; }
  .capability-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .capability-card { min-height: 280px; }
  .capability-card h3 { margin-top: 70px; }
  .process-grid { gap: 50px; }
  .network-grid { gap: 48px; }
  .network-art { order: 2; min-height: 0; aspect-ratio: 1.15 / 1; }
  .network-copy { order: 1; }
  .network-art img { width: 112%; }
  .manifesto h2 { font-size: clamp(58px, 10vw, 86px); }
  .contact-grid { gap: 50px; }
  .contact-form { max-width: 700px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .header-inner { min-height: 72px; }
  .brand img { height: 42px; max-width: calc(100vw - 92px); }
  .menu-button { width: 48px; height: 48px; }
  .menu-button span { left: 13px; right: 13px; }
  .mobile-nav { inset: 72px 0 auto; padding-inline: 18px; }
  .section-pad { padding: 66px 0; }

  .hero { padding: 98px 0 34px; }
  .hero-grid { gap: 30px; }
  .eyebrow { font-size: 8px; letter-spacing: .24em; }
  .eyebrow span { width: 30px; }
  .hero h1 { margin-top: 18px; max-width: 8.5ch; font-size: clamp(54px, 15.2vw, 68px); line-height: .84; }
  .hero-lead { margin-top: 23px; font-size: 15px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 29px; }
  .button { width: 100%; min-height: 55px; }
  .text-link { text-align: center; }
  .hero-meta { gap: 9px 18px; margin-top: 25px; font-size: 8px; }
  .hero-meta span:not(:last-child)::after { right: -10px; }
  .orbit-card { aspect-ratio: 1 / 1.05; }
  .hero-globe { top: 8%; width: 116%; }
  .hero-wordmark { bottom: 6%; width: min(72%, 290px); }
  .proof-bar { grid-template-columns: 1fr; margin-top: 32px; }
  .proof-bar > div { min-height: 54px; padding: 0 !important; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .proof-bar > div:last-child { border-bottom: 0; }

  .statement-grid,
  .section-heading,
  .process-grid,
  .network-grid,
  .contact-grid { gap: 32px; }
  .statement h2,
  .section-heading h2,
  .process h2,
  .network h2,
  .contact h2 { font-size: clamp(43px, 12.2vw, 58px); line-height: .91; }
  .statement-grid > div > p,
  .process-copy > p:last-child,
  .network-copy > p:not(.section-index),
  .contact-copy > p:not(.section-index) { margin-top: 24px; font-size: 15px; line-height: 1.72; }
  .section-heading > p { font-size: 15px; }
  .capability-grid { margin-top: 36px; }
  .capability-card { min-height: 250px; padding: 26px 24px; }
  .capability-card h3 { margin-top: 54px; font-size: 35px; }
  .capability-card p { font-size: 14px; }
  .process-grid { gap: 38px; }
  .process-list li { grid-template-columns: 34px 1fr; gap: 14px; padding: 23px 0; }
  .process-list h3 { font-size: 28px; }
  .process-list p { font-size: 13px; line-height: 1.55; }
  .network-art { aspect-ratio: 1 / .92; }
  .network-stats { margin-top: 32px; }
  .network-stats strong { font-size: 24px; }
  .manifesto p { font-size: 8px; letter-spacing: .22em; }
  .manifesto h2 { font-size: clamp(45px, 12.4vw, 60px); line-height: .92; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 27px 20px; }
  .footer-main { flex-direction: column; gap: 34px; padding: 46px 0 34px; }
  .footer-brand img { height: 52px; max-width: min(245px, 72vw); }
  .footer-main p { margin-top: 17px; font-size: 25px; }
  .footer-links { gap: 22px; padding-top: 0; }
  .footer-bottom { flex-direction: column; gap: 8px; padding-bottom: 24px; }
}

@media (max-width: 380px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .brand img { height: 38px; }
  .hero h1 { font-size: 50px; }
  .hero-globe { width: 120%; }
}
