:root {
  --black: #000;
  --surface: #080b09;
  --surface-2: #0d120f;
  --white: #f7faf8;
  --mint: #b8f5cf;
  --mint-strong: #78e7aa;
  --muted: rgba(247, 250, 248, 0.66);
  --faint: rgba(247, 250, 248, 0.42);
  --line: rgba(247, 250, 248, 0.12);
  --mint-line: rgba(184, 245, 207, 0.3);
  --sans: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1280px, calc(100% - 64px));
  --radius: 26px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea { font: inherit; }

button,
a,
label,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

::selection {
  background: var(--mint);
  color: var(--black);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: clamp(104px, 11vw, 176px) 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 11px 16px;
  border: 1px solid var(--mint);
  border-radius: 999px;
  background: var(--black);
  color: var(--mint);
  font-weight: 760;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.on-page {
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.86);
  -webkit-backdrop-filter: saturate(150%) blur(24px);
  backdrop-filter: saturate(150%) blur(24px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 52px;
  display: block;
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 108px;
  max-width: none;
  transform: translateX(-50%);
}

.brand-name {
  display: grid;
  gap: 2px;
  font-size: 0.9rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand-name small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] { color: var(--mint); }

.primary-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--mint);
  border-radius: 999px;
  color: var(--mint);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-nav .nav-cta:hover {
  transform: translateY(-2px);
  background: var(--mint);
  color: var(--black);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 7px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--black);
}

.menu-toggle i {
  width: 18px;
  height: 1px;
  display: block;
  background: var(--white);
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { text-wrap: pretty; }

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 { font-size: clamp(3.9rem, 7.6vw, 7.6rem); }
h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
h3 { font-size: clamp(1.8rem, 3vw, 3rem); }

h1 em,
h2 em {
  color: var(--mint);
  font-style: normal;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 116px 0 46px;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  border: 1px solid rgba(184, 245, 207, 0.1);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero::before {
  width: min(88vw, 1260px);
  aspect-ratio: 1;
  top: 8%;
}

.hero::after {
  width: min(56vw, 800px);
  aspect-ratio: 1;
  top: 20%;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(120, 231, 170, 0.14), transparent 31%),
    linear-gradient(to bottom, transparent 70%, rgba(184, 245, 207, 0.04));
}

.hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  text-align: center;
}

.hero-logo {
  width: clamp(156px, 11vw, 190px);
  height: auto;
  margin: 0 auto 12px;
}

.hero h1 {
  max-width: 15ch;
  margin: 18px auto 0;
  font-size: clamp(3.65rem, 5.25vw, 6.3rem);
}

.hero-lead {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.hero-actions {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px auto 0;
}

.stage-card {
  min-height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 19px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 11, 9, 0.86);
  color: var(--white);
  text-align: left;
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.stage-card:hover {
  transform: translateY(-5px);
  border-color: var(--mint);
  background: rgba(184, 245, 207, 0.08);
}

.stage-number {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.stage-copy {
  display: grid;
  gap: 7px;
}

.stage-copy b {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stage-copy small {
  color: var(--muted);
  font-size: 0.75rem;
}

.stage-card i {
  color: var(--mint);
  font-size: 1.1rem;
  font-style: normal;
}

.route-link,
.text-link,
.all-solutions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 690;
  text-decoration: none;
}

.route-link { margin-top: 18px; }
.route-link span,
.text-link span,
.all-solutions span { transition: transform 180ms ease; }
.route-link:hover span,
.text-link:hover span,
.all-solutions:hover span { transform: translateX(4px); }

.purpose {
  border-bottom: 1px solid var(--line);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 9vw, 130px);
  align-items: center;
}

.purpose-visual {
  min-height: 660px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mint-line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 47%, rgba(184, 245, 207, 0.12), transparent 40%),
    var(--surface);
}

.purpose-visual::before,
.purpose-visual::after {
  content: "";
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 245, 207, 0.12);
  border-radius: 50%;
}

.purpose-visual::after { width: 52%; }

.purpose-visual img {
  position: relative;
  z-index: 2;
  width: min(78%, 430px);
  filter: drop-shadow(0 0 50px rgba(184, 245, 207, 0.08));
}

.root-line {
  position: absolute;
  z-index: 1;
  width: 1px;
  height: 30%;
  bottom: -8%;
  background: linear-gradient(to bottom, var(--mint), transparent);
  transform-origin: top;
}

.root-line-one { transform: rotate(-28deg); }
.root-line-two { transform: rotate(0deg); }
.root-line-three { transform: rotate(28deg); }

.purpose-copy h2 { margin-top: 24px; }

