:root {
  --ink: #142435;
  --muted: #5b6672;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dbe3ea;
  --forest: #173d5c;
  --forest-2: #0b263d;
  --gold: #b88a44;
  --clay: #a9543e;
  --sage: #e2ebf2;
  --mist: #f0f4f7;
  --shadow: 0 24px 60px rgba(16, 50, 78, 0.14);
}

* {
  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;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(251, 250, 247, 0.93);
  border-bottom: 1px solid rgba(221, 226, 220, 0.85);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 188px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  color: #36413c;
}

.nav a {
  padding: 8px 0;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--forest);
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(6, 23, 39, 0.86), rgba(6, 23, 39, 0.46), rgba(6, 23, 39, 0.18)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=2400&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 20% 75%, rgba(184, 138, 68, 0.28), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  padding: 84px clamp(22px, 6vw, 70px) 34px;
}

.hero-main {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.copy-block h2,
.split-content h2,
.quote-panel h2,
.consult h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 60px);
  font-weight: 500;
}

.hero-copy {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.45;
}

.reassurance {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

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

.btn {
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  color: var(--forest-2);
  background: #f2c56f;
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn.dark {
  margin-top: 28px;
  color: var(--white);
  background: var(--forest);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin: 18px 0 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.proof-strip div {
  padding: 10px 12px;
  background: rgba(8, 33, 56, 0.55);
}

.proof-strip dt {
  margin: 0 0 4px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
}

.proof-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.trust-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(790px, 100%);
  margin-top: 8px;
}

.trust-stack span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 750;
}

.trust-stack svg {
  width: 16px;
  height: 16px;
  color: #f2c56f;
}

.review-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.review-kicker {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

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

.review-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.45;
}

.review-card li svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  flex: 0 0 auto;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 900;
}

.review-link svg {
  width: 17px;
  height: 17px;
}

.section,
.intro-band,
.team-section,
.pathfinder,
.clarity-section,
.comparison-section,
.split-band,
.founder-section,
.market-cycle,
.login-section,
.credibility,
.consult {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.section-inner,
.section-heading,
.service-grid,
.problem-grid,
.story-grid,
.hub-grid,
.blog-grid,
.login-layout,
.clarity-layout,
.comparison-grid,
.team-layout,
.process,
.credibility,
.consult {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
}

.two-col,
.founder-layout,
.team-layout,
.market-layout,
.clarity-layout,
.login-layout,
.split-content,
.consult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.vsl-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 33, 56, 0.52), rgba(8, 33, 56, 0.58)),
    url("https://kajabi-storefronts-production.kajabi-cdn.com/kajabi-storefronts-production/file-uploads/themes/2159579892/settings_images/0d7d1b4-75bc-bce1-0743-eb8473e7270_TIME-to-Buy-Time-to-Sell.jpg");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.video-placeholder svg {
  width: 64px;
  height: 64px;
  padding: 16px;
  color: var(--forest-2);
  background: #f2c56f;
  border-radius: 999px;
}

.video-placeholder span {
  font-size: 24px;
  font-weight: 800;
}

.vsl-player {
  position: relative;
  background: var(--forest-2);
}

.homepage-vsl {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--forest-2);
}

.vsl-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: var(--forest-2);
  background: rgba(242, 197, 111, 0.96);
  box-shadow: 0 18px 42px rgba(8, 33, 56, 0.26);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.vsl-play-overlay svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  fill: currentColor;
}

.vsl-play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.vsl-play-overlay.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.intro-band .copy-block h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
}

.intro-band .copy-block p:not(.eyebrow) {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.62;
}

.sovereign-planning {
  padding: clamp(68px, 8vw, 112px) clamp(22px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(240, 244, 247, 0.96), rgba(251, 250, 247, 0.98)),
    radial-gradient(circle at 82% 14%, rgba(184, 138, 68, 0.16), transparent 36%);
}

.compact-heading {
  max-width: 920px;
  margin: 0 auto 34px;
}

.sovereign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.sovereign-grid article {
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
}

.sovereign-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--gold);
}

.sovereign-grid span,
.hub-grid span,
.story-grid span,
.blog-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sovereign-grid h3 {
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.sovereign-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.planning-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 234, 0.95);
  border-radius: 8px;
  background: var(--line);
}

.planning-strip div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.planning-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest-2);
  font-size: 15px;
}

.planning-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.planning-process {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  margin-top: 34px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-2);
}

