:root {
  --cream: #fbf6ed;
  --cream-strong: #f2e5d2;
  --paper: #fffdf8;
  --charcoal: #1f2523;
  --muted: #5c6664;
  --teal: #308894;
  --teal-dark: #1f6770;
  --teal-soft: rgba(48, 136, 148, 0.13);
  --sage: #d7dfcf;
  --rust: #9f5d36;
  --gold: #d69c45;
  --line: rgba(31, 37, 35, 0.14);
  --shadow: 0 18px 45px rgba(31, 37, 35, 0.13);
  --radius: 8px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--charcoal);
  color: var(--paper);
  padding: 0.7rem 1rem;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(251, 246, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 116px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(48, 136, 148, 0.22);
  font: 800 0.98rem/1 Arial, Helvetica, sans-serif;
  padding: 0.95rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 16px 28px rgba(48, 136, 148, 0.28);
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.5rem;
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5.8vw, 5.15rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.28rem;
  line-height: 1.12;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--rust);
  font: 800 0.78rem/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(760px, 94vh);
  display: grid;
  align-items: start;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.6rem, 8vw, 8.5rem) clamp(1rem, 5vw, 3rem) 3.5rem;
}

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

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 246, 237, 0.96) 0%, rgba(251, 246, 237, 0.86) 36%, rgba(251, 246, 237, 0.2) 68%),
    linear-gradient(180deg, rgba(31, 37, 35, 0.14), rgba(31, 37, 35, 0.05));
}

.hero-grid {
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.hero-content {
  max-width: 630px;
}

.hero-subhead {
  max-width: 620px;
  color: var(--teal-dark);
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: 1rem;
}

.trust-chips,
.instructor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0;
}

.trust-chips span,
.instructor-points span {
  border: 1px solid rgba(48, 136, 148, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--teal-dark);
  font: 800 0.8rem/1 Arial, Helvetica, sans-serif;
  padding: 0.6rem 0.75rem;
}

.hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  justify-self: end;
  width: min(100%, 360px);
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 1.25rem;
}

.hero-card-logo {
  width: 150px;
  margin-bottom: 0.9rem;
}

.course-pill {
  display: inline-flex;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font: 800 0.78rem/1 Arial, Helvetica, sans-serif;
  padding: 0.55rem 0.7rem;
}

.hero-price {
  display: block;
  color: var(--charcoal);
  font: 900 clamp(3rem, 5vw, 4.2rem)/0.95 Georgia, "Times New Roman", serif;
}

.hero-regular {
  color: var(--muted);
  font-weight: 800;
}

.mini-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  margin: 1.2rem 0;
}

.mini-progress span {
  height: 0.5rem;
  border-radius: 999px;
  background: var(--teal);
}

.mini-list {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  list-style: none;
}

.mini-list li::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--teal);
  font-weight: 900;
}

.section {
  padding: clamp(3.2rem, 6vw, 5.25rem) clamp(1rem, 4vw, 2.5rem);
}

.compact-section {
  padding-top: clamp(2.8rem, 5vw, 4.4rem);
}

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

.section-heading {
  max-width: 680px;
  margin-bottom: 1.6rem;
}

.section-copy {
  max-width: 620px;
}

.section-copy p,
.module-list p,
.faq-list p,
.price-box p {
  color: var(--muted);
}

.section-copy strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.14rem;
}

.problem-layout,
.modules-layout,
.instructor-layout,
.offer-layout,
.for-layout,
.faq-layout {
  display: grid;
  gap: clamp(1.7rem, 4vw, 3.5rem);
}

.problem-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.85fr);
  align-items: center;
}

.photo-stack {
  position: relative;
}

.photo-stack img,
.instructor-image img,
.image-band img {
  width: 100%;
  object-fit: cover;
}

.photo-stack img,
.instructor-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-stack img {
  aspect-ratio: 16 / 10;
  max-height: 300px;
  object-position: center 38%;
}

.stat-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(280px, calc(100% - 2rem));
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.stat-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card strong {
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.12;
}

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

