:root {
  color-scheme: light;
  --navy-950: #0d1724;
  --navy-900: #101926;
  --navy-800: #172335;
  --navy-700: #233148;
  --gold-600: #c99400;
  --gold-500: #e0ac13;
  --green-700: #1f6f5b;
  --ink: #111923;
  --slate: #5b6676;
  --muted: #7a8493;
  --line: #d8dee8;
  --soft: #eef1f5;
  --paper: #f7f4ea;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(13, 23, 36, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 20px 32px;
  color: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(216, 222, 232, 0.16);
  background: rgba(13, 23, 36, 0.92);
  box-shadow: 0 12px 32px rgba(13, 23, 36, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold-500);
  font-size: 0.9rem;
  font-weight: 900;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.86rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a,
.nav-download,
.button {
  text-decoration: none;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-download {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.nav-download:hover {
  border-color: var(--gold-500);
  background: rgba(224, 172, 19, 0.14);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 12px;
  background: var(--gold-600);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 23, 36, 0.96) 0%, rgba(13, 23, 36, 0.88) 34%, rgba(13, 23, 36, 0.58) 64%, rgba(13, 23, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(13, 23, 36, 0.72) 0%, rgba(13, 23, 36, 0.06) 48%, rgba(13, 23, 36, 0.78) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 86svh;
  max-width: var(--max);
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  margin: 0 auto;
  padding: 124px 32px 68px;
}

.eyebrow {
  margin: 0;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.25rem;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-quiet {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  max-width: 830px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(13, 23, 36, 0.58);
}

.hero-facts dt {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.35;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy-800);
}

.metric {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  background: var(--navy-900);
}

.metric strong {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.metric span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 92px 32px;
}

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

.section-white {
  background: var(--white);
}

.section-ink {
  background: var(--navy-950);
  color: var(--white);
}

.section-grid,
.value-grid,
.fit-grid,
.package-grid,
.proof-layout,
.prospectus-section {
  max-width: var(--max);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.74fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 44px;
}

.section h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.proof-layout p,
.prospectus-copy p {
  margin: 0;
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.75;
}

.section-ink .section-copy p,
.section-ink .pathway span {
  color: rgba(255, 255, 255, 0.72);
}

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

.value-card,
.fit-item,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-card {
  min-height: 260px;
  padding: 26px;
}

.card-mark {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 800;
}

.value-card h3,
.fit-item h3,
.package-head p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.value-card h3 {
  font-size: 1.15rem;
}

.value-card p,
.fit-item p,
.package-card li {
  color: var(--slate);
  line-height: 1.62;
}

.value-card p {
  margin: 14px 0 0;
}

.pathway {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: pathway;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.pathway li {
  min-height: 260px;
  padding: 26px 22px;
  background: var(--navy-900);
  counter-increment: pathway;
}

.pathway li::before {
  content: counter(pathway, decimal-leading-zero);
  display: block;
  margin-bottom: 56px;
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.pathway strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
}

.pathway span {
  display: block;
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.58;
}

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

.fit-item {
  padding: 24px;
  border-top: 4px solid var(--green-700);
}

.fit-item:nth-child(2) {
  border-top-color: var(--gold-600);
}

.fit-item:nth-child(3) {
  border-top-color: var(--navy-700);
}

.fit-item:nth-child(4) {
  border-top-color: #8a4f2a;
}

.fit-item p {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  box-shadow: 0 12px 38px rgba(13, 23, 36, 0.05);
}

.package-featured {
  border-color: var(--gold-600);
  box-shadow: var(--shadow);
}

.package-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.package-head p {
  font-weight: 900;
}

.package-head strong {
  display: block;
  margin-top: 12px;
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.96rem;
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-700);
}

.section-proof {
  background: var(--navy-800);
  color: var(--white);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: center;
}

.proof-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.proof-grid div {
  padding: 26px 20px;
  background: var(--navy-900);
}

.proof-grid strong {
  display: block;
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.prospectus-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) 340px;
  gap: 60px;
  align-items: center;
}

.prospectus-copy h2 {
  margin: 12px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.prospectus-copy p {
  max-width: 650px;
}

.cta-row {
  margin-top: 28px;
}

.prospectus-preview {
  margin: 0;
}

.prospectus-preview img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.prospectus-preview figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 750;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .section-grid,
  .proof-layout,
  .prospectus-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .value-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

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

  .prospectus-section {
    max-width: 720px;
  }

  .prospectus-preview {
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 16px 18px;
  }

  .brand span {
    font-size: 0.78rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .nav-download {
    max-width: 148px;
    padding: 9px 10px;
    text-align: center;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero::before {
    width: 7px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 23, 36, 0.98) 0%, rgba(13, 23, 36, 0.9) 58%, rgba(13, 23, 36, 0.66) 100%),
      linear-gradient(180deg, rgba(13, 23, 36, 0.78) 0%, rgba(13, 23, 36, 0.26) 46%, rgba(13, 23, 36, 0.82) 100%);
  }

  .hero-inner {
    min-height: 88svh;
    gap: 22px;
    padding: 108px 22px 44px;
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.58;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .proof-strip,
  .fit-grid,
  .pathway,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 15px;
  }

  .metric {
    min-height: 92px;
    padding: 20px 24px;
  }

  .section {
    padding: 68px 22px;
  }

  .section h2,
  .prospectus-copy h2 {
    font-size: 2.05rem;
  }

  .value-card {
    min-height: auto;
    padding: 22px;
  }

  .card-mark {
    margin-bottom: 26px;
  }

  .pathway li {
    min-height: auto;
  }

  .pathway li::before {
    margin-bottom: 32px;
  }

  .proof-grid div {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 22px;
  }
}
