:root {
  --navy: #263069;
  --navy-deep: #18204d;
  --red: #c12026;
  --red-deep: #9f1820;
  --ink: #171923;
  --muted: #646875;
  --paper: #f7f6f2;
  --paper-2: #efeee8;
  --white: #ffffff;
  --line: #d9d8d1;
  --line-dark: rgba(255,255,255,.2);
  --shadow: 0 24px 60px rgba(22, 28, 63, .14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--navy);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.announcement {
  background: var(--navy-deep);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .02em;
}
.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announcement-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb9bc;
  box-shadow: 0 0 0 4px rgba(255,185,188,.12);
}
.announcement a {
  margin-left: 6px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,246,242,.95);
  border-bottom: 1px solid rgba(23,25,35,.08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1.2;
}
.brand-copy strong {
  font-size: 17px;
  letter-spacing: .1em;
  color: var(--navy);
}
.site-header .brand-copy strong {
  font-size: 15px;
  letter-spacing: .025em;
}
.brand-copy span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  color: #3d4050;
}
.primary-nav a { transition: color .2s ease; }
.primary-nav a:hover { color: var(--navy); }
.nav-cta {
  border: 1px solid var(--navy);
  color: var(--navy) !important;
  padding: 10px 15px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--navy); color: var(--white) !important; }
.nav-cta-pending {
  appearance: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  background: var(--navy);
  color: var(--white) !important;
  border: 1px solid var(--navy);
  padding: 10px 15px;
  border-radius: 999px;
  cursor: default;
  opacity: 1;
}
.nav-cta-pending:disabled {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  overflow: hidden;
  padding: 82px 0 90px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  gap: 70px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.section-kicker.light { color: #f4b7ba; }
.hero h1,
.section h2,
.closing-cta h2 {
  margin: 24px 0 24px;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}
.hero h1 { font-size: clamp(52px, 5.3vw, 78px); max-width: 760px; }
h1 em, h2 em { color: var(--red); font-style: italic; }
.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.button-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.button-secondary { background: transparent; color: var(--ink); border-color: #bfc0c7; }
.button-secondary:hover { border-color: var(--navy); color: var(--navy); }
.button-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.button-light:hover { background: #eceef8; border-color: #eceef8; }
.button-pending,
.button-pending:hover {
  transform: none;
  cursor: default;
  opacity: 1;
}
.button-pending:disabled {
  color: var(--navy);
  -webkit-text-fill-color: var(--navy);
}
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
  color: #555966;
  font-size: 11px;
  font-weight: 600;
}
.trust-row > div { display: flex; align-items: center; gap: 8px; }
.trust-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid #c7c7c0;
  border-radius: 50%;
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
}

.credential-stage {
  min-height: 610px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.stage-mark {
  position: absolute;
  border: 1px solid rgba(38,48,105,.22);
  border-radius: 50%;
  z-index: -2;
}
.stage-mark-one { width: 540px; height: 540px; }
.stage-mark-two { width: 430px; height: 430px; border-color: rgba(193,32,38,.14); }
.credential-stage::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 460px;
  background: var(--navy);
  border-radius: 180px 180px 18px 18px;
  transform: rotate(8deg) translate(18px, 8px);
  z-index: -1;
}
.credential-card {
  width: min(430px, 88%);
  min-height: 520px;
  background: var(--white);
  border: 1px solid #deded8;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.credential-topline {
  display: flex;
  align-items: center;
  gap: 12px;
}
.credential-topline img { width: 38px; height: 38px; object-fit: contain; }
.credential-topline div { display: grid; gap: 2px; }
.credential-topline span { font-size: 7px; font-weight: 700; letter-spacing: .12em; color: var(--muted); }
.credential-topline strong { font-size: 10px; letter-spacing: .08em; color: var(--navy); }
.credential-divider { height: 1px; background: #deded8; margin: 24px 0 30px; }
.credential-label { font-size: 9px; letter-spacing: .15em; color: var(--red); font-weight: 700; }
.credential-card h2 {
  margin: 16px 0 18px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 36px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.025em;
}
.credential-card > p { color: var(--muted); font-size: 12px; line-height: 1.75; }
.credential-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #e0dfda;
  margin-top: 26px;
  padding: 18px 0;
}
.credential-meta div { display: grid; gap: 4px; padding: 0 12px; border-right: 1px solid #e0dfda; }
.credential-meta div:first-child { padding-left: 0; }
.credential-meta div:last-child { border-right: 0; }
.credential-meta span { font-size: 6px; letter-spacing: .1em; color: #8b8e98; }
.credential-meta strong { font-size: 9px; line-height: 1.25; color: var(--navy); }
.credential-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 8px;
}
.seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}
.qr {
  width: 42px;
  height: 42px;
  border: 6px double var(--ink);
  box-shadow: inset 0 0 0 4px var(--white), inset 0 0 0 7px var(--ink);
}
.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid #dfded8;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(24,32,77,.14);
  z-index: 3;
}
.floating-note div { display: grid; }
.floating-note strong { font-size: 10px; color: var(--navy); }
.floating-note small { color: var(--muted); font-size: 8px; }
.note-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  background: var(--red);
}
.note-one { top: 14%; right: -2%; }
.note-two { bottom: 12%; left: -1%; }
.note-two .note-icon { background: var(--navy); }