.planning-process h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.06;
}

.planning-process ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.planning-process li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.planning-process li span {
  grid-row: span 2;
  color: #f2c56f;
  font-weight: 850;
}

.planning-process strong {
  font-size: 17px;
}

.planning-process p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.impact-counter {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 72px);
  color: var(--forest-2);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.94), rgba(251, 250, 247, 0.82)),
    url("./assets/cofounders-cropped.png");
  background-position: center 34%;
  background-size: cover;
}

.impact-counter::before {
  content: "1546";
  position: absolute;
  inset: -4vw auto auto -2vw;
  color: rgba(20, 36, 53, 0.05);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(150px, 31vw, 440px);
  font-weight: 800;
  line-height: 0.8;
  pointer-events: none;
}

.impact-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.impact-inner h2 {
  width: min(720px, 100%);
  margin: 0 auto 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.02;
}

.impact-number-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 14px 22px;
  margin: 20px 0 18px;
}

.impact-number {
  color: #05070a;
  font-size: clamp(82px, 16vw, 210px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow: 0 12px 28px rgba(20, 36, 53, 0.16);
}

.impact-counting {
  margin-bottom: clamp(8px, 2.4vw, 24px);
  color: var(--gold);
  font-family: "Bradley Hand", "Marker Felt", "Segoe Print", cursive;
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1;
  transform: rotate(-3deg);
}

.impact-inner > p:last-child {
  width: min(650px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.testimonial-ribbon {
  overflow: hidden;
  padding: clamp(62px, 8vw, 108px) 0;
  background: var(--paper);
}

.testimonial-ribbon .section-inner {
  width: min(100%, 1480px);
  padding: 0;
}

.testimonial-heading {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto 30px;
  text-align: center;
}

.testimonial-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-block: 8px 18px;
  animation: testimonial-scroll 46s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-set {
  display: flex;
  gap: 18px;
}

.testimonial-card {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: clamp(360px, 31vw, 470px);
  min-height: 390px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(20, 36, 53, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 36, 53, 0.07);
}

.quote-mark {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.7;
}

.testimonial-card p {
  margin: 18px 0 22px;
  color: #535f6a;
  font-size: clamp(20px, 1.35vw, 25px);
  font-style: italic;
  line-height: 1.5;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
}

.testimonial-card small {
  display: block;
  color: rgba(184, 138, 68, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

@keyframes testimonial-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    width: auto;
    padding-inline: 22px;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .testimonial-track .testimonial-set[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    scroll-snap-align: center;
  }
}

.copy-block h2,
.section-heading h2,
.clarity-layout h2,
.team-layout h2,
.login-layout h2,
.split-content h2,
.market-layout h2,
.quote-panel h2,
.consult h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
}

.copy-block p,
.section-heading p,
.clarity-layout p,
.team-layout p,
.login-layout p,
.split-content p,
.market-layout p,
.quote-panel p,
.consult p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li,
.trust-items div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list svg,
.trust-items svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: 0 0 auto;
}

.founder-section {
  background: var(--mist);
}

.portrait-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portrait-image {
  min-height: 440px;
  background:
    linear-gradient(180deg, rgba(22, 58, 90, 0.02), rgba(22, 58, 90, 0.08)),
    url("./assets/cofounders-cropped.png");
  background-position: center 22%;
  background-size: cover;
}

.portrait-caption {
  display: grid;
  gap: 4px;
  padding: 20px;
}

.portrait-caption strong {
  font-size: 18px;
}

.portrait-caption span {
  color: var(--muted);
  line-height: 1.45;
}

blockquote {
  margin: 28px 0 0;
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  color: var(--forest-2);
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
}

.pathfinder {
  background: var(--forest);
  color: var(--white);
}

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

.team-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.team-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
}

.team-proof strong {
  color: var(--forest);
}

.team-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-video {
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 33, 56, 0.42), rgba(8, 33, 56, 0.68)),
    url("https://kajabi-storefronts-production.kajabi-cdn.com/kajabi-storefronts-production/file-uploads/themes/2159579892/settings_images/a1b524b-5a7-d45-27e7-3d1b8b432d2_Beige_Black_Modern_Free_Guide_Mockup_Instagram_Post.png");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.team-video svg {
  width: 58px;
  height: 58px;
  padding: 15px;
  border-radius: 999px;
  color: var(--forest-2);
  background: #f2c56f;
}