.purpose-steps {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.purpose-steps article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.purpose-steps article > span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.purpose-steps h3 {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.purpose-steps p {
  max-width: 540px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.acronyms {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 930px;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.section-heading h2 { margin-top: 24px; }

.section-heading > p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(164px, auto);
  gap: 14px;
}

.bento {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--white);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.bento::after {
  content: "";
  position: absolute;
  width: 190px;
  aspect-ratio: 1;
  right: -90px;
  bottom: -110px;
  border: 1px solid rgba(184, 245, 207, 0.1);
  border-radius: 50%;
  transition: transform 300ms ease;
}

.bento:hover {
  transform: translateY(-4px);
  border-color: var(--mint-line);
  background: var(--surface-2);
}

.bento:hover::after { transform: scale(1.3); }

.bento small,
.tier-top > small,
.tier-price > span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.bento h3 {
  margin-top: 28px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.bento p {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bento strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--mint);
  font-size: 0.76rem;
}

.bento .egypt-symbol {
  position: absolute;
  top: 28px;
  right: 28px;
}

.bento-cipc { grid-column: span 5; grid-row: span 2; min-height: 420px; }
.bento-sars { grid-column: span 4; grid-row: span 2; min-height: 420px; }
.bento-afs { grid-column: span 3; grid-row: span 2; min-height: 420px; }
.bento-csd { grid-column: span 3; }
.bento-dtic { grid-column: span 4; }
.bento-route {
  grid-column: span 5;
  border-color: var(--mint-line);
  background: linear-gradient(145deg, rgba(184, 245, 207, 0.13), rgba(184, 245, 207, 0.02));
}
.bento-route h3 { max-width: 12ch; font-size: clamp(1.8rem, 3vw, 3rem); }

.egypt-symbol {
  position: relative;
  width: 58px;
  height: 58px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--mint);
  border-radius: 16px;
  background: var(--mint);
}

.egypt-symbol img {
  position: absolute;
  width: 400%;
  max-width: none;
  height: 400%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25);
  mix-blend-mode: multiply;
}

.symbol-eye img { left: 0; top: 0; }
.symbol-pyramids img { left: -100%; top: 0; }
.symbol-papyrus img { left: -200%; top: 0; }
.symbol-sphinx img { left: -200%; top: -100%; }
.symbol-scarab img { left: -100%; top: -200%; }
.symbol-anubis img { left: -300%; top: -300%; }
.symbol-temple img { left: -100%; top: -300%; }

.myths {
  border-bottom: 1px solid var(--line);
}

.myth-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.myth-head {
  position: sticky;
  top: 130px;
}

.myth-head h2 { margin-top: 24px; }

.myth-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}

.myth-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.myth-controls button:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.myth-controls span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.myth-stage {
  min-height: 660px;
  border: 1px solid var(--mint-line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(184, 245, 207, 0.12), transparent 30%),
    var(--surface);
}

.myth-slide {
  min-height: 660px;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 5vw, 68px);
}

