:root {
  --ink: #101915;
  --ink-soft: #385045;
  --paper: #f7f8f2;
  --paper-strong: #ffffff;
  --field: #0f5c45;
  --field-deep: #073b32;
  --moss: #d8e6ce;
  --gold: #e8c85e;
  --sky: #6aa6b8;
  --rust: #c5694f;
  --line: rgba(18, 36, 29, 0.14);
  --shadow: 0 24px 70px rgba(10, 29, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 248, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-shield {
  display: none;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(8, 30, 22, 0.16));
}

.brand-wordmark {
  width: min(220px, 26vw);
  height: auto;
  object-fit: contain;
}

.hero-brand-art {
  width: min(420px, 78vw);
  height: auto;
  margin: 0 0 20px -5px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.46));
}

.brand img {
  border-radius: 8px;
}

.topbar nav {
  display: flex;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 750;
}

.topbar nav a,
.topbar-cta,
.button {
  text-decoration: none;
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 850;
}

.topbar-cta,
.button.primary {
  color: #fff;
  background: var(--field);
  box-shadow: 0 12px 28px rgba(15, 92, 69, 0.22);
}

.button.secondary {
  color: var(--field-deep);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-bg {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 24, 18, 0.84), rgba(4, 24, 18, 0.52) 42%, rgba(4, 24, 18, 0.08) 78%),
    linear-gradient(0deg, rgba(4, 24, 18, 0.52), rgba(4, 24, 18, 0.04) 48%);
}

.hero-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 9vh;
  color: #fff;
}

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

.hero h1,
.section h2,
.framework-copy h2,
.closing-section h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.95;
  max-width: 920px;
}

.hero-copy {
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.24rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.11);
  font-weight: 800;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.framework-copy h2,
.closing-section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.section-heading p,
.framework-copy p,
.closing-section p,
.ai-section p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.proof-grid,
.module-grid,
.screen-grid,
.ai-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article,
.module-card,
.ai-points article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 16px 36px rgba(28, 43, 36, 0.07);
}

.proof-grid strong,
.ai-points strong {
  display: block;
  font-size: 1.08rem;
}

.proof-grid p,
.module-card p,
.ai-points span {
  margin: 11px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.quote-band {
  padding: 80px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--field-deep);
}

.quote-band > div {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.quote {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  font-weight: 900;
  line-height: 1.02;
}

.quote-note {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
}

.interview-player {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 13px 18px 13px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.interview-player-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--field-deep);
  background: var(--gold);
  border-radius: 999px;
}

.interview-player-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.interview-player strong,
.interview-player small {
  display: block;
}

.interview-player strong {
  font-size: 1rem;
}

.interview-player small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.interview-player audio {
  width: min(360px, 44vw);
  height: 38px;
  margin-left: 8px;
  accent-color: var(--gold);
}

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

.module-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 18px;
}

.module-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.framework-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 36px;
  align-items: center;
  padding: 86px clamp(18px, 4vw, 54px);
  background: #edf4ec;
}

.framework-copy {
  max-width: 560px;
  justify-self: end;
}

.framework-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.framework-copy li {
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.55;
  border-left: 4px solid var(--gold);
}

.framework-section > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.screen-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 26px;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 30, 23, 0.13);
}

figcaption {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.screen-feature h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.screen-feature p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.ai-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai-points article {
  min-height: 190px;
  border-top: 5px solid var(--sky);
}

.ai-points article:nth-child(2) {
  border-top-color: var(--gold);
}

.ai-points article:nth-child(3) {
  border-top-color: var(--rust);
}

.closing-section {
  padding: 98px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(135deg, var(--field-deep), #173d46);
}

.closing-section h2,
.closing-section p,
.closing-section .eyebrow {
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.closing-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
  line-height: 1.7;
}

.closing-section .button {
  width: fit-content;
  margin: 26px auto 0;
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 920px) {
  .topbar nav {
    display: none;
  }

  .proof-grid,
  .module-grid,
  .screen-grid,
  .ai-points,
  .framework-section,
  .screen-feature,
  .ai-section {
    grid-template-columns: 1fr;
  }

  .framework-copy {
    justify-self: start;
  }

  .interview-player {
    display: flex;
    align-items: flex-start;
    width: min(100%, 520px);
    flex-wrap: wrap;
  }

  .interview-player audio {
    width: 100%;
    margin: 8px 0 0 58px;
  }
}

@media (min-width: 921px) and (max-width: 1180px) {
  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .topbar {
    min-height: 66px;
  }

  .brand-wordmark {
    display: none;
  }

  .brand-shield {
    display: block;
  }

  .topbar-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero-inner {
    padding-bottom: 46px;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .section {
    padding: 62px 0;
  }

  .quote-band,
  .framework-section,
  .closing-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .interview-player {
    width: 100%;
  }

  .interview-player audio {
    margin-left: 0;
  }
}
