:root {
  --purple: #5b1fd1;
  --indigo: #13005a;
  --gold: #f4b400;
  --dark: #0f0826;
  --ink: #14121f;
  --muted: #5d6072;
  --soft: #f5f3fb;
  --line: rgba(19, 0, 90, 0.12);
  --white: #ffffff;
  --gray: #c9c9d3;
  --teal: #00a98f;
  --shadow: 0 24px 80px rgba(19, 0, 90, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 40px;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(15, 8, 38, 0.94);
  box-shadow: 0 18px 50px rgba(15, 8, 38, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(244, 180, 0, 0.45);
  border-radius: 8px;
  background: var(--dark);
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.site-nav .is-active > .nav-trigger,
.site-nav > a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-trigger span {
  display: none;
}

.nav-group {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 250px;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(19, 0, 90, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: var(--soft);
  color: var(--purple);
  outline: none;
}

.nav-group:hover .dropdown-panel,
.nav-group:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.header-link,
.header-btn {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
}

.header-link {
  color: rgba(255, 255, 255, 0.9);
}

.header-btn {
  color: var(--dark);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(244, 180, 0, 0.26);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 96px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 8, 38, 0.98), rgba(19, 0, 90, 0.96) 48%, rgba(91, 31, 209, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 80px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, transparent 92%);
}

.hero::after {
  background:
    linear-gradient(110deg, transparent 10%, rgba(244, 180, 0, 0.08) 42%, transparent 58%),
    radial-gradient(circle at 85% 16%, rgba(244, 180, 0, 0.16), transparent 28%);
}

.hero-bg .particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(244, 180, 0, 0.8);
  opacity: 0.72;
  animation: drift 7s ease-in-out infinite alternate;
}

.p1 {
  top: 22%;
  left: 14%;
}

.p2 {
  top: 62%;
  left: 82%;
  animation-delay: 1.2s;
}

.p3 {
  top: 78%;
  left: 42%;
  animation-delay: 2s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: 64px;
  font-weight: 900;
}

h2 {
  font-size: 42px;
  font-weight: 850;
  color: var(--ink);
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.5;
}

.hero-body {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--dark);
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(244, 180, 0, 0.24);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  min-height: 42px;
  padding: 10px 0;
  color: var(--purple);
  background: transparent;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats span {
  display: grid;
  min-width: 142px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-stats strong {
  color: var(--white);
  font-size: 24px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.orbit-shell {
  position: absolute;
  inset: -40px;
  z-index: 1;
  pointer-events: none;
}

.orbit-shell span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 180, 0, 0.18);
  border-top-color: rgba(244, 180, 0, 0.78);
  border-radius: 50%;
  animation: orbit 16s linear infinite;
}

.orbit-shell span:nth-child(2) {
  inset: 32px;
  border-color: rgba(255, 255, 255, 0.13);
  border-right-color: rgba(0, 169, 143, 0.7);
  animation-duration: 22s;
  animation-direction: reverse;
}

.orbit-shell span:nth-child(3) {
  inset: 70px;
  border-color: rgba(91, 31, 209, 0.4);
  border-bottom-color: rgba(244, 180, 0, 0.7);
  animation-duration: 28s;
}

.section {
  padding: 112px 0;
}

.light-section {
  background: var(--soft);
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--dark), var(--indigo) 56%, #2b1280),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 90px);
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.dark-section .section-header p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.card-grid,
.metric-grid,
.journey-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

.grid-three,
.metric-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-four,
.journey-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.metric-card,
.journey-step,
.price-card,
.path-card,
.timeline-item,
.node-card,
.site-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(19, 0, 90, 0.08);
}

.feature-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover,
.crest-card:hover,
.price-card:hover,
.path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 180, 0, 0.5);
  box-shadow: 0 26px 80px rgba(91, 31, 209, 0.14);
}

.card-icon,
.crest-letter,
.timeline-index,
.journey-step span,
.path-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), #ffdc66);
  border-radius: 8px;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.feature-card h3 {
  margin-top: 22px;
}

.feature-card p,
.path-card p,
.price-card p,
.timeline-item p,
.node-card p,
.crest-card p {
  color: var(--muted);
}

.card-meta {
  margin-top: auto;
  color: var(--purple) !important;
  font-weight: 800;
}

.stats-section {
  background:
    linear-gradient(180deg, var(--white), var(--soft));
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  min-height: 170px;
  padding: 28px;
  color: var(--muted);
}

.metric-number {
  display: block;
  margin-bottom: 12px;
  color: var(--purple);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.philosophy-section {
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 180, 0, 0.65), rgba(91, 31, 209, 0.5), transparent);
}