.team-video span {
  font-size: 23px;
  font-weight: 850;
}

.team-bios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.team-bios article {
  padding: 22px;
  background: var(--white);
}

.team-bios h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.team-bios p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.team-bios span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-philosophy-section {
  background: var(--mist);
}

.team-philosophy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.team-philosophy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.02;
}

.philosophy-points {
  display: grid;
  gap: 14px;
}

.philosophy-points article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.philosophy-points span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
}

.philosophy-points h3 {
  margin: 0;
  font-size: 22px;
}

.philosophy-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pathfinder .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.pathfinder-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.path-options {
  display: grid;
  gap: 10px;
}

.path-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.path-option svg {
  width: 22px;
  height: 22px;
  color: #f2c56f;
  flex: 0 0 auto;
}

.path-option.active {
  color: var(--forest-2);
  background: #f2c56f;
}

.path-option.active svg {
  color: var(--forest-2);
}

.path-result {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.path-label {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.path-result h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.path-result p:not(.path-label) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.clarity-stack {
  display: grid;
  gap: 12px;
}

.clarity-stack article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.clarity-stack span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--forest-2);
  background: #f2c56f;
  font-size: 13px;
  font-weight: 900;
}

.clarity-stack h3 {
  margin: 0;
  font-size: 21px;
}

.clarity-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
  text-align: center;
}

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

.problems {
  background: var(--paper);
}

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

.problem-grid article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-grid svg {
  width: 24px;
  height: 24px;
  color: var(--clay);
  flex: 0 0 auto;
}

.problem-grid span {
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
}

.service-card {
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card svg {
  width: 32px;
  height: 32px;
  color: var(--clay);
}

.service-card h3,
.process h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.service-card p,
.process p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.comparison-section {
  background: var(--mist);
}

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

.compare-card {
  padding: clamp(26px, 4vw, 40px);
  border-radius: 8px;
}

.compare-card h3 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.12;
}

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

.compare-card li {
  position: relative;
  padding-left: 26px;
  line-height: 1.55;
}

.compare-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  content: "";
  background: currentColor;
}

.muted-card {
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
}

.muted-card h3 {
  color: var(--ink);
}

.strong-card {
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest-2);
}

.strong-card h3 {
  color: var(--white);
}

.split-band {
  color: var(--white);
  background: var(--forest-2);
}

.split-band p {
  color: rgba(255, 255, 255, 0.74);
}

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

.audience-list div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.audience-list strong {
  font-size: 19px;
}

.audience-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

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

.process article {
  padding: 26px;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--mist);
}

.process span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
}

.market-cycle {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 33, 56, 0.97), rgba(8, 33, 56, 0.88)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.market-layout p {
  color: rgba(255, 255, 255, 0.76);
}

.cycle-points {
  display: grid;
  gap: 12px;
}

.cycle-points div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.cycle-points strong {
  color: #f2c56f;
  font-size: 13px;
  text-transform: uppercase;
}

.cycle-points span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.credibility {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(70px, 9vw, 110px);
}

.quote-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-items {
  display: grid;
  gap: 14px;
}

.trust-items div {
  padding: 20px;
  border-radius: 8px;
  background: var(--sage);
  font-weight: 700;
}

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

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

.story-grid article {
  min-height: 250px;
  padding: 28px;
  border-radius: 8px;
  background: var(--forest-2);
  color: var(--white);
}

.story-grid span {
  color: #f2c56f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-grid h3 {
  margin: 18px 0 12px;
  font-size: 23px;
}

.story-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.content-hub {
  background: var(--paper);
}

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

.hub-grid a {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hub-grid span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-grid strong {
  font-size: 20px;
  line-height: 1.3;
}

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

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

.blog-grid article {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.blog-grid span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.blog-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.blog-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 900;
}

.blog-grid svg {
  width: 17px;
  height: 17px;
}

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

.insight-cta {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-2);
  text-align: center;
}

.insight-cta h2 {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.04;
}

.insight-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.62;
}

.insight-cta .btn {
  margin-top: 26px;
}

.course-hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 118px clamp(20px, 5vw, 72px) 70px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 33, 56, 0.96), rgba(8, 33, 56, 0.74)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=2200&q=82");
  background-position: center;
  background-size: cover;
}

.editorial-hero {
  min-height: auto;
  padding-top: clamp(132px, 14vw, 178px);
  padding-bottom: clamp(64px, 9vw, 104px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(240, 244, 247, 0.92), rgba(251, 250, 247, 1)),
    var(--paper);
}