.learn-grid article {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(31, 37, 35, 0.06);
  padding: 1.2rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.learn-grid article:hover {
  border-color: rgba(48, 136, 148, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font: 900 0.78rem/1 Arial, Helvetica, sans-serif;
}

.learn-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-band {
  position: relative;
  min-height: clamp(300px, 38vh, 380px);
  background-image:
    linear-gradient(90deg, rgba(31, 37, 35, 0.68), rgba(31, 37, 35, 0.16)),
    url("assets/jann-parker-wide.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
  overflow: hidden;
}

.image-band img {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.image-band-content {
  display: grid;
  align-content: center;
  width: min(var(--container), 100%);
  min-height: clamp(300px, 38vh, 380px);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
  color: var(--paper);
}

.image-band-content span {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-band-content strong {
  max-width: 540px;
  font: 700 clamp(2rem, 3vw, 3rem)/1.05 Georgia, "Times New Roman", serif;
}

.modules-section,
.for-section {
  background: var(--paper);
}

.modules-layout {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 6rem;
}

.module-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}

.module-toggle {
  display: grid;
  width: 100%;
  grid-template-columns: 6.5rem 1fr;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  text-align: left;
}

.module-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.7rem;
  text-transform: uppercase;
}

.module-toggle strong {
  font: 700 1.35rem/1.05 Georgia, "Times New Roman", serif;
}

.module-list p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1.2rem 0 8.7rem;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.module-list li.is-open p,
.module-list li:hover p {
  max-height: 120px;
  padding-bottom: 1.1rem;
}

.instructor-layout {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  align-items: center;
}

.instructor-image img {
  aspect-ratio: 16 / 10;
  max-height: 300px;
  object-position: center 38%;
}

.offer-section {
  background: linear-gradient(180deg, var(--cream-strong), var(--cream));
}

.offer-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  align-items: center;
}

.offer-stack {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.workbook-mockup {
  display: grid;
  min-height: 260px;
  align-content: end;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(48, 136, 148, 0.88), rgba(31, 103, 112, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 20px);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.workbook-mockup img {
  width: 150px;
  margin-bottom: 1rem;
}

.workbook-mockup span {
  color: var(--paper);
  font: 800 1.25rem/1.1 Georgia, "Times New Roman", serif;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px var(--sage);
}

.price-box {
  border: 1px solid rgba(48, 136, 148, 0.22);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.regular-price {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-weight: 800;
}

.price-box strong {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--teal-dark);
  font: 800 clamp(2.5rem, 4vw, 3.7rem)/1 Georgia, "Times New Roman", serif;
}

.price-box .button {
  width: 100%;
}

.price-box p {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.for-layout,
.faq-layout {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
}

.large-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.large-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 1rem 1rem 1rem 2.7rem;
}

.large-list li::before {
  left: 1rem;
  top: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 0.15rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
  padding: 1rem 0;
}

summary:focus-visible {
  outline: 3px solid rgba(48, 136, 148, 0.35);
  outline-offset: 4px;
}

details p {
  margin-bottom: 1rem;
}

.final-cta {
  padding: clamp(3.4rem, 6vw, 5.4rem) clamp(1rem, 4vw, 2.5rem);
  background: var(--teal-dark);
  color: var(--paper);
  text-align: center;
}

.final-cta-inner {
  max-width: 760px;
}

.final-cta p {
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.08rem;
}

.final-cta .button {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: none;
}

.final-cta .button:hover,
.final-cta .button:focus-visible {
  background: #e3ad5f;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 4vw, 2.5rem) 5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer img {
  width: 105px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 14;
  display: none;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 18px 34px rgba(48, 136, 148, 0.34);
  font: 900 1rem/1 Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.exit-popup[hidden] {
  display: none;
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.exit-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 37, 35, 0.58);
}

.exit-popup-card {
  position: relative;
  width: min(440px, 100%);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  padding: 2rem;
}

.exit-popup-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.exit-popup-card p:not(.eyebrow) {
  color: var(--muted);
}

.popup-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-grid,
  .problem-layout,
  .modules-layout,
  .instructor-layout,
  .offer-layout,
  .offer-stack,
  .for-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 5.4rem;
    padding-bottom: 2rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 246, 237, 0.2) 0%, rgba(251, 246, 237, 0.94) 43%, var(--cream) 100%),
      linear-gradient(90deg, rgba(251, 246, 237, 0.82), rgba(251, 246, 237, 0.34));
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-card {
    justify-self: start;
  }

  .learn-grid,
  .large-list {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .sticky-cta {
    display: flex;
  }

  .image-band {
    min-height: 320px;
    background-attachment: scroll;
    background-position: center center;
  }

  .image-band-content {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.5rem 1rem;
  }

  .site-header .button {
    display: none;
  }

  .brand img {
    width: 94px;
    height: 48px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .trust-chips span,
  .instructor-points span {
    font-size: 0.75rem;
  }

  .module-toggle {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .module-toggle span {
    justify-self: start;
  }

  .module-list p {
    padding-left: 1.2rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
