@font-face {
  font-family: "Newsreader";
  src: url("newsreader-display.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}

:root {
  --bg: oklch(0.15 0.02 262);
  --bg-deep: oklch(0.105 0.018 262);
  --bg-raise: oklch(0.19 0.024 262);
  --panel: oklch(0.22 0.026 262 / 0.55);
  --panel-solid: oklch(0.20 0.024 262);
  --border: oklch(1 0 0 / 0.09);
  --border-strong: oklch(1 0 0 / 0.16);
  --text: oklch(0.97 0.006 90);
  --text-dim: oklch(0.74 0.02 262);
  --text-faint: oklch(0.58 0.02 262);
  --gold: oklch(0.80 0.115 85);
  --gold-soft: oklch(0.80 0.115 85 / 0.14);
  --cyan: oklch(0.80 0.115 200);
  --cyan-soft: oklch(0.80 0.115 200 / 0.14);
  --violet: oklch(0.78 0.115 300);
  --violet-soft: oklch(0.78 0.115 300 / 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
body.menu-open #crs-root, body.modal-open #crs-root { opacity: 0; visibility: hidden; pointer-events: none; }
::selection { background: var(--gold); color: var(--bg-deep); }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: "Newsreader", Georgia, serif; font-weight: 400; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: -70px;
  left: 18px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 0 0 8px 8px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 13px;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.page {
  width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(1100px 600px at 82% -6%, oklch(0.30 0.05 300 / 0.22), transparent 60%),
    radial-gradient(900px 500px at -6% 12%, oklch(0.32 0.06 200 / 0.16), transparent 60%),
    var(--bg);
}
.container { width: min(100%, 1240px); margin: 0 auto; padding: 0 40px; }
.eyebrow { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.section { padding: 118px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 16px; display: block; }
.section-head h2 { font-size: clamp(34px, 3.2vw, 44px); line-height: 1.18; color: var(--text); }
.section-head p { margin-top: 16px; font-size: 16px; line-height: 1.7; color: var(--text-dim); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.11 0.018 262 / 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 40px;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); flex-shrink: 0; }
.brand:hover { color: var(--text); }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-word { font-size: 16.5px; letter-spacing: 0.02em; font-weight: 700; color: var(--text); white-space: nowrap; }
.brand-word span { font-weight: 400; color: var(--text-dim); letter-spacing: 0.14em; margin-left: 6px; font-size: 13px; vertical-align: 1px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.25vw, 20px); flex: 1; }
.nav-links a { position: relative; padding: 30px 0 27px; font-size: 12.5px; color: var(--text-dim); font-weight: 500; letter-spacing: 0.01em; white-space: nowrap; transition: color .18s ease; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: 23px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="location"] { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current="location"]::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: transparent;
}
.menu-toggle span { position: absolute; left: 12px; top: 18px; width: 18px; height: 1px; background: var(--text); transition: top .2s ease, transform .2s ease; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; height: calc(100vh - 82px); height: calc(100dvh - 82px); overflow-y: auto; border-top: 1px solid var(--border); background: var(--bg-deep); }
.mobile-nav.open { display: block; }
.mobile-nav-inner { width: min(100%, 680px); margin: 0 auto; padding: 18px 24px 30px; display: grid; }
.mobile-nav a { display: flex; justify-content: space-between; align-items: center; min-height: 48px; padding: 10px 4px; border-bottom: 1px solid var(--border); color: var(--text-dim); font-size: 15px; }
.mobile-nav a span { color: var(--gold); font-size: 11px; letter-spacing: .1em; }
.mobile-nav .mobile-nav-cta { justify-content: center; margin-top: 20px; border: 0; border-radius: 3px; background: linear-gradient(135deg, var(--gold), oklch(0.72 0.12 60)); color: var(--bg-deep); font-weight: 700; }

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 3px;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), oklch(0.72 0.12 60)); color: oklch(0.14 0.02 262); font-weight: 700; border: 0; }
.btn-primary:hover { color: oklch(0.14 0.02 262); transform: translateY(-1px); box-shadow: 0 10px 28px oklch(0.80 0.115 85 / 0.25); }
.btn-ghost { background: transparent; color: var(--text); font-weight: 500; border: 1px solid var(--border-strong); }
.btn-ghost:hover { color: var(--text); border-color: var(--cyan); background: var(--cyan-soft); }
.btn-primary.small { min-height: 40px; padding: 9px 18px; font-size: 12.5px; }