.section { padding: 110px 0; }
.section h2 { font-size: clamp(44px, 4.4vw, 64px); }
.definition-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: start;
}
.definition-copy {
  padding-top: 24px;
  color: var(--muted);
  font-size: 16px;
}
.definition-copy p { margin-top: 0; margin-bottom: 18px; }
.feature-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.feature-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  background: #fbfaf7;
  border-right: 1px solid var(--line);
}
.feature-card:last-child { border-right: 0; }
.feature-number { color: #a4a5ac; font-size: 9px; letter-spacing: .12em; }
.feature-card svg { width: 34px; height: 34px; margin-top: 62px; color: var(--navy); }
.feature-card h3 { margin: 26px 0 10px; font-size: 17px; }
.feature-card p { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 0; }
.feature-card-dark { background: var(--navy); color: var(--white); }
.feature-card-dark .feature-number { color: rgba(255,255,255,.5); }
.feature-card-dark svg { color: #ffb9bc; }
.feature-card-dark p { color: rgba(255,255,255,.68); }

.why { background: #ebeae5; }
.why-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: stretch;
}
.why-panel {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 58px;
  isolation: isolate;
}
.why-panel::before,
.why-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  z-index: -1;
}
.why-panel::before { width: 520px; height: 520px; right: -210px; top: -180px; }
.why-panel::after { width: 360px; height: 360px; right: -120px; top: -95px; }
.why-monogram {
  position: absolute;
  right: -22px;
  bottom: -66px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 220px;
  line-height: 1;
  color: rgba(255,255,255,.05);
  letter-spacing: -.08em;
}
.why-panel-content { position: relative; max-width: 610px; }
.why-panel h2 { font-size: clamp(46px, 4vw, 60px); color: var(--white); }
.why-panel h2 em { color: #ffb9bc; }
.why-panel p { color: rgba(255,255,255,.72); font-size: 15px; max-width: 560px; }
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.light-link { color: var(--white); }
.why-points { display: grid; align-content: center; }
.why-points article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #cecdc6;
}
.why-points article:first-child { border-top: 1px solid #cecdc6; }
.point-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #b8b8b2;
  border-radius: 50%;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}
.why-points h3 { margin: 2px 0 8px; font-size: 18px; }
.why-points p { margin: 0; color: var(--muted); font-size: 13px; }

.journey { background: var(--white); }
.journey-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: end;
}
.journey-head > p { margin: 0 0 28px; color: var(--muted); font-size: 15px; max-width: 490px; }
.steps {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.step {
  position: relative;
  min-height: 330px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}
.step + .step { padding-left: 28px; }
.step:last-child { border-right: 0; }
.step-no { color: #9b9ca3; font-size: 9px; }
.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy);
  margin-top: 54px;
}
.step-icon svg { width: 25px; height: 25px; }
.step h3 { margin: 28px 0 10px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.recognition { background: var(--paper-2); overflow: hidden; }
.recognition-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.recognition-copy p { color: var(--muted); font-size: 14px; max-width: 560px; }
.recognition-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.recognition-badges span {
  padding: 8px 12px;
  border: 1px solid #cac9c3;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #4e5261;
}
.document-visual {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}
.doc-back,
.doc-front {
  position: absolute;
  width: 390px;
  height: 510px;
  border-radius: 12px;
}
.doc-back { background: var(--navy); transform: rotate(8deg) translate(38px, -12px); }
.doc-front {
  background: var(--white);
  border: 1px solid #d8d7d0;
  box-shadow: var(--shadow);
  padding: 38px;
  transform: rotate(-4deg);
}
.doc-head { display: flex; align-items: center; gap: 13px; color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.doc-head img { width: 44px; height: 44px; object-fit: contain; }
.doc-title-line { width: 74%; height: 12px; background: var(--navy); margin: 48px 0 26px; }
.doc-line { width: 58%; height: 5px; background: #d0d1d5; margin: 13px 0; }
.doc-line.long { width: 92%; }
.doc-line.medium { width: 74%; }
.doc-section { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border-block: 1px solid #deded8; padding: 22px 0; }
.doc-section span { height: 46px; border-right: 1px solid #deded8; position: relative; }
.doc-section span:last-child { border-right: 0; }
.doc-section span::before,
.doc-section span::after { content: ""; position: absolute; left: 10px; height: 4px; background: #d0d1d5; }
.doc-section span::before { top: 10px; width: 58%; }
.doc-section span::after { top: 26px; width: 38%; }
.doc-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 46px; }
.doc-seal { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: var(--white); font-size: 12px; font-weight: 700; }
.doc-sign { display: grid; gap: 6px; width: 130px; }
.doc-sign span { height: 1px; background: #9fa0a7; }
.doc-sign small { color: #999ba4; font-size: 7px; text-align: right; }
.badge-orbit {
  position: absolute;
  right: 4%;
  bottom: 12%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(193,32,38,.22);
  transform: rotate(8deg);
}
.badge-orbit span { font-size: 26px; line-height: 1; }
.badge-orbit strong { font-size: 7px; letter-spacing: .1em; margin-top: -18px; }

.programs { background: var(--navy-deep); color: var(--white); overflow: hidden; }
.programs-wrap {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: center;
}
.programs-copy h2 { color: var(--white); }
.programs-copy h2 em { color: #ffb9bc; }
.programs-copy p { max-width: 520px; color: rgba(255,255,255,.68); font-size: 14px; }
.programs-copy .button { margin-top: 22px; }
.program-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.program-actions .button { margin-top: 0; }
.application-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 0;
  color: rgba(255,255,255,.58) !important;
  font-size: 10px !important;
}
.application-note::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffb9bc;
}
.program-preview {
  position: relative;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255,255,255,.035);
}
.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
}
.preview-status { display: flex; align-items: center; gap: 8px; }
.preview-status i { width: 7px; height: 7px; border-radius: 50%; background: #ffb9bc; box-shadow: 0 0 0 4px rgba(255,185,188,.1); }
.preview-card {
  margin-top: 12px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateX(0);
  transition: transform .2s ease;
}
.preview-card:nth-of-type(2) { margin-left: 28px; }
.preview-card:nth-of-type(3) { margin-left: 56px; }
.preview-card:hover { transform: translateX(-6px); }
.preview-card-muted { opacity: .72; }
.preview-tag { display: inline-flex; padding: 5px 8px; border: 1px solid #d9d8d1; border-radius: 999px; color: var(--red); font-size: 7px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.preview-lines { display: grid; gap: 8px; margin: 18px 0 20px; }
.preview-lines span { height: 7px; background: #d7d8dc; border-radius: 999px; }
.preview-lines span:first-child { width: 72%; background: var(--navy); }
.preview-lines span:last-child { width: 43%; }
.preview-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #e3e2dd; padding-top: 14px; color: #777a85; font-size: 9px; }
.preview-meta b { color: var(--navy); font-size: 16px; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 132px; }
.faq-heading h2 { font-size: 56px; }
.faq-heading p { color: var(--muted); font-size: 13px; max-width: 350px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary {
  list-style: none;
  position: relative;
  padding: 25px 48px 25px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 17px;
  height: 1px;
  background: var(--navy);
}
.accordion summary::after { transform: rotate(90deg); transition: transform .2s ease; }
.accordion details[open] summary::after { transform: rotate(0); }
.accordion details p { margin: -4px 52px 26px 0; color: var(--muted); font-size: 13px; }

.closing-cta { background: var(--red); color: var(--white); padding: 78px 0; }
.closing-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.closing-cta h2 { font-size: clamp(42px, 4.2vw, 62px); margin-bottom: 0; }
.closing-cta h2 em { color: #ffd9da; }
.closing-action { display: grid; justify-items: start; }
.closing-action p { color: rgba(255,255,255,.8); font-size: 13px; max-width: 380px; }
.closing-action .button { margin-top: 12px; }

.site-footer { background: #111633; color: var(--white); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .9fr .9fr; gap: 70px; }
.footer-brand-link .brand-copy strong { color: var(--white); }
.footer-brand-link .brand-copy span { color: rgba(255,255,255,.55); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 12px; max-width: 300px; margin-top: 20px; }
.footer-links, .footer-contact { display: grid; align-content: start; gap: 9px; }
.footer-links h3, .footer-contact h3 { margin: 0 0 10px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a, .footer-contact a, .footer-contact p { color: rgba(255,255,255,.72); font-size: 11px; margin: 0; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 9px; }


@media (max-width: 1080px) {
  .primary-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 460px; gap: 36px; }
  .hero h1 { font-size: 58px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(2) { border-right: 0; }
  .feature-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .why-grid, .recognition-grid, .programs-wrap { gap: 48px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; }
}

@media (max-width: 920px) {
  .announcement-inner { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform .24s ease, opacity .24s ease;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; }
  .primary-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { border: 0; border-radius: 0; }
  .nav-cta-pending { width: 100%; margin-top: 14px; padding: 13px 15px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .hero { padding-top: 64px; }
  .hero-grid, .definition-grid, .why-grid, .journey-head, .recognition-grid, .programs-wrap, .faq-grid, .closing-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .hero-copy { max-width: 760px; }
  .credential-stage { min-height: 560px; margin-top: 20px; }
  .definition-grid, .journey-head, .faq-grid { gap: 22px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .why-panel { min-height: 560px; }
  .recognition-grid { gap: 30px; }
  .document-visual { min-height: 560px; }
  .programs-wrap { gap: 60px; }
  .faq-heading { position: static; }
  .closing-action { max-width: 460px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .announcement a { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 45px; height: 45px; }
  .brand-copy strong { font-size: 15px; }
  .site-header .brand-copy strong { font-size: 13px; letter-spacing: .015em; }
  .hero { padding: 50px 0 68px; }
  .hero h1 { font-size: clamp(43px, 13vw, 58px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .program-actions { display: grid; gap: 12px; }
  .program-actions .text-link { margin-top: 0; justify-self: start; }
  .trust-row { gap: 14px; }
  .credential-stage { min-height: 490px; transform: scale(.92); margin-inline: -24px; }
  .stage-mark-one { width: 430px; height: 430px; }
  .stage-mark-two { width: 340px; height: 340px; }
  .credential-stage::before { width: 300px; height: 390px; }
  .credential-card { min-height: 440px; padding: 22px; }
  .credential-card h2 { font-size: 30px; }
  .credential-meta { grid-template-columns: 1fr; gap: 12px; }
  .credential-meta div { border-right: 0; padding: 0; }
  .floating-note { display: none; }
  .section { padding: 78px 0; }
  .section h2 { font-size: clamp(40px, 12vw, 52px); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .feature-card:nth-child(3) { border-bottom: 1px solid var(--line); }
  .why-panel { min-height: 600px; padding: 34px 26px; }
  .why-panel h2 { font-size: 42px; }
  .why-monogram { font-size: 150px; }
  .why-points article { grid-template-columns: 44px 1fr; gap: 14px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0; min-height: 290px; }
  .step:last-child { border-bottom: 0; }
  .doc-back, .doc-front { width: 290px; height: 420px; }
  .doc-front { padding: 26px; }
  .badge-orbit { width: 86px; height: 86px; right: 0; }
  .program-preview { padding: 18px; }
  .preview-card:nth-of-type(2), .preview-card:nth-of-type(3) { margin-left: 0; }
  .faq-heading h2 { font-size: 48px; }
  .accordion summary { font-size: 14px; }
  .closing-cta { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
