:root {
  --ink: #12151b;
  --navy: #111c2f;
  --navy-soft: #1c2b44;
  --paper: #f7f4ec;
  --paper-deep: #ece6d9;
  --white: #ffffff;
  --gold: #d4b25b;
  --gold-dark: #876b25;
  --coral: #e56f63;
  --muted: #5c626c;
  --line: rgba(18, 21, 27, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
body.menu-open,
body.privacy-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.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;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(13, 22, 38, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}
.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 200px;
  height: 65px;
  object-fit: contain;
}
.site-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-menu a {
  color: #f7f4ec;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-menu a:hover,
.site-menu a:focus-visible { color: #f4d983; }
.site-menu .nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--gold);
  color: #fff4cf;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: white;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(820px, 92vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background: url("/assets/free-report.jpg") center 35% / cover no-repeat;
  transform: scale(1.01);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 12, 23, 0.94) 0%, rgba(8, 15, 28, 0.82) 48%, rgba(8, 15, 28, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 13, 24, 0.84) 0%, transparent 54%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 154px 0 74px;
}
.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}
h1 {
  max-width: 850px;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  text-transform: uppercase;
}
h2 { font-size: clamp(2.1rem, 4.5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.35rem); }
.hero-copy {
  max-width: 700px;
  margin: 25px 0 30px;
  color: #f5f6f8;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions,
.button-row,
.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 900;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button-primary {
  background: var(--coral);
  color: #161616;
  border-color: var(--coral);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: #ff8b7e;
  border-color: #ff8b7e;
}
.button-secondary {
  background: rgba(8, 15, 28, 0.72);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  color: var(--ink);
}
.button-gold {
  background: var(--gold);
  color: #161616;
  border-color: var(--gold);
}
.button-gold:hover,
.button-gold:focus-visible {
  background: #eed581;
  border-color: #eed581;
}
.button-secondary-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.button-secondary-dark:hover,
.button-secondary-dark:focus-visible {
  background: var(--white);
  color: var(--ink);
}
.hero-note {
  max-width: 720px;
  margin: 22px 0 0;
  color: #e5e7ec;
  font-size: 0.8rem;
}

.notice-band {
  background: var(--coral);
  color: #171717;
}
.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.notice-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
}
.notice-inner strong {
  font-size: 1.05rem;
  text-transform: uppercase;
}
.notice-inner p { margin: 0; }
.section {
  padding: 96px 0;
  scroll-margin-top: 78px;
}
.mission-grid,
.feature-grid,
.founder-grid,
.faq-grid {
  display: grid;
  gap: 64px;
}
.mission-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.mission-copy p {
  margin: 0 0 22px;
  color: #333941;
  font-size: 1.1rem;
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.feature-grid {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}
.feature-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #0b1220;
}
.feature-image img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  object-position: center 19%;
}
.feature-copy > p:not(.section-kicker) {
  max-width: 620px;
  color: #e2e7f0;
  font-size: 1.08rem;
}
.text-link {
  color: #ffe9a6;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.text-link-dark { color: #5c4510; }

.programs { background: var(--paper-deep); }
.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}
.section-heading > p:not(.section-kicker) {
  color: #434950;
  font-size: 1.05rem;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.program-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}
