@font-face {
  font-family: "Oxanium";
  src: url("assets/fonts/oxanium-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oxanium";
  src: url("assets/fonts/oxanium-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oxanium";
  src: url("assets/fonts/oxanium-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #401c5a;
  --purple-bright: #69408b;
  --purple-soft: #eee8f2;
  --deep: #24102f;
  --ink: #172126;
  --slate: #3c484d;
  --muted: #687379;
  --line: #dce1e3;
  --mist: #f4f5f6;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(25, 20, 31, 0.1);
  --wrap: 1420px;
  --measure: 980px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 17px/1.7 Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.2em; }
.wrap { width: min(var(--wrap), calc(100% - 88px)); margin-inline: auto; }
.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99;
  padding: 10px 14px;
  color: var(--purple);
  background: var(--white);
  transform: translateY(-160%);
}
.skip:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(54, 66, 71, 0.14);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 335px; display: block; }
.nav-links { display: flex; align-items: center; gap: 7px; }
.nav-links a {
  padding: 11px 14px;
  border-radius: 7px;
  color: var(--slate);
  font: 600 13px/1 "Oxanium", Arial, sans-serif;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--purple); background: var(--purple-soft); }
.nav-links .nav-cta { color: var(--white); background: var(--purple); }
.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible { color: var(--white); background: var(--purple-bright); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0 67%, rgba(255,255,255,.72) 84%, rgba(255,255,255,.35)),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(64,28,90,.075) 48px),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(64,28,90,.075) 48px),
    #eef0f1;
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -210px;
  top: -240px;
  border: 64px solid rgba(64,28,90,.08);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: flex;
  align-items: center;
  padding-block: 86px;
}
.hero-copy { width: min(1180px, 92%); position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font: 700 13px/1.4 "Oxanium", Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  color: var(--deep);
  font-family: "Oxanium", Arial, sans-serif;
  line-height: 1.16;
}
h1 {
  max-width: 1200px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.2vw, 76px);
  letter-spacing: -.035em;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: -.025em;
}
h3 { margin-bottom: 13px; font-size: 20px; }
.lead {
  max-width: 1080px;
  margin: 0 0 34px;
  color: var(--slate);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.6;
}
@media (min-width: 1180px) {
  .home-hero h1 { white-space: nowrap; font-size: clamp(54px, 4.65vw, 74px); }
}
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--purple);
  border-radius: 8px;
  color: var(--white);
  background: var(--purple);
  font: 600 14px/1.2 "Oxanium", Arial, sans-serif;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--purple-bright);
  box-shadow: 0 10px 26px rgba(64,28,90,.22);
}
.button.secondary { color: var(--purple); background: transparent; }
.button.secondary:hover,
.button.secondary:focus-visible { color: var(--white); background: var(--purple); }