.crest-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.crest-card {
  position: relative;
  min-height: 290px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(19, 0, 90, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.crest-letter {
  margin-bottom: 24px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.split-reverse .media-panel {
  order: 2;
}

.split-copy h2 {
  max-width: 620px;
}

.split-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.media-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 750;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--purple), var(--teal));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
}

.timeline-index {
  position: relative;
  z-index: 2;
}

.node-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-height: 480px;
  padding-top: 160px;
}

.node-map::before {
  content: "";
  position: absolute;
  top: 118px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(244, 180, 0, 0.2), rgba(244, 180, 0, 0.8), rgba(0, 169, 143, 0.5));
}

.node-center {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  border: 1px solid rgba(244, 180, 0, 0.4);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.node-center img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
}

.node-center strong {
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
}

.node-card {
  padding: 28px;
}

.node-url {
  color: var(--purple) !important;
  font-weight: 800;
}

.journey-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.journey-step {
  min-height: 176px;
  padding: 24px;
}

.journey-step h3 {
  margin-top: 18px;
  font-size: 18px;
}

.program-table {
  display: grid;
  gap: 14px;
}

.program-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.dark-section .program-table div {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.program-table strong {
  color: var(--purple);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
}

.dark-section .program-table strong {
  color: var(--gold);
}

.program-table span {
  color: var(--muted);
}

.dark-section .program-table span {
  color: rgba(255, 255, 255, 0.76);
}

.pathway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.path-card {
  min-height: 275px;
  padding: 28px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.path-card h3 {
  margin-top: 22px;
}

.price-card {
  padding: 30px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.price-card.featured {
  border-color: rgba(244, 180, 0, 0.7);
  background: linear-gradient(180deg, #fff9df, var(--white));
}

.price {
  color: var(--purple) !important;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 48px;
}

.site-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-form label,
.newsletter label {
  color: var(--ink);
  font-weight: 800;
}

.site-form input,
.site-form select,
.site-form textarea,
.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(19, 0, 90, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.site-form textarea {
  resize: vertical;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus,
.newsletter input:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(91, 31, 209, 0.16);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-list p {
  margin: 0;
  padding: 16px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(19, 0, 90, 0.08);
}

.contact-list strong {
  display: block;
  color: var(--purple);
}

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  opacity: 0.58;
}

.map-card div {
  position: absolute;
  left: 36px;
  bottom: 36px;
  max-width: 560px;
  padding: 28px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(15, 8, 38, 0.82);
  backdrop-filter: blur(12px);
}

.map-card h2 {
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-weight: 850;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--indigo), var(--purple) 58%, #21105f),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 86px);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(244, 180, 0, 0.18), transparent 58%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.cta-inner h2 {
  color: var(--white);
  font-size: 48px;
}

.cta-inner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.cta-inner .actions {
  justify-content: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.95fr 1.25fr 1fr;
  gap: 36px;
  padding: 78px 0 48px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
  outline: none;
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  width: 54px;
  height: 54px;
}

.motto {
  color: var(--gold);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.newsletter {
  display: grid;
  align-content: start;
  gap: 12px;
}

.newsletter label {
  color: rgba(255, 255, 255, 0.86);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
}

.icon-btn {
  min-height: 48px;
  color: var(--dark);
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-row a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  to {
    transform: translate3d(22px, -18px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding: 14px 24px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 24px;
    right: 24px;
    display: none;
    max-height: calc(100vh - 100px);
    overflow: auto;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(15, 8, 38, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-trigger {
    justify-content: space-between;
    width: 100%;
  }

  .nav-trigger span {
    display: inline;
  }

  .nav-group {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group.is-open .dropdown-panel {
    display: block;
  }

  .dropdown-panel a {
    color: rgba(255, 255, 255, 0.86);
  }

  .header-actions {
    justify-self: end;
  }

  h1 {
    font-size: 54px;
  }

  .hero-grid,
  .split-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

  .split-reverse .media-panel {
    order: 0;
  }

  .grid-four,
  .journey-grid,
  .pathway,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crest-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .node-map {
    grid-template-columns: 1fr;
    padding-top: 190px;
  }

  .node-map::before {
    display: none;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    top: 70px;
    left: 16px;
    right: 16px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 72px;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .section {
    padding: 78px 0;
  }

  .grid-three,
  .grid-four,
  .metric-grid,
  .journey-grid,
  .pathway,
  .pricing-grid,
  .crest-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .check-list,
  .form-row.two,
  .program-table div {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .metric-card,
  .journey-step,
  .path-card,
  .price-card {
    min-height: auto;
  }

  .node-center {
    width: 132px;
    height: 132px;
  }

  .map-card div {
    position: static;
    max-width: none;
    margin: 0;
    border-radius: 0;
  }

  .map-card img {
    height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-stats {
    display: grid;
  }

  .hero-stats span {
    min-width: 0;
  }

  .cta-inner h2 {
    font-size: 34px;
  }
}