.editorial-hero .course-hero-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
}

.editorial-hero h1 {
  max-width: 900px;
  color: var(--forest-2);
}

.editorial-hero p:not(.eyebrow) {
  color: var(--muted);
}

.editorial-hero .hero-proof {
  max-width: 780px;
  margin-top: 20px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--forest);
  font-size: 17px;
  line-height: 1.58;
}

.services-hero .course-hero-inner,
.audience-hero .course-hero-inner,
.insights-hero .course-hero-inner {
  grid-template-columns: minmax(0, 920px);
}

.hero-portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.course-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.course-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.02;
}

.course-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.course-hero.editorial-hero p:not(.eyebrow) {
  color: var(--muted);
}

.course-hero.editorial-hero .hero-proof {
  color: var(--forest);
}

.editorial-hero .btn.secondary {
  color: var(--forest);
  background: var(--white);
  border-color: var(--line);
}

.editorial-hero .course-summary {
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 50, 78, 0.1);
}

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

.course-summary {
  padding: 28px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.course-summary dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.course-summary div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.course-summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.course-summary dt {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-summary dd {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.course-pillars,
.module-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.course-pillars article,
.module-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.course-pillars svg {
  width: 32px;
  height: 32px;
  color: var(--clay);
}

.course-pillars h3,
.module-grid h3 {
  margin: 18px 0 10px;
  font-size: 23px;
}

.course-pillars p,
.module-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.course-band {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--forest-2);
}

.course-band-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.course-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}

.course-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.68;
}

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

.learn-list div {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.learn-list strong {
  color: #f2c56f;
  font-size: 13px;
  text-transform: uppercase;
}

.learn-list span {
  color: rgba(255, 255, 255, 0.78);
}

.modules-section {
  background: var(--mist);
}

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

.module-grid span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
}

.course-offer {
  background: var(--white);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 8px;
  background: var(--mist);
}

.offer-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}

.offer-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.price-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-2);
}

.price-card span {
  color: #f2c56f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  font-size: 48px;
  line-height: 1;
}

.course-faq {
  background: var(--paper);
}

.muted {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(960px, 100%);
  margin: 0 auto;
}

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  padding-top: 12px;
}

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

.video-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.video-faq-card {
  align-self: start;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(12, 37, 56, 0.08);
}

.video-faq-card summary {
  display: grid;
  gap: 8px;
  padding: 22px;
  list-style: none;
}

.video-faq-card summary::-webkit-details-marker {
  display: none;
}

.video-faq-card summary span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-faq-card summary strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}

