:root {
  color-scheme: light;
  --ink: #17201d;
  --soft-ink: #33413b;
  --muted: #66726b;
  --paper: #f7f3eb;
  --chalk: #fffdf8;
  --mist: #dce9e4;
  --mint: #b9dcd2;
  --teal: #1f776f;
  --deep-teal: #0f3936;
  --coral: #d96952;
  --wine: #743646;
  --gold: #d7ad55;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(12, 22, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--chalk);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.nav-links {
  gap: clamp(16px, 3vw, 30px);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.94rem;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 82px) 58px;
  color: var(--chalk);
}

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

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

.hero-shade {
  background:
    radial-gradient(circle at 78% 24%, rgba(215, 173, 85, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(8, 13, 13, 0.94) 0%, rgba(8, 13, 13, 0.76) 34%, rgba(8, 13, 13, 0.2) 76%),
    linear-gradient(180deg, rgba(8, 13, 13, 0.38), rgba(8, 13, 13, 0.1) 45%, rgba(8, 13, 13, 0.74));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  min-height: calc(92vh - 186px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.hero-content {
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.7rem, 7vw, 7.35rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 850;
}

.primary-action {
  padding: 0 22px;
  background: var(--coral);
  color: var(--chalk);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.secondary-action {
  border: 1px solid rgba(255, 253, 248, 0.34);
  padding: 0 18px;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.88);
}

.hero-panel {
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 24px;
  backdrop-filter: blur(18px);
}

.panel-topline,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-topline {
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-topline strong {
  color: var(--teal);
  font-size: 1.4rem;
}

.course-preview {
  margin: 24px 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 119, 111, 0.16), rgba(216, 105, 82, 0.14)),
    var(--chalk);
  padding: 22px;
}

.course-chip {
  display: inline-flex;
  border-radius: 999px;
  background: var(--deep-teal);
  color: var(--chalk);
  padding: 7px 11px;
  font-size: 0.76rem;
  font-weight: 850;
}

.course-preview h2 {
  margin: 22px 0 10px;
  font-size: 1.85rem;
  line-height: 1;
}

.course-preview p {
  margin: 0;
  color: var(--muted);
}

.metric-row {
  margin-top: 16px;
  color: var(--soft-ink);
  font-size: 0.92rem;
}

.metric-track {
  width: 44%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 32, 29, 0.12);
}

.metric-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.intro-band,
.problem-band,
.directions-band,
.journey-band,
.method-band,
.audience-band,
.showcase-band,
.partners-band {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 82px);
}

.intro-band {
  background: var(--deep-teal);
  color: var(--chalk);
}

.directions-band {
  background: var(--paper);
}

.problem-band,
.method-band {
  background: #e6eee9;
}

.journey-band,
.audience-band,
.principles-band {
  background: var(--chalk);
}

.showcase-band {
  background: var(--paper);
}

.partners-band {
  background: var(--ink);
  color: var(--chalk);
}

.closing-band {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(15, 57, 54, 0.94), rgba(116, 54, 70, 0.86)),
    var(--deep-teal);
  color: var(--chalk);
}

.principles-band {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 82px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.intro-lead {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 4rem);
  line-height: 1.02;
}

.stat-list {
  display: grid;
  gap: 12px;
}

.stat-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  padding: 18px 0;
}

.stat-list strong {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stat-list span {
  color: rgba(255, 253, 248, 0.72);
}

.problem-layout,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.problem-layout {
  align-items: start;
}

.problem-copy {
  display: grid;
  gap: 22px;
}

.problem-copy p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.direction-card {
  min-height: 278px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chalk);
  padding: 26px;
}

.featured-card {
  background: var(--teal);
  color: var(--chalk);
}

.card-kicker {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
}

.featured-card .card-kicker,
.partners-band .eyebrow {
  color: var(--gold);
}

h3 {
  margin: 34px 0 12px;
  font-size: 1.42rem;
  line-height: 1.1;
}

.direction-card p,
.method-list p,
.partners-layout p {
  margin: 0;
  color: var(--muted);
}

.featured-card p,
.partners-layout p {
  color: rgba(255, 253, 248, 0.76);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-steps article {
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
}

.journey-steps span,
.method-list span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
}

.journey-steps h3 {
  margin-top: 58px;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 7vw, 88px);
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-list article {
  border-left: 3px solid var(--coral);
  background: rgba(255, 253, 248, 0.62);
  padding: 20px 22px;
}

.method-list h3 {
  margin: 10px 0 8px;
}

.audience-layout,
.showcase-layout,
.partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.64fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.audience-grid {
  display: grid;
  gap: 14px;
}

.audience-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
}

.audience-grid h3 {
  margin: 0 0 10px;
}

.audience-grid p,
.showcase-copy p,
.principles-grid p,
.closing-panel p {
  margin: 0;
  color: var(--muted);
}

.showcase-layout {
  align-items: center;
}

.showcase-copy p {
  margin-top: 22px;
  font-size: 1.08rem;
}

.signal-stack {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--chalk);
  box-shadow: 0 18px 54px rgba(12, 22, 20, 0.1);
}

.signal-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
}

.signal-stack div:last-child {
  border-bottom: 0;
}

.signal-stack span {
  color: var(--muted);
}

.signal-stack strong {
  color: var(--ink);
  text-align: right;
}

.partners-layout .dark-action {
  align-self: end;
  justify-self: start;
  background: var(--gold);
  color: var(--ink);
  box-shadow: none;
}

.principles-layout {
  display: grid;
  gap: 44px;
}

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

.principles-grid article {
  border-top: 3px solid var(--gold);
  background: var(--paper);
  padding: 26px;
}

.principles-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--deep-teal);
  font-size: 1.25rem;
  font-weight: 850;
}

.closing-panel {
  display: grid;
  justify-items: start;
  max-width: 880px;
  gap: 24px;
}

.closing-panel h2 {
  max-width: 760px;
}

.closing-panel p {
  max-width: 670px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.12rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .problem-layout,
  .section-heading,
  .method-layout,
  .audience-layout,
  .showcase-layout,
  .partners-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    width: min(440px, 100%);
  }

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

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

@media (max-width: 720px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

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

  .hero-grid {
    min-height: 0;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 13, 13, 0.9), rgba(8, 13, 13, 0.58)),
      linear-gradient(180deg, rgba(8, 13, 13, 0.3), rgba(8, 13, 13, 0.28) 42%, rgba(8, 13, 13, 0.78));
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .direction-grid {
    grid-template-columns: 1fr;
  }

  .journey-steps,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .direction-card {
    min-height: auto;
  }

  .journey-steps article {
    min-height: auto;
  }

  .journey-steps h3 {
    margin-top: 34px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 290px);
  }

  .stat-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