.myth-slide > span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.myth-slide blockquote {
  max-width: 14ch;
  margin: 72px 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.myth-slide > div {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.myth-slide small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.myth-slide p {
  max-width: 660px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.myth-shell > .text-link {
  grid-column: 2;
  margin-top: -70px;
}

.solutions {
  border-bottom: 1px solid var(--line);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tier-card {
  min-height: 730px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 200ms ease, border-color 200ms ease;
}

.tier-card:hover {
  transform: translateY(-6px);
  border-color: var(--mint-line);
}

.tier-featured {
  border-color: var(--mint);
  background: linear-gradient(155deg, rgba(184, 245, 207, 0.12), rgba(184, 245, 207, 0.02) 42%, var(--surface));
}

.tier-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tier-card h3 {
  margin-top: 42px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.tier-outcome {
  margin: 12px 0 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 630;
}

.tier-for {
  min-height: 74px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.tier-card ul {
  display: grid;
  gap: 0;
  margin: 28px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.tier-card li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 0.79rem;
}

.tier-card li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.tier-price {
  min-height: 92px;
  display: grid;
  gap: 5px;
  margin-top: auto;
}

.tier-price b {
  color: var(--white);
  font-size: 1rem;
}

.tier-price small {
  color: var(--faint);
  font-size: 0.67rem;
}

.tier-cta,
.button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid var(--mint);
  border-radius: 999px;
  background: var(--mint);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tier-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(184, 245, 207, 0.14);
}

.tier-more {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.all-solutions {
  margin-top: 36px;
}

.ethos {
  min-height: 92svh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.ethos-shell { text-align: center; }

.ethos h2 {
  max-width: 12ch;
  margin: 34px auto 0;
  font-size: clamp(4rem, 8.5vw, 9rem);
  line-height: 0.9;
}

.ethos-shell > p:not(.eyebrow) {
  max-width: 700px;
  margin: 42px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.72;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.trust-row span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
}

.ethos .text-link { margin-top: 38px; }

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 760px;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  border: 1px solid var(--mint-line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-shell {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-shell h2 {
  max-width: 13ch;
  margin: 30px auto 0;
}

.cta-shell > p:not(.eyebrow) {
  max-width: 660px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.cta-actions {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 46px auto 0;
}

.button-ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--white);
}

.site-footer {
  padding: 86px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr auto;
  gap: 50px;
  align-items: end;
}

.footer-brand {
  width: 280px;
  text-decoration: none;
}

.footer-main p {
  margin: 0;
  color: var(--mint);
  font-size: 0.8rem;
}

.footer-main > div {
  display: grid;
  gap: 9px;
  text-align: right;
}

.footer-main a {
  color: var(--muted);
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-main a:hover { color: var(--mint); }

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.footer-base a { text-decoration: none; }

/* Interior pages */
.page-hero {
  min-height: 74svh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 170px 0 90px;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: min(70vw, 900px);
  aspect-ratio: 1;
  right: -24%;
  top: -25%;
  border: 1px solid var(--mint-line);
  border-radius: 50%;
}

.page-hero .shell { position: relative; z-index: 1; }

.page-hero h1 {
  max-width: 12ch;
  margin-top: 26px;
}

.page-hero p:not(.eyebrow) {
  max-width: 710px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.page-hero-actions .button { min-width: 230px; }

.content-section {
  padding: clamp(82px, 9vw, 138px) 0;
  border-bottom: 1px solid var(--line);
}

.content-intro {
  max-width: 860px;
  margin-bottom: 58px;
}

.content-intro h2 {
  margin-top: 22px;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
}

.content-intro > p:last-child {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
}

.detail-grid,
.route-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.detail-card,
.route-card,
.resource-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.detail-card small,
.route-card small,
.resource-card small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.detail-card h3,
.route-card h3,
.resource-card h3 {
  margin-top: 28px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.detail-card > p,
.route-card > p,
.resource-card > p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-card ul,
.route-card ul,
.resource-card ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.detail-card li,
.route-card li,
.resource-card li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 0.82rem;
}

.detail-card .text-link,
.route-card .text-link,
.resource-card .text-link { margin-top: auto; padding-top: 30px; }

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-list article {
  min-height: 260px;
  padding: 30px;
  background: var(--surface);
}

.process-list span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.process-list h3 {
  margin-top: 54px;
  font-size: 1.55rem;
}

.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.package-stack {
  display: grid;
  gap: 18px;
}

.package-card {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 46px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  scroll-margin-top: 110px;
}

.package-card.featured { border-color: var(--mint); }

.package-title small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.package-title h2 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
}

.package-title p {
  margin: 20px 0 0;
  color: var(--muted);
}

.package-price {
  display: grid;
  gap: 5px;
  margin-top: 32px;
}

.package-price span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.package-price b { font-size: 1.1rem; }
.package-price small { color: var(--faint); }

.package-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.package-body h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.package-body ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.package-card .tier-cta {
  grid-column: 1 / -1;
  max-width: 300px;
  margin-top: 14px;
}

.institution-list {
  display: grid;
  gap: 14px;
}

.institution-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  scroll-margin-top: 110px;
}

.institution-card > strong {
  color: var(--mint);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
}

.institution-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.institution-card p {
  max-width: 740px;
  margin: 16px 0 0;
  color: var(--muted);
}

.institution-card .fact {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 2px solid var(--mint);
  background: rgba(184, 245, 207, 0.06);
  color: var(--white);
  font-size: 0.84rem;
}

.institution-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--mint);
  font-size: 0.75rem;
}

.myth-list {
  display: grid;
  gap: 14px;
}

.myth-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.myth-card blockquote {
  margin: 18px 0 0;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1;
}

.myth-card .reality {
  align-self: end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.myth-card small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.myth-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Route form */
.support-section {
  padding: 150px 0 120px;
}

.support-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.support-copy {
  position: sticky;
  top: 120px;
}

.support-copy h1 {
  margin-top: 24px;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
}

.support-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 48px;
  color: var(--muted);
}

.offer-note {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.offer-note span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.59rem;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.offer-note p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.lead-form {
  padding: clamp(26px, 4.5vw, 52px);
  border: 1px solid var(--mint-line);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 720;
  letter-spacing: 0.13em;
}

.form-head b { color: var(--white); }

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.field-grid label { display: block; }
.field-wide { grid-column: 1 / -1; }

.field-grid label > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.72rem;
}

input,
select,
textarea {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: var(--black);
  color: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(184, 245, 207, 0.1);
}

select { color-scheme: dark; }
[aria-invalid="true"] { border-color: #ff9696 !important; }

.honeypot {
  position: absolute;
  left: -10000px;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 13px;
  align-items: start;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.74rem;
}

.consent-row + .consent-row { margin-top: 16px; }

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--mint);
}

.form-guidance,
.form-error {
  margin: 20px 0 0;
  font-size: 0.72rem;
}

.form-guidance { color: var(--mint); }
.form-error { color: #ffb4b4; }

.submit-button,
.download-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 0 20px;
  border: 1px solid var(--mint);
  border-radius: 999px;
  background: var(--mint);
  color: var(--black);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.submit-button:hover,
.download-button:hover { transform: translateY(-2px); }
.submit-button:disabled { cursor: wait; opacity: 0.7; }

.form-success {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--mint-line);
  border-radius: 18px;
  background: rgba(184, 245, 207, 0.07);
  outline: 0;
}

.form-success h3 {
  color: var(--mint);
  font-size: 1.5rem;
}

.form-success p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-legal {
  margin: 20px 0 0;
  color: var(--faint);
  font-size: 0.68rem;
}

.form-legal a { color: var(--mint); }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

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

@media (max-width: 1040px) {
  :root { --shell: min(100% - 40px, 900px); }
  .menu-toggle { display: grid; }

  .primary-nav {
    position: fixed;
    inset: 84px 18px auto;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  }

  .primary-nav.open { display: grid; }

  .primary-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .nav-cta {
    justify-content: space-between;
    margin-top: 8px;
    border-bottom: 1px solid var(--mint);
  }

  .purpose-grid,
  .myth-shell,
  .support-shell {
    grid-template-columns: 1fr;
  }

  .purpose-visual { min-height: 560px; }
  .myth-head,
  .support-copy { position: static; }
  .myth-shell > .text-link { grid-column: auto; margin-top: -20px; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card { min-height: auto; }
  .tier-for { min-height: auto; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .package-card { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .hero-actions,
  .cta-actions,
  .detail-grid,
  .route-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid { grid-template-columns: 1fr; }
  .bento,
  .bento-cipc,
  .bento-sars,
  .bento-afs,
  .bento-csd,
  .bento-dtic,
  .bento-route {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div { text-align: left; }
  .institution-card,
  .myth-card { grid-template-columns: 1fr; }
  .package-body { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --radius: 22px; }
  .section { padding: 92px 0; }
  .nav-shell { min-height: 72px; }
  .brand-name { font-size: 0.72rem; }
  .brand-name small { font-size: 0.4rem; }
  .primary-nav { top: 72px; }

  .hero {
    min-height: auto;
    padding: 108px 0 58px;
  }

  .hero::before { width: 150vw; top: 14%; }
  .hero::after { width: 94vw; top: 22%; }
  .hero-logo { width: 150px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { margin-top: 32px; }
  .stage-card { min-height: 100px; padding: 20px; }

  .purpose-visual { min-height: 440px; }
  .purpose-steps article { grid-template-columns: 38px 1fr; }

  .myth-stage,
  .myth-slide { min-height: 560px; }
  .myth-slide blockquote { margin: 60px 0; }

  .tier-card { padding: 24px; }
  .tier-top { align-items: flex-start; }
  .tier-top > small { max-width: 140px; text-align: right; }

  .ethos { min-height: auto; }
  .ethos h2 { font-size: clamp(3.5rem, 17vw, 5.4rem); }
  .cta-actions { gap: 10px; }

  .footer-brand { width: 230px; }
  .footer-base {
    display: grid;
    justify-content: start;
    gap: 10px;
  }

  .page-hero { min-height: 68svh; padding: 140px 0 72px; }
  .page-hero h1 { font-size: clamp(3.3rem, 16vw, 5.1rem); }
  .page-hero-actions { display: grid; }
  .page-hero-actions .button { min-width: 0; }
  .process-list { grid-template-columns: 1fr; }
  .institution-card { gap: 22px; }
  .institution-card > strong { font-size: 3rem; }

  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .lead-form { padding: 24px 18px; }
  .support-section { padding: 124px 0 90px; }
}

@media (min-width: 1041px) and (max-height: 820px) {
  .hero { padding: 100px 0 34px; }
  .hero-logo { width: 138px; margin-bottom: 8px; }
  .hero h1 {
    max-width: 16ch;
    margin-top: 14px;
    font-size: clamp(3.35rem, 4.65vw, 5.2rem);
  }
  .hero-lead { margin-top: 16px; font-size: 1.05rem; }
  .hero-actions { max-width: 820px; margin-top: 24px; }
  .stage-card { min-height: 88px; padding: 16px 22px; }
  .route-link { margin-top: 14px; }
}