/* Hero */
.hero { padding: 96px 0 110px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-copy .eyebrow-line { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.hero-copy .eyebrow-line .rule { width: 34px; height: 1px; background: var(--gold); }
.hero-kicker { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 17px; color: var(--cyan); }
.hero-copy h1 { font-size: clamp(48px, 5vw, 68px); line-height: 1.05; color: var(--text); text-wrap: balance; }
.hero-copy h1 em { font-style: italic; color: var(--gold); }
.hero-copy p.support { margin-top: 26px; font-size: 17px; line-height: 1.7; color: var(--text-dim); max-width: 540px; }
.action-statement { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 0 10px; font-size: 13px; letter-spacing: 0.03em; color: var(--text-faint); font-weight: 500; }
.action-statement b { color: var(--text); font-weight: 600; }
.hero-cta { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.orbit-wrap { position: relative; width: 100%; aspect-ratio: 1; max-width: 560px; margin: 0 auto; }
.orbit-panel { position: absolute; inset: 0; border-radius: 50%; background: var(--panel); border: 1px solid var(--border); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.orbit-ring { position: absolute; border-radius: 50%; border: 1px solid var(--border-strong); }
.ring-a { inset: 6%; animation: spin 90s linear infinite; }
.ring-b { inset: 16%; border-style: dashed; border-color: oklch(1 0 0 / 0.10); animation: spin 130s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit-line { stroke: url(#lineGrad); stroke-width: 1.2; fill: none; stroke-dasharray: 2 6; animation: flow 3.2s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -32; } }
.hub { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, oklch(0.26 0.03 262), var(--bg-deep)); border: 1px solid var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 0 50px oklch(0.80 0.115 85 / 0.18); z-index: 3; }
.hub-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-bottom: 8px; box-shadow: 0 0 14px var(--gold); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }
.hub-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; line-height: 1.4; }
.node { position: absolute; transform: translate(-50%,-50%); display: flex; align-items: center; gap: 8px; background: var(--panel-solid); border: 1px solid var(--border-strong); border-radius: 20px; padding: 8px 14px; font-size: 12px; font-weight: 500; color: var(--text-dim); white-space: nowrap; z-index: 3; }
.node .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* Marquee */
.marquee-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-deep); overflow: hidden; padding: 22px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track span { font-size: 14px; letter-spacing: 0.04em; color: var(--text-faint); padding: 0 26px; white-space: nowrap; font-weight: 500; }
.marquee-track span.acc { color: var(--cyan); }

/* Content grids */
.eco-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.eco-card, .proj-card, .journey-card, .leader-card { background: var(--panel-solid); border: 1px solid var(--border); border-radius: 6px; }
.eco-card { padding: 34px 28px; position: relative; }
.eco-card.highlight { border-color: var(--gold); box-shadow: 0 0 0 1px oklch(0.80 0.115 85 / 0.18), 0 20px 46px oklch(0 0 0 / 0.35); }
.eco-tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.eco-card.highlight .eco-tag { color: var(--gold); }
.eco-card h3 { font-size: 24px; margin-top: 12px; color: var(--text); }
.eco-card p { margin-top: 14px; font-size: 14.5px; line-height: 1.7; color: var(--text-dim); }
.eco-close { margin-top: 56px; text-align: center; }
.eco-close h3 { font-size: 28px; color: var(--text); }
.accentc { color: var(--cyan); }
.accentg { color: var(--gold); }

.cap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.cap-card { background: var(--bg-deep); padding: 30px 26px; transition: background .2s ease; }
.cap-card:hover { background: var(--bg-raise); }
.cap-icon, .proj-badge { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.cap-icon { margin-bottom: 18px; }
.cap-card h4 { font-family: "Archivo", system-ui, sans-serif; font-size: 15.5px; font-weight: 600; color: var(--text); }
.cap-card p { margin-top: 10px; font-size: 13.5px; line-height: 1.65; color: var(--text-dim); }

.method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.method-card { padding: 36px 24px 36px 0; position: relative; }
.method-num { font-family: "Newsreader", Georgia, serif; font-size: 44px; font-weight: 300; color: var(--text-faint); }
.method-card.acc .method-num { color: var(--gold); }
.method-card h4 { margin-top: 6px; font-family: "Archivo", system-ui, sans-serif; font-size: 16px; font-weight: 600; color: var(--text); }
.method-card p { margin-top: 10px; font-size: 13.5px; line-height: 1.65; color: var(--text-dim); max-width: 320px; }
.method-rule { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.proj-card { padding: 30px 26px; display: flex; flex-direction: column; }
.proj-badge { margin-bottom: 20px; }
.proj-card h3 { font-family: "Archivo", system-ui, sans-serif; font-size: 18px; font-weight: 600; color: var(--text); }
.proj-card .proj-pos { margin-top: 6px; font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 15px; color: var(--cyan); }
.proj-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.proj-chip { font-size: 11.5px; color: var(--text-dim); border: 1px solid var(--border-strong); border-radius: 14px; padding: 5px 11px; }
.proj-card .proj-link { margin-top: auto; padding-top: 22px; font-size: 13px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.future-strip { margin-top: 26px; border: 1px dashed var(--border-strong); border-radius: 6px; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.future-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.future-tags span { font-size: 12px; color: var(--text-faint); border: 1px solid var(--border); border-radius: 14px; padding: 5px 12px; }
.future-note { font-size: 12.5px; line-height: 1.5; color: var(--text-faint); max-width: 230px; }
.venture-disclaimer { max-width: 930px; margin: 18px auto 0; color: var(--text-faint); font-size: 11.5px; line-height: 1.65; text-align: center; }

.journeys-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch; }
.journey-card { padding: 30px 24px; display: flex; flex-direction: column; transition: border-color .18s ease, background .18s ease; }
.journey-card:hover { border-color: var(--border-strong); background: var(--bg-raise); }
.journey-card.accent { border-top: 2px solid var(--gold); }
.journey-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.journey-card h3 { margin-top: 14px; font-size: 20px; line-height: 1.35; color: var(--text); min-height: 80px; }
.journey-list { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.journey-item { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; line-height: 1.5; color: var(--text-dim); }
.journey-item .tick { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; margin-top: 6px; }
.journey-cta { margin-top: 22px; width: 100%; text-align: center; }
.journey-note { margin-top: 14px; font-size: 11px; line-height: 1.55; color: var(--text-faint); }

.leaders-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.leader-card { padding: 34px 32px; display: flex; gap: 22px; align-items: flex-start; }
.leader-avatar { width: 62px; height: 62px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: "Newsreader", Georgia, serif; font-size: 21px; font-weight: 500; color: var(--bg-deep); background: linear-gradient(135deg, var(--gold), var(--cyan)); }
.leader-name { font-size: 17px; font-weight: 600; color: var(--text); }
.leader-role { margin-top: 3px; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.leader-bio { margin-top: 14px; font-size: 13.5px; line-height: 1.7; color: var(--text-dim); }

.closing { text-align: center; background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.closing .container { max-width: 900px; }
.closing p.lead { font-family: "Newsreader", Georgia, serif; font-size: 23px; line-height: 1.65; color: var(--text-dim); }
.closing h3 { margin-top: 30px; font-style: italic; font-size: 32px; color: var(--text); }
.closing .hero-cta { justify-content: center; margin-top: 38px; }

/* Pathway-aware project enquiry */
.project-backdrop[hidden] { display: none; }
.project-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: oklch(0.06 0.015 262 / .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.project-modal {
  position: relative;
  width: min(100%, 700px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 46px;
  border: 1px solid oklch(0.80 0.115 85 / .34);
  border-radius: 8px;
  background:
    radial-gradient(600px 260px at 80% 0%, var(--violet-soft), transparent 65%),
    var(--bg-deep);
  box-shadow: 0 34px 90px oklch(0 0 0 / .62);
}
.project-modal::before { content: ""; position: absolute; top: 0; right: 46px; left: 46px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.project-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid var(--border-strong); border-radius: 50%; background: var(--gold-soft); color: var(--text); font-size: 22px; line-height: 1; }
.project-close:hover { border-color: var(--gold); color: var(--gold); }
.project-modal .eyebrow { display: block; padding-right: 54px; }
.project-modal h2 { margin-top: 14px; padding-right: 46px; font-size: clamp(32px, 4vw, 42px); line-height: 1.14; }
.project-intro { margin-top: 14px; max-width: 570px; color: var(--text-dim); font-size: 14.5px; line-height: 1.65; }
.project-form { margin-top: 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: grid; gap: 8px; min-width: 0; }
.form-field.full, .project-submit-row, .form-status, .form-privacy { grid-column: 1 / -1; }
.form-field label { color: var(--text-dim); font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--panel-solid);
  color: var(--text);
  font-size: 16px;
}
.form-field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px var(--gold-soft); }
.project-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 2px; }
.project-submit-row .btn-primary { min-width: 176px; flex-shrink: 0; white-space: nowrap; }
.form-privacy { color: var(--text-faint); font-size: 11px; line-height: 1.5; }
.form-status { display: none; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 4px; color: var(--text-dim); font-size: 13px; line-height: 1.55; }
.form-status.show { display: block; }
.form-status.success { border-color: oklch(0.73 0.13 150 / .5); color: oklch(0.84 0.1 150); background: oklch(0.73 0.13 150 / .08); }
.form-status.error { border-color: oklch(0.68 0.15 28 / .55); color: oklch(0.82 0.1 28); background: oklch(0.68 0.15 28 / .08); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.footer { padding: 80px 0 112px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 32px; }
.footer-brand p { margin-top: 16px; font-size: 13.5px; line-height: 1.65; color: var(--text-faint); max-width: 270px; }
.footer-col h5 { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; margin: 0 0 16px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--text-dim); margin-bottom: 11px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--text-faint); }

/* Reveal enhancement keeps content visible if JavaScript is unavailable. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }
.js .hero .reveal { opacity: 1; transform: none; }

@media (max-width: 1240px) {
  .js .desktop-nav, .js .nav-cta .btn-primary { display: none; }
  .js .menu-toggle { display: flex; }
  html:not(.js) .nav-inner { flex-wrap: wrap; padding-bottom: 10px; }
  html:not(.js) .desktop-nav { order: 3; flex-basis: 100%; justify-content: flex-start; overflow-x: auto; scrollbar-width: thin; }
  html:not(.js) .desktop-nav a { padding: 10px 0 12px; }
  html:not(.js) .desktop-nav a::after { bottom: 7px; }
  .journeys-grid { grid-template-columns: repeat(2,1fr); }
  .journey-card h3 { min-height: 54px; }
}
@media (max-width: 980px) {
  .hero { padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 720px; }
  .orbit-wrap { max-width: 530px; }
  .cap-grid { grid-template-columns: repeat(2,1fr); }
  .method-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .proj-grid, .eco-grid { grid-template-columns: 1fr; }
  .leaders-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2,1fr); }
}
@media (max-width: 700px) {
  .container, .nav-inner { padding-right: 22px; padding-left: 22px; }
  .section { padding: 86px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 66px 0 84px; }
  .hero-copy h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-copy p.support { font-size: 16px; }
  .orbit-wrap { width: calc(100% - 12px); }
  .node { padding: 6px 9px; font-size: 10px; }
  .hub { width: 116px; height: 116px; }
  .cap-grid, .method-grid, .journeys-grid, .footer-grid { grid-template-columns: 1fr; }
  .method-card { padding-right: 0; }
  .journey-card h3 { min-height: 0; }
  .leader-card { flex-direction: column; padding: 28px 24px; }
  .footer-brand p { max-width: 440px; }
  .footer-bottom { margin-top: 44px; }
  .project-backdrop { padding: 12px; align-items: flex-start; }
  .project-modal { max-height: calc(100dvh - 24px); padding: 38px 22px 26px; }
  .project-modal::before { right: 22px; left: 22px; }
  .project-form { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
  .form-field { gap: 6px; }
  .form-field input, .form-field select { min-height: 46px; padding-top: 10px; padding-bottom: 10px; }
  .form-field textarea { min-height: 104px; }
  .project-submit-row { position: sticky; bottom: -6px; z-index: 3; align-items: stretch; flex-direction: column; gap: 10px; margin: 0 -4px -8px; padding: 20px 4px 8px; background: linear-gradient(180deg, transparent, var(--bg-deep) 18px); }
  .project-submit-row .btn-primary { width: 100%; }
}
@media (max-width: 600px) {
  .brand-word { font-size: 14px; }
  .brand-word span { display: block; margin: 3px 0 0; font-size: 9px; }
  .hero-copy .eyebrow-line { align-items: flex-start; }
  .hero-copy .eyebrow-line .rule { margin-top: 10px; flex-shrink: 0; }
  .hero-kicker { font-size: 15px; line-height: 1.4; }
  .hero-copy h1 { font-size: clamp(40px, 10.5vw, 46px); }
  .hero-copy h1 em { display: block; font-size: .92em; }
  .hero-cta > a { width: 100%; }
  .orbit-wrap { width: 100%; margin-left: 0; }
  .node { font-size: 9px; gap: 5px; }
  .closing p.lead { font-size: 20px; }
  body.crs-conversion-visible #crs-root { opacity: 0; visibility: hidden; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