.section { padding-block: 100px; }
.section.compact { padding-block: 82px; }
.section.mist { background: var(--mist); }
.section.dark {
  color: #edf0f1;
  background:
    linear-gradient(125deg, rgba(64,28,90,.96), rgba(23,33,38,.98)),
    var(--ink);
}
.section.dark h2,
.section.dark h3 { color: var(--white); }
.section.dark .eyebrow { color: #d7bde7; }
.section-head { max-width: 1080px; margin-bottom: 48px; }
.section-head.wide-head { max-width: 1180px; }
.section-head p { max-width: var(--measure); color: var(--muted); font-size: 18px; }
.section.dark .section-head p { color: #d5dcde; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: start;
}
.split-copy { max-width: 760px; }
.grid { display: grid; gap: 24px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(25,32,36,.05);
}
.card::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--purple);
}
.card p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.68; }
.capability-cards .card { min-height: 270px; }
.feature {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 66px);
  border: 1px solid #d9cedf;
  border-radius: 18px;
  background: linear-gradient(115deg, #fff 0 72%, rgba(64,28,90,.06));
  box-shadow: var(--shadow);
}
.feature::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: -150px;
  border: 32px solid rgba(64,28,90,.08);
  border-radius: 50%;
}
.feature-copy { position: relative; z-index: 1; max-width: 1120px; }
.feature p { color: var(--slate); font-size: 18px; }
.experience-statement {
  max-width: 1180px;
  margin-bottom: 30px;
  font: 600 clamp(25px, 2.75vw, 38px)/1.38 "Oxanium", Arial, sans-serif;
  color: var(--deep);
}
.approach {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 40px 0 6px;
}
.approach span {
  position: relative;
  padding: 18px 10px;
  text-align: center;
  color: var(--purple);
  background: var(--white);
  border: 1px solid #cfc3d6;
  border-radius: 8px;
  font: 600 13px/1.2 "Oxanium", Arial, sans-serif;
}
.approach span:not(:last-child)::after {
  content: "›";
  position: absolute;
  z-index: 2;
  right: -11px;
  top: 12px;
  color: var(--purple);
  font-size: 24px;
}
.defense-teaser .experience-statement { color: var(--white); }
.defense-head { margin-bottom: 24px; }
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.18);
}
.capabilities article { padding: 30px; background: rgba(17,20,23,.48); min-height: 210px; }
.capabilities p { margin-bottom: 0; color: #cfd7da; font-size: 16px; }
.registration {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.facts div { padding: 19px 0; border-bottom: 1px solid var(--line); }
.facts dt { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.facts dd { margin: 4px 0 0; font-weight: 700; }
.contact {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 44px;
  color: var(--white);
  background: var(--deep);
  border-radius: 14px;
}
.contact-copy { position: relative; z-index: 2; max-width: 58%; }
.contact h2,
.contact h3 { color: var(--white); }
.contact a { color: var(--white); }
.contact .eyebrow { color: #d7bde7; }
.contact-q::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -28px;
  top: 52%;
  transform: translateY(-50%);
  background: url("assets/white-q.png") center/contain no-repeat;
  opacity: .96;
}
.compact-contact { min-height: 290px; }
.disclaimer {
  padding: 21px 24px;
  border-left: 3px solid var(--purple);
  color: var(--muted);
  background: var(--mist);
  font-size: 13px;
}
.footer { padding-block: 30px; color: #cfd5d7; background: #151d21; font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer a { color: var(--white); }

.defense-hero .hero-grid { min-height: 620px; }
.defense-hero .hero-copy { width: min(930px, 72%); }
.hero-mark {
  position: absolute;
  right: 40px;
  top: 50%;
  width: min(34vw, 460px);
  transform: translateY(-50%);
  opacity: .09;
  z-index: 1;
}
.artifact-grid article {
  padding: 26px 28px;
  border-left: 3px solid var(--purple);
  background: var(--mist);
}
.artifact-grid p { margin: 0; color: var(--muted); font-size: 16px; }
.experience-feature { background: linear-gradient(115deg, #fff 0 80%, rgba(64,28,90,.06)); }
.experience-details { max-width: 980px; }
.independent-section .split > div:first-child { max-width: 620px; }

@media (max-width: 1120px) {
  .wrap { width: min(var(--wrap), calc(100% - 56px)); }
  .brand img { width: 285px; }
  .hero-copy { width: 96%; }
  .grid.four { grid-template-columns: repeat(2, 1fr); }
  .grid.three,
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .split,
  .registration { grid-template-columns: 1fr; }
  .approach { grid-template-columns: repeat(3, 1fr); }
  .defense-hero .hero-copy { width: 78%; }
  .hero-mark { right: -20px; width: 360px; }
  .contact-copy { max-width: 62%; }
}

@media (max-width: 760px) {
  .wrap { width: min(var(--wrap), calc(100% - 30px)); }
  .site-header { position: relative; }
  .nav { display: block; padding-block: 14px; }
  .brand { margin-bottom: 14px; }
  .brand img { width: 260px; }
  .nav-links { justify-content: flex-start; flex-wrap: wrap; }
  .nav-links a { padding: 9px 8px; font-size: 12px; }
  .hero-grid { min-height: auto; padding-block: 66px; }
  .hero-copy,
  .defense-hero .hero-copy { width: 100%; }
  h1 { font-size: 44px; }
  .section,
  .section.compact { padding-block: 68px; }
  .grid.three,
  .grid.two,
  .grid.four,
  .capabilities { grid-template-columns: 1fr; }
  .card,
  .capabilities article { padding: 27px; min-height: 0; }
  .feature { padding: 32px 25px; }
  .approach { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-mark { display: none; }
  .contact { min-height: 340px; padding: 34px; }
  .contact-copy { max-width: 100%; padding-right: 75px; }
  .contact-q::after { width: 155px; height: 155px; right: -42px; opacity: .35; }
}

@media print {
  .site-header { position: static; }
  .nav-links,
  .button-row,
  .button { display: none; }
  .hero,
  .section,
  .section.compact { padding-block: 34px; }
  .hero-grid { min-height: auto; padding-block: 34px; }
  .section.dark { color: var(--ink); background: var(--white); }
  .section.dark h2,
  .section.dark h3 { color: var(--deep); }
  .section.dark .eyebrow,
  .section.dark .section-head p,
  .capabilities p { color: var(--slate); }
  .capabilities { border-color: var(--line); background: var(--line); }
  .capabilities article { background: var(--white); }
  .card,
  .feature,
  .contact { break-inside: avoid; box-shadow: none; }
  .contact { color: var(--ink); background: var(--mist); }
  .contact h2,
  .contact h3,
  .contact a { color: var(--ink); }
  .contact-q::after,
  .hero-mark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Version 2.2 defense page refinements */
.defense-hero .hero-grid { min-height: 620px; }
.defense-hero .hero-copy { width: min(1240px, 96%); }
.defense-hero h1 { max-width: 1240px; font-size: clamp(50px, 5.35vw, 78px); }
.defense-hero .lead { max-width: 1050px; }
.methodology-head { margin-bottom: 38px; }
.methodology-head h2 { margin-bottom: 0; }
.big-safari-section .experience-statement { color: var(--white); max-width: 1280px; }
.big-safari-head { margin-bottom: 24px; }
.big-safari-intro { max-width: 1120px; margin-bottom: 42px; color: #d5dcde; font-size: 18px; }
.big-safari-intro p:last-child { margin-bottom: 0; }
.experience-capabilities { grid-template-columns: repeat(3, 1fr); }
.experience-capabilities article { min-height: 205px; }
.defense-registration { align-items: stretch; }
.defense-registration > div:first-child { padding-block: 12px; }
.defense-registration .contact { height: 100%; }
.defense-registration .contact-copy { max-width: 58%; }
.defense-registration .contact-q::after {
  width: 225px;
  height: 225px;
  right: 18px;
  top: 56%;
}
.disclaimer-section { padding-top: 0 !important; }

@media (max-width: 1120px) {
  .defense-hero .hero-copy { width: 100%; }
  .experience-capabilities { grid-template-columns: repeat(2, 1fr); }
  .defense-registration .contact-copy { max-width: 62%; }
}

@media (max-width: 760px) {
  .defense-hero h1 { font-size: 44px; }
  .experience-capabilities { grid-template-columns: 1fr; }
  .defense-registration .contact-copy { max-width: 100%; padding-right: 72px; }
  .defense-registration .contact-q::after { width: 150px; height: 150px; right: -30px; top: 58%; opacity: .38; }
}