.program-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
}
.program-art {
  min-height: 100%;
  overflow: hidden;
  background: var(--navy-soft);
}
.program-art img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.program-card:nth-child(2) .program-art img { object-position: center 24%; }
.program-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
}
.program-body > p:not(.card-label) { color: #424851; }
.card-label { color: var(--gold-dark); }
.card-link {
  margin-top: auto;
  color: #183453;
  font-weight: 900;
  text-underline-offset: 4px;
}
.status-tag {
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid #ae7b73;
  color: #63332d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.founder { background: var(--white); }
.founder-grid {
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}
.founder-mark {
  display: flex;
  justify-content: center;
}
.founder-mark img { width: min(100%, 420px); }
.founder-grid p:not(.section-kicker) {
  color: #3d434b;
  font-size: 1.08rem;
}
.faq-grid {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
}
.faq .section-heading p:not(.section-kicker) { color: #dfe4ed; }
.accordion { border-top: 1px solid rgba(255, 255, 255, 0.3); }
.accordion details { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.accordion summary {
  position: relative;
  padding: 22px 46px 22px 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 4px;
  color: var(--gold);
  font-size: 1.7rem;
  line-height: 1;
}
.accordion details[open] summary::after { content: "−"; }
.accordion details p {
  margin: 0;
  padding: 0 46px 24px 0;
  color: #dde3ed;
}
.closing { background: var(--gold); }
.closing-inner {
  max-width: 850px;
  text-align: center;
}
.closing .section-kicker { color: #4f3b0e; }
.closing p:not(.section-kicker) { font-size: 1.08rem; }
.closing .button { margin-top: 18px; }

.site-footer {
  padding: 44px 0;
  background: #0b1220;
  color: #eef1f5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}
.footer-logo { width: 190px; height: auto; }
.footer-grid p {
  margin: 9px 0 0;
  color: #cbd2dc;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #f2dd9d;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
}

.privacy-panel {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: end center;
  padding: 20px;
  background: rgba(4, 8, 15, 0.76);
}
.privacy-panel[hidden] { display: none; }
.privacy-card {
  width: min(100%, 720px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: #111c2f;
  color: var(--white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}
.privacy-card h2 { font-size: clamp(1.65rem, 4vw, 2.5rem); }
.privacy-card > p:not(.section-kicker) { color: #e1e6ef; }
.privacy-link {
  display: inline-block;
  margin-top: 16px;
  color: #ffe39a;
}

.policy-page {
  min-height: 100vh;
  padding: 138px 20px 80px;
  background: var(--paper);
}
.policy-content {
  width: min(100%, 860px);
  margin: 0 auto;
}
.policy-content h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 5.5rem);
}
.policy-content h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}
.policy-content p,
.policy-content li { color: #353b43; }
.policy-content a {
  color: #244d72;
  font-weight: 800;
}
.policy-date {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-menu { gap: 15px; }
  .site-menu a { font-size: 0.72rem; }
  .mission-grid,
  .feature-grid,
  .founder-grid,
  .faq-grid { gap: 38px; }
  .program-card,
  .program-card-wide { grid-template-columns: 1fr; }
  .program-art img {
    min-height: 260px;
    max-height: 360px;
  }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
    min-height: 68px;
  }
  .brand img {
    width: 172px;
    height: 56px;
  }
  .menu-toggle { display: block; }
  .site-menu {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    max-height: calc(100vh - 68px);
    padding: 22px 20px 30px;
    overflow-y: auto;
    background: #101a2c;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .site-menu.is-open { display: grid; }
  .site-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
  }
  .site-menu .nav-cta { justify-content: center; }
  .hero { min-height: 760px; }
  .hero-media { background-position: 62% center; }
  .hero-overlay {
    background: linear-gradient(0deg, rgba(6, 12, 23, 0.96) 0%, rgba(6, 12, 23, 0.82) 57%, rgba(6, 12, 23, 0.42) 100%);
  }
  .hero-content,
  .section-inner { width: min(calc(100% - 28px), var(--max)); }
  .hero-content { padding: 130px 0 45px; }
  h1 { font-size: clamp(3rem, 16vw, 5rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.25rem); }
  .hero-actions .button { width: 100%; }
  .notice-inner,
  .mission-grid,
  .feature-grid,
  .founder-grid,
  .faq-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .notice-inner {
    gap: 2px;
    padding: 18px 0;
  }
  .section { padding: 68px 0; }
  .feature-image { order: 2; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card-wide { grid-column: auto; }
  .program-body { min-height: 300px; }
  .founder-mark img { width: min(76vw, 330px); }
  .footer-links { justify-content: flex-start; }
  .privacy-panel { padding: 12px; }
  .privacy-card {
    max-height: calc(100vh - 24px);
    padding: 23px;
    overflow-y: auto;
  }
  .privacy-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