.video-faq-card summary::after {
  content: "Watch answer";
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(198, 151, 61, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.video-faq-card[open] summary {
  border-bottom: 1px solid var(--line);
}

.video-faq-card[open] summary::after {
  content: "Hide answer";
}

.video-faq-media {
  background: var(--ink);
}

.video-faq-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-faq-card > p {
  padding: 18px 22px 22px;
  color: var(--muted);
}

.video-faq-disclosure {
  width: min(960px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.login-section {
  background: var(--mist);
}

.login-card {
  padding: clamp(26px, 4vw, 40px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.login-card > svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.login-card h3 {
  margin: 20px 0 10px;
  font-size: 26px;
}

.login-card p {
  margin-bottom: 0;
}

.consult {
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 33, 56, 0.97), rgba(22, 58, 90, 0.92)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  border-radius: 0;
}

.consult p {
  color: rgba(255, 255, 255, 0.74);
}

.consult-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.consult-form input,
.consult-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
  font: inherit;
}

.consult-form input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.form-btn {
  width: 100%;
  margin-top: 6px;
  border: none;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.footer p {
  margin: 0;
}

.footer-main > p:first-child {
  color: var(--forest-2);
  font-weight: 850;
}

.footer-disclosure {
  max-width: 640px;
  margin-top: 10px !important;
  color: #73808b;
  font-size: 12px;
  line-height: 1.55;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  max-width: 720px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact a {
  color: var(--forest);
  font-weight: 800;
}

.footer-side {
  display: grid;
  justify-items: end;
  gap: 10px;
  max-width: 430px;
  text-align: right;
  color: #64717c;
  font-size: 13px;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.book-hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 118px clamp(20px, 5vw, 72px) 64px;
  color: var(--white);
  background: linear-gradient(115deg, #041829 0%, #0b263d 54%, #173d5c 100%);
  overflow: hidden;
}

.book-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.book-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.96;
}

.book-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
}

.book-hero-media {
  position: relative;
  justify-self: end;
  width: min(430px, 100%);
}

.book-hero-media::before {
  content: "";
  position: absolute;
  inset: 10% -10% -8% 8%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(36px);
}

.book-hero-media img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.book-proof-strip {
  margin-top: 22px;
}

.book-manifesto,
.book-history,
.book-bonus {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.book-manifesto {
  background: var(--white);
}

.book-manifesto .section-inner {
  max-width: 980px;
}

.book-manifesto h2,
.book-history h2,
.book-bonus h2,
.book-guarantee h2 {
  margin: 0;
  color: var(--forest-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.book-manifesto p:not(.eyebrow),
.book-bonus p {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.62;
}

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

.book-framework-grid,
.edition-grid,
.history-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.book-framework-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.book-framework-grid article,
.edition-card,
.history-points article {
  background: var(--white);
}

.book-framework-grid article {
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
}

.book-framework-grid span,
.edition-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.book-framework-grid h3,
.edition-card h3 {
  margin: 14px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.05;
}

.book-framework-grid p,
.edition-card p,
.history-points span {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.book-history {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 38, 61, 0.98), rgba(23, 61, 92, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(184, 138, 68, 0.2), transparent 38%);
}

.book-history h2 {
  color: var(--white);
}

.book-history-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.history-points {
  grid-template-columns: 1fr;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.history-points article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.history-points strong {
  display: block;
  margin-bottom: 8px;
  color: #f2c56f;
  font-size: 20px;
}

.history-points span {
  color: rgba(255, 255, 255, 0.78);
}

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

.edition-card {
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 360px;
  padding: clamp(24px, 3vw, 34px);
}

.edition-card strong {
  display: block;
  color: var(--forest-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 500;
  line-height: 0.95;
}

.edition-card.featured {
  color: var(--white);
  background: var(--forest-2);
}

.edition-card.featured h3,
.edition-card.featured strong {
  color: var(--white);
}

.edition-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.edition-card.featured .edition-label {
  color: #f2c56f;
}

.edition-card.pending .btn {
  color: var(--forest);
  background: var(--mist);
  border-color: var(--line);
}

.book-bonus {
  background: var(--mist);
}

.bonus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.bonus-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.bonus-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  color: var(--forest-2);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.bonus-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--gold);
}

.book-guarantee {
  background: var(--paper);
}

.guarantee-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.guarantee-card h2 {
  max-width: 780px;
  color: var(--white);
}

.book-disclaimer {
  max-width: 980px;
  margin: 22px auto 0;
  color: #73808b;
  font-size: 12px;
  line-height: 1.6;
}

.home-trimmed .team-section,
.home-trimmed .problems,
.home-trimmed #services,
.home-trimmed .comparison-section,
.home-trimmed #who,
.home-trimmed #process,
.home-trimmed .market-cycle,
.home-trimmed .stories,
.home-trimmed .content-hub,
.home-trimmed #blog,
.home-trimmed #faq,
.home-trimmed #login {
  display: none;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 150px clamp(22px, 6vw, 72px) 62px;
}

.article-kicker,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-kicker span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.article-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--forest-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
}

.article-hero > p {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.5;
}

.article-meta {
  margin-top: 30px;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 740px);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(22px, 6vw, 72px) 88px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: 8px;
  background: var(--forest-2);
  color: var(--white);
  box-shadow: var(--shadow);
}

.article-aside h2 {
  margin: 10px 0 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.05;
}

.article-aside p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.article-aside .btn {
  margin-top: 18px;
}

.article-body {
  padding: 40px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-body h2 {
  margin: 42px 0 12px;
  color: var(--forest-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.article-body h2:first-of-type {
  margin-top: 20px;
}

.article-callout {
  margin: 34px 0;
  padding: 26px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: var(--mist);
}

.article-callout h3 {
  margin: 0 0 8px;
  color: var(--forest-2);
  font-size: 22px;
}

.article-callout p {
  margin: 0;
}

.article-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

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

  .nav {
    display: none;
  }

  .brand img {
    width: 160px;
  }

  .two-col,
  .founder-layout,
  .team-layout,
  .market-layout,
  .pathfinder-shell,
  .hero-content,
  .clarity-layout,
  .login-layout,
  .split-content,
  .credibility,
  .consult,
  .team-philosophy {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .sovereign-grid,
  .planning-strip,
  .problem-grid,
  .story-grid,
  .hub-grid,
  .comparison-grid,
  .team-bios,
  .blog-grid,
  .course-hero-inner,
  .course-pillars,
  .course-band-layout,
  .module-grid,
  .offer-card,
  .process,
  .faq-grid,
  .video-faq-grid,
  .book-hero-inner,
  .book-history-inner,
  .book-framework-grid,
  .edition-grid,
  .bonus-layout,
  .guarantee-card {
    grid-template-columns: 1fr;
  }

  .review-card {
    width: min(520px, 100%);
  }

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

  .planning-process {
    grid-template-columns: 1fr;
  }

  .portrait-image {
    min-height: 360px;
  }

  .book-hero {
    min-height: auto;
    background: linear-gradient(145deg, #041829 0%, #0b263d 62%, #173d5c 100%);
  }

  .book-hero-media {
    justify-self: start;
    width: min(360px, 74vw);
  }

  .guarantee-card {
    justify-items: start;
  }
}

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

  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 44px;
    padding: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 90px 20px 28px;
    gap: 22px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.45;
  }

  .reassurance {
    margin-top: 12px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
    margin-top: 18px;
  }

  .hero-actions .secondary {
    display: none;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
  }

  .review-card {
    display: none;
  }

  .proof-strip div {
    padding: 12px 8px;
  }

  .proof-strip dt {
    font-size: 22px;
  }

  .proof-strip dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .section,
  .intro-band,
  .team-section,
  .pathfinder,
  .split-band,
  .founder-section,
  .market-cycle,
  .login-section,
  .credibility,
  .consult {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-stack {
    gap: 8px;
    margin-top: 8px;
  }

  .trust-stack span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .sovereign-grid article {
    min-height: auto;
  }

  .planning-process li {
    grid-template-columns: 1fr;
  }

  .planning-process li span {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .impact-counter {
    padding-block: 66px;
  }

  .impact-number-wrap {
    display: grid;
    justify-items: center;
  }

  .impact-counting {
    margin-bottom: 0;
  }

  .testimonial-ribbon {
    padding-block: 54px;
  }

  .testimonial-track {
    gap: 14px;
    animation-duration: 62s;
  }

  .testimonial-set {
    gap: 14px;
  }

  .testimonial-card {
    width: min(82vw, 340px);
    min-height: 390px;
    padding: 26px;
  }

  .quote-mark {
    font-size: 58px;
  }

  .testimonial-card p {
    font-size: 19px;
    line-height: 1.58;
  }

  .testimonial-card small {
    font-size: 12px;
  }

  .portrait-image {
    min-height: 300px;
  }

  .problem-grid article,
  .story-grid article,
  .hub-grid a {
    min-height: auto;
  }

  .clarity-stack article {
    grid-template-columns: 1fr;
  }

  .clarity-stack span {
    grid-row: auto;
  }

  .path-options {
    grid-template-columns: 1fr;
  }

  .path-result {
    min-height: auto;
  }

  .video-placeholder {
    min-height: 260px;
  }

  .homepage-vsl {
    aspect-ratio: 16 / 9;
  }

  .vsl-play-overlay {
    width: 66px;
    height: 66px;
  }

  .vsl-play-overlay svg {
    width: 28px;
    height: 28px;
  }

  .course-hero {
    min-height: auto;
    padding: 104px 18px 56px;
  }

  .course-hero h1 {
    font-size: 42px;
  }

  .course-hero p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.48;
  }

  .course-summary {
    display: none;
  }

  .course-actions {
    display: grid;
  }

  .book-hero {
    padding: 104px 18px 48px;
  }

  .book-hero-copy h1 {
    font-size: 43px;
    line-height: 1;
  }

  .book-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.48;
  }

  .book-hero-media {
    width: min(320px, 82vw);
  }

  .book-manifesto,
  .book-history,
  .book-bonus {
    padding-left: 18px;
    padding-right: 18px;
  }

  .book-manifesto h2,
  .book-history h2,
  .book-bonus h2,
  .book-guarantee h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .book-framework-grid article,
  .edition-card,
  .history-points article {
    min-height: auto;
    padding: 24px;
  }

  .edition-card strong {
    font-size: 44px;
  }

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

  .footer-side {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .article-body {
    padding: 28px;
  }
}
