:root {
  /* French-inspired brand system: deep navy, restrained red, warm ivory */
  --navy-950: #0b1c31;
  --navy-900: #102844;
  --navy-800: #18395f;
  --navy-700: #23507f;
  --blue-100: #eaf2f8;
  --blue-50: #f4f8fb;
  --red-600: #cf4148;
  --red-500: #df5055;
  --red-100: #fae9e9;
  --ivory: #fbf8f2;
  --paper: #fffefa;
  --white: #ffffff;
  --ink: #152033;
  --muted: #667085;
  --line: #e4e7ec;
  --green: #1f7a55;
  --gold: #b98732;
  --shadow-sm: 0 10px 30px rgba(16, 40, 68, 0.08);
  --shadow-md: 0 22px 65px rgba(16, 40, 68, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy-950);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 4.6vw, 4.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.2vw, 3.05rem);
}

h3 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.3;
}

.lead {
  max-width: 680px;
  color: #4f6176;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.body-copy {
  color: var(--muted);
  font-size: 1.03rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red-500);
  box-shadow: 0 12px 28px rgba(207, 65, 72, 0.25);
}

.button-primary:hover {
  background: var(--red-600);
}

.button-navy {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 12px 28px rgba(16, 40, 68, 0.22);
}

.button-outline {
  color: var(--navy-900);
  border-color: rgba(16, 40, 68, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-wide {
  width: 100%;
}

.arrow {
  font-size: 1.05em;
  transition: transform 0.2s ease;
}

.button:hover .arrow {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 40, 68, 0.08);
  background: rgba(255, 254, 250, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-title {
  font-size: 1.02rem;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links > a:not(.button) {
  color: #4c5c70;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 700;
}

.nav-links > a:not(.button):hover {
  color: var(--navy-900);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 54px;
  background:
    radial-gradient(
      circle at 91% 18%,
      rgba(223, 80, 85, 0.13),
      transparent 25%
    ),
    radial-gradient(circle at 8% 0%, rgba(35, 80, 127, 0.13), transparent 27%),
    linear-gradient(180deg, var(--paper), var(--ivory));
}

.hero::before {
  content: "";
  position: absolute;
  right: -170px;
  top: 40px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(16, 40, 68, 0.1);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.hero h1 span {
  color: var(--red-600);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  color: #536478;
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-800);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

/* Social proof */
.social-proof {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.social-row {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: stretch;
}

.social-intro,
.social-link {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
}

.social-row > *:last-child {
  border-right: 0;
}

.social-intro strong {
  color: var(--navy-950);
  font-size: 1rem;
}

.social-intro span,
.social-link span {
  color: var(--muted);
  font-size: 0.84rem;
}

.social-link {
  text-decoration: none;
  transition: background 0.2s ease;
}

.social-link:hover {
  background: var(--blue-50);
}

.social-link strong {
  color: var(--navy-900);
  font-size: 1.17rem;
}

/* Problem and method */
.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 115px;
}

.pain-list {
  display: grid;
  gap: 13px;
}

.pain-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(16, 40, 68, 0.04);
}

.pain-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--red-600);
  background: var(--red-100);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.method {
  color: var(--white);
  background: var(--navy-950);
}

.method h2,
.method h3 {
  color: var(--white);
}

.method .body-copy {
  color: rgba(255, 255, 255, 0.68);
}

.method .eyebrow {
  color: #f08a8f;
}

.method-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 40px;
}

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

.method-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.method-step {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--blue-100);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Inside */
.inside {
  background: var(--ivory);
}

.inside-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 66px;
  align-items: center;
}

.dashboard {
  padding: 12px;
  border-radius: 28px;
  background: var(--navy-950);
  box-shadow: var(--shadow-md);
  transform: rotate(-0.7deg);
}

.dash-window {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
}

.dash-top {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.circle-mark,
.rail-dot,
.rail-plus {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--white);
  background: #4154d9;
  font-weight: 900;
}

.circle-mark {
  width: 30px;
  height: 30px;
}

.dash-brand strong {
  color: var(--navy-950);
  font-size: 0.76rem;
  line-height: 1.1;
  white-space: nowrap;
}

.dash-search {
  min-width: 118px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #69788a;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.dash-icons {
  display: flex;
  gap: 7px;
}

.dash-icons span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd5dc;
}

.dash-body {
  display: grid;
  grid-template-columns: 44px 176px minmax(0, 1fr);
  min-height: 640px;
}

.dash-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px 7px;
  border-right: 1px solid var(--line);
  background: #f7f8fb;
}

.rail-dot,
.rail-plus {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  font-size: 0.68rem;
}

.rail-dot:not(.active) {
  color: #6f7885;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.rail-plus {
  margin-top: 10px;
  color: #566271;
  background: transparent;
}

.dash-side {
  padding: 16px 9px;
  overflow: visible;
  border-right: 1px solid var(--line);
  background: #fbfcfd;
}

.side-group {
  margin-bottom: 13px;
}

.side-group strong {
  display: block;
  margin: 0 0 6px 6px;
  color: #566271;
  font-size: 0.68rem;
  font-weight: 900;
}

.side-link {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin-bottom: 3px;
  padding: 6px 8px;
  border-radius: 9px;
  color: #5f6875;
  font-size: 0.64rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-link i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.side-link i.green { background: #77e84d; }
.side-link i.blue { background: #2d50ef; }
.side-link i.red { background: #e0312b; border-radius: 2px; }

.side-group.muted-on-mobile {
  margin-bottom: 0;
}

.side-link.active {
  color: var(--white);
  background: #d42b25;
}

.dash-main {
  position: relative;
  padding: 0 16px 22px;
  overflow: hidden;
}

.dash-course-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: -16px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}

.dash-course-header div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-icon {
  font-size: 0.88rem;
}

.dash-course-header strong {
  color: var(--navy-950);
  font-size: 1.02rem;
}

.dash-menu {
  color: #687384;
  letter-spacing: 0.06em;
}

.dash-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 0 18px;
}

.dash-welcome button {
  min-width: 72px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: #d42b25;
  font-weight: 900;
}

.dash-title {
  color: var(--navy-950);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 4.4vw, 2.35rem);
  font-weight: 700;
}

.dash-sub {
  color: var(--muted);
  font-size: 0.74rem;
  max-width: 340px;
}

.dash-progress-card {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.dash-progress-card > div:first-child,
.dash-content-head,
.section-row,
.lesson-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-progress-card span,
.dash-content-head span,
.section-row span,
.lesson-row time {
  color: #536174;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.dash-progress-card strong {
  color: var(--navy-950);
}

.progress {
  height: 7px;
  margin: 14px 0 0;
  overflow: hidden;
  border-radius: 99px;
  background: #e2e6eb;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--red-500);
}

.dash-content-head {
  align-items: end;
  margin: 22px 0 10px;
}

.dash-content-head > span {
  display: none;
}

.dash-content-head strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.3rem;
}

.lesson-preview {
  margin-bottom: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 0;
  background: var(--white);
}

.lesson-preview:first-of-type {
  border-radius: 12px 12px 0 0;
}

.lesson-preview:nth-last-of-type(1) {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 12px 12px;
}

.lesson-preview strong {
  display: block;
  margin: 0;
  color: var(--navy-950);
  font-size: 0.82rem;
}

.section-row {
  background: #fafbfc;
}

.section-row strong::before {
  content: "⌄";
  margin-right: 8px;
  color: #4a5360;
}

.lesson-row {
  justify-content: start;
}

.lesson-row strong {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.lesson-status {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid #606b78;
  border-radius: 50%;
}

.dash-help {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(16, 40, 68, 0.18);
  font-size: 0.75rem;
  font-weight: 900;
}

.quick-row {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 13px;
}

.quick-row div {
  padding: 10px 7px;
  border-radius: 10px;
  color: var(--navy-800);
  background: var(--blue-100);
  text-align: center;
  font-size: 0.64rem;
  font-weight: 800;
}

.inside-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.inside-item {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 14px;
}

.check {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-800);
  font-weight: 800;
}

.inside-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Free lesson */
.sample-wrap {
  padding: 0 0 92px;
  background: var(--ivory);
}

.sample-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 38px 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(223, 80, 85, 0.38),
      transparent 30%
    ),
    var(--navy-900);
  box-shadow: var(--shadow-md);
}

.sample-box h2 {
  max-width: 630px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
}

.sample-box p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* Course outline */
.outline-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.course-levels {
  border-top: 1px solid var(--line);
}

.course-level {
  border-bottom: 1px solid var(--line);
}

.course-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 6px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.level-pill {
  width: 58px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy-800);
  font-weight: 800;
}

.course-trigger strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.course-trigger small {
  color: var(--muted);
}

.plus {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--blue-100);
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.course-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.course-content > div {
  overflow: hidden;
}

.course-level.open .course-content {
  grid-template-rows: 1fr;
}
.course-level.open .plus {
  transform: rotate(45deg);
}

.lesson-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 6px 24px 94px;
}

.lesson-card {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.lesson-card span {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--red-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.94rem;
}

.lesson-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

/* Comparison */
.comparison {
  background: var(--blue-50);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 0.9rem;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}
.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table th {
  color: var(--navy-950);
  background: #f7f9fb;
  font-weight: 800;
}

.comparison-table th.club-col {
  color: var(--white);
  background: var(--navy-900);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-weight: 700;
}

.comparison-table td.club-col {
  color: var(--navy-950);
  background: #f1f6fa;
  font-weight: 700;
}

.yes {
  color: var(--green);
  font-weight: 800;
}
.partial {
  color: var(--gold);
  font-weight: 800;
}
.no {
  color: #a34449;
  font-weight: 800;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 275px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(16, 40, 68, 0.045);
}

.stars {
  margin-bottom: 17px;
  color: #e5a32d;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 0 0 24px;
  color: #37475a;
  font-size: 1rem;
  line-height: 1.65;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-initials {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--paper) 0%, var(--blue-100) 100%);
  border: 1px solid rgba(16, 40, 68, 0.12);
  box-shadow: 0 8px 18px rgba(16, 40, 68, 0.08);
}

.review-person strong {
  display: block;
  color: var(--navy-950);
}

.review-person span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Teacher */
.teacher {
  background: linear-gradient(
    90deg,
    var(--blue-100) 0 43%,
    var(--paper) 43% 100%
  );
}

.teacher-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.teacher-photo {
  width: min(100%, 420px);
  height: clamp(360px, 42vw, 500px);
  min-height: 0;
  display: block;
  justify-self: center;
  object-fit: cover;
  object-position: center;
  border-radius: 240px 240px 26px 26px;
  box-shadow: var(--shadow-md);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
}

.credential {
  padding: 9px 12px;
  border: 1px solid rgba(16, 40, 68, 0.13);
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.teacher-quote {
  margin-top: 25px;
  padding: 20px 22px;
  border-left: 4px solid var(--red-500);
  border-radius: 0 14px 14px 0;
  color: #31445a;
  background: var(--ivory);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.5;
}

/* Pricing */
.pricing {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(223, 80, 85, 0.2), transparent 24%),
    var(--navy-950);
}

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

.pricing .eyebrow {
  color: #f08a8f;
}

.pricing .lead {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.7);
}

.price-grid {
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 38px auto 0;
}

.price-grid.single-price {
  max-width: 560px;
  grid-template-columns: 1fr;
}

.price-card {
  position: relative;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.06);
}

.price-card.featured {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
}

.single-price .price-card {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
}

.single-price .plan-label {
  color: var(--red-600);
}

.single-price .price-desc,
.single-price .payment-redirect-note,
.single-price .price-foot {
  color: var(--muted);
}

.single-price .price-list li::before {
  color: var(--green);
}

.plan-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured .plan-label {
  color: var(--red-600);
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 16px 0 8px;
}

.price strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.65rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.featured .price span {
  color: var(--muted);
}

.price-desc {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.featured .price-desc {
  color: var(--muted);
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 27px;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  font-size: 0.92rem;
}

.price-list li::before {
  content: "✓";
  color: #8fd0b7;
  font-weight: 800;
}

.featured .price-list li::before {
  color: var(--green);
}

.price-foot {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
  font-size: 0.8rem;
}

.featured .price-foot {
  color: var(--muted);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  color: var(--navy-950);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 700px;
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
  padding: 0 0 90px;
}

.final-box {
  padding: 50px;
  border: 1px solid #efd3d4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 93% 15%,
      rgba(223, 80, 85, 0.16),
      transparent 27%
    ),
    linear-gradient(135deg, #fff7f7, var(--paper));
  text-align: center;
}

.final-box h2 {
  max-width: 800px;
  margin-inline: auto;
}

.final-box p {
  max-width: 690px;
  margin: 0 auto 25px;
  color: var(--muted);
  font-size: 1.04rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.ebook-cta {
  padding: 0 0 48px;
  background: var(--paper);
}

.ebook-cta-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 18%, rgba(35, 80, 127, 0.08), transparent 25%),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.ebook-cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  perspective: 1400px;
}

.ebook-book-scene {
  position: relative;
  width: min(300px, 72vw);
  transform-style: preserve-3d;
}

.ebook-book-scene::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -28px;
  left: 12%;
  z-index: 0;
  height: 34px;
  background: radial-gradient(
    ellipse at center,
    rgba(15, 23, 42, 0.26) 0%,
    rgba(15, 23, 42, 0.16) 38%,
    rgba(15, 23, 42, 0.05) 70%,
    rgba(15, 23, 42, 0) 100%
  );
  filter: blur(6px);
  transform: rotate(-2deg);
  pointer-events: none;
}

.ebook-book {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: rotateY(-18deg) rotateX(2deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 28px 38px rgba(15, 23, 42, 0.24));
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.ebook-book:hover {
  transform: rotateY(-14deg) rotateX(1deg) rotateZ(-0.5deg) translateY(-4px);
  filter: drop-shadow(0 34px 46px rgba(15, 23, 42, 0.28));
}

.ebook-book-cover {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px 3px 3px 8px;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.16),
    inset 8px 0 12px rgba(255, 255, 255, 0.08),
    inset -10px 0 16px rgba(0, 0, 0, 0.16);
  transform: translateZ(12px);
}

.ebook-book-pages {
  position: absolute;
  top: 3.2%;
  right: -30px;
  z-index: 2;
  width: 36px;
  height: 93.6%;
  overflow: hidden;
  border-radius: 0 7px 7px 0;
  background:
    linear-gradient(
      90deg,
      #d8c8aa 0%,
      #f2ead7 18%,
      #fff7e6 44%,
      #e5d6b9 74%,
      #cdbb98 100%
    );
  box-shadow:
    inset 7px 0 10px rgba(79, 54, 28, 0.18),
    inset -4px 0 7px rgba(79, 54, 28, 0.12),
    5px 2px 12px rgba(15, 23, 42, 0.16);
  transform: translateZ(-4px) rotateY(74deg) translateX(-4px);
  transform-origin: left center;
}

.ebook-book-pages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(98, 73, 38, 0.18) 0,
    rgba(98, 73, 38, 0.18) 1px,
    transparent 1px,
    transparent 6px
  );
  opacity: 0.45;
}

.ebook-book-pages::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: linear-gradient(
    90deg,
    rgba(37, 26, 14, 0.28),
    rgba(37, 26, 14, 0)
  );
}

.ebook-book-back {
  position: absolute;
  top: 2.2%;
  right: -42px;
  z-index: 1;
  width: 42px;
  height: 95.6%;
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(
      90deg,
      #07111f 0%,
      #0d2139 42%,
      #142f50 100%
    );
  box-shadow:
    inset 5px 0 8px rgba(255, 255, 255, 0.06),
    8px 3px 16px rgba(15, 23, 42, 0.18);
  transform: translateZ(-18px) rotateY(72deg) translateX(-8px);
  transform-origin: left center;
}

.ebook-book::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: 8px 3px 3px 8px;
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.05) 22%,
      rgba(255, 255, 255, 0) 45%
    );
  mix-blend-mode: screen;
  transform: translateZ(14px);
  pointer-events: none;
}

.ebook-book::after {
  content: "";
  position: absolute;
  top: 1.5%;
  bottom: 1.5%;
  left: 3.5%;
  z-index: 5;
  width: 12px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.26),
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0)
  );
  transform: translateZ(16px);
  pointer-events: none;
}

.ebook-cta-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ebook-cta-copy h2 {
  max-width: 680px;
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.ebook-cta-copy .body-copy {
  max-width: 720px;
  margin-bottom: 0;
}

.ebook-cta-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 780px) {
  .ebook-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ebook-cta-visual {
    min-height: 300px;
  }

  .ebook-book-scene {
    width: min(235px, 68vw);
  }

  .ebook-book {
    transform: rotateY(-14deg) rotateX(1deg) rotateZ(-0.5deg);
  }

  .ebook-book:hover {
    transform: rotateY(-14deg) rotateX(1deg) rotateZ(-0.5deg);
  }

  .ebook-book-pages {
    right: -24px;
    width: 30px;
  }

  .ebook-book-back {
    right: -34px;
    width: 34px;
  }

  .ebook-cta-content {
    align-items: center;
  }

  .ebook-cta-action {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ebook-book {
    transition: none;
  }

  .ebook-book:hover {
    transform: rotateY(-18deg) rotateX(2deg) rotateZ(-1deg);
  }
}

.contact-strip {
  padding: 0 0 46px;
  background: var(--paper);
}

.contact-box {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-box p {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-box a {
  color: var(--red-600);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Legal pages */
.legal-nav {
  min-height: 72px;
}

.legal-back-link {
  color: var(--navy-900);
  text-decoration-color: rgba(16, 40, 68, 0.26);
  text-underline-offset: 4px;
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-page {
  padding: 76px 0 88px;
  background: linear-gradient(180deg, var(--paper), var(--ivory));
}

.legal-document {
  max-width: 820px;
  margin-inline: auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-document h1 {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 4vw, 3.15rem);
}

.legal-document h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.15;
}

.legal-document h3 {
  margin: 30px 0 10px;
  font-size: 1.08rem;
}

.legal-document p,
.legal-document li {
  color: #435166;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-document p {
  margin-bottom: 18px;
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 22px 1.35rem;
  padding: 0;
}

.legal-document li {
  padding-left: 0.2rem;
  margin-bottom: 8px;
}

.legal-document blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--red-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--red-100);
}

.legal-document blockquote p {
  margin: 0;
}

.legal-document a,
.footer-links a[aria-current="page"] {
  color: var(--red-600);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* About page */
.page-about {
  background: var(--paper);
}

.page-about .nav-links a[aria-current="page"],
.page-about .mobile-menu a[aria-current="page"] {
  color: var(--red-600);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 88% 16%, rgba(223, 80, 85, 0.14), transparent 24%),
    radial-gradient(circle at 7% 0%, rgba(35, 80, 127, 0.12), transparent 26%),
    linear-gradient(180deg, var(--paper), var(--ivory));
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.74fr);
  gap: 64px;
  align-items: center;
}

.about-hero-copy {
  max-width: 720px;
}

.about-hero-copy .button {
  margin-top: 10px;
}

.about-image {
  margin: 0;
  border: 1px solid rgba(16, 40, 68, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-image {
  max-width: 430px;
  justify-self: end;
}

.about-section {
  padding: 86px 0;
}

.about-section:nth-of-type(odd) {
  background: var(--white);
}

.about-narrow {
  max-width: 820px;
  margin-inline: auto;
}

.about-narrow p,
.about-copy p,
.about-final-card p,
.principle-card p {
  color: #435166;
}

.about-narrow p,
.about-copy p,
.principle-card p {
  font-size: 1.03rem;
  line-height: 1.76;
}

.about-pullquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--red-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy-950) !important;
  background: var(--red-100);
  font-weight: 800;
}

.about-stage {
  margin: 0 0 10px;
  color: var(--red-600) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.about-copy ul,
.about-narrow ul {
  margin: 18px 0 24px 1.15rem;
  padding: 0;
  color: #435166;
  line-height: 1.72;
}

.about-copy li,
.about-narrow li {
  margin-bottom: 8px;
  padding-left: 0.12rem;
}

.principle-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-growth {
  background:
    linear-gradient(180deg, rgba(250, 233, 233, 0.55), rgba(255, 255, 255, 0.88)),
    var(--white);
}

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

.about-stat {
  display: grid;
  gap: 4px;
  padding: 20px 16px;
  border: 1px solid rgba(16, 40, 68, 0.1);
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  background: var(--white);
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.about-stat strong {
  color: var(--red-600);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
}

.about-stat span {
  color: #536478;
  font-weight: 800;
}

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

.principle-card h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 1.2rem;
}

.about-principles {
  background: var(--blue-50);
}

.principle-card {
  padding: 24px;
}

.about-final-cta {
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 80, 85, 0.12), transparent 26%),
    var(--ivory);
}

.about-final-card {
  max-width: 820px;
  padding: 44px;
  border: 1px solid rgba(16, 40, 68, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px 0;
}

.about-divider {
  width: min(100%, 360px);
  margin: 34px auto;
  border: 0;
  border-top: 1px solid var(--line);
}

footer {
  padding: 28px 0 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.85rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

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

/* Sticky mobile CTA */
.mobile-bar {
  position: fixed;
  z-index: 120;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 15px;
  border: 1px solid rgba(16, 40, 68, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 50px rgba(16, 40, 68, 0.2);
  backdrop-filter: blur(15px);
}

.mobile-bar strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.9rem;
}

.mobile-bar small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

/* Tablet */
@media (max-width: 980px) {
  .nav-links > a:not(.button) {
    display: none;
  }

  .hero-grid,
  .inside-grid,
  .teacher-grid,
  .faq-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero h1,
  .hero .lead {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }
  .hero-visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .about-hero-grid,
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    max-width: 820px;
  }

  .about-hero-image {
    max-width: 420px;
    justify-self: center;
  }

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

  .dashboard {
    transform: none;
  }

  .dash-body {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .dash-side {
    display: none;
  }

  .dash-main {
    padding-inline: 14px;
  }

  .dash-course-header {
    margin-inline: -14px;
  }

  .dash-search {
    display: none;
  }

  .dash-welcome {
    padding-top: 24px;
  }

  .dash-help {
    display: none;
  }

  .quick-row {
    display: grid;
  }

  .social-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .social-intro {
    grid-column: 1 / -1;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .sticky-copy {
    position: static;
  }

  .method-head,
  .outline-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .teacher-photo {
    width: min(100%, 420px);
    height: clamp(340px, 62vw, 480px);
    margin-inline: auto;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 70px 0;
  }
  .section-header {
    margin-bottom: 31px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.78rem, 8vw, 2.35rem);
    line-height: 1.06;
  }

  .nav {
    min-height: 66px;
  }
  .brand span:last-child {
    font-size: 0.91rem;
  }
  .nav .button {
    display: none;
  }

  .hero {
    padding: 38px 0 36px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .about-hero,
  .about-section,
  .about-final-cta {
    padding: 58px 0;
  }

  .about-hero-grid,
  .about-split {
    gap: 34px;
  }

  .principle-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .about-final-card {
    padding: 24px 20px;
  }

  .about-narrow p,
  .about-copy p,
  .principle-card p {
    font-size: 0.98rem;
  }

  .dashboard {
    padding: 8px;
    border-radius: 22px;
  }

  .dash-window {
    border-radius: 15px;
  }

  .dash-top {
    min-height: 50px;
  }

  .dash-icons {
    display: none;
  }

  .dash-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dash-rail {
    display: none;
  }

  .dash-main {
    padding: 0 13px 16px;
  }

  .dash-course-header {
    margin-inline: -13px;
    padding: 14px 13px;
  }

  .dash-course-header strong {
    font-size: 0.9rem;
  }

  .dash-welcome {
    display: block;
  }

  .dash-welcome button {
    margin-top: 12px;
  }

  .dash-title {
    font-size: clamp(1.52rem, 9vw, 2rem);
  }

  .dash-progress-card {
    padding: 14px;
  }

  .dash-content-head {
    display: block;
  }

  .dash-content-head > span {
    display: none;
  }

  .section-row,
  .lesson-row {
    padding-inline: 12px;
  }

  .section-row span,
  .lesson-row time {
    font-size: 0.69rem;
  }

  .social-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-intro,
  .social-link {
    min-height: 72px;
    padding: 13px 14px;
  }

  .social-link:nth-child(3) {
    border-right: 0;
  }
  .social-link:nth-child(2),
  .social-link:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .method-grid,
  .reviews-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: auto;
  }
  .method-step {
    margin-bottom: 23px;
  }

  .dashboard {
    transform: none;
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
  .dash-side {
    display: none;
  }

  .sample-wrap {
    padding-bottom: 70px;
  }
  .sample-box {
    grid-template-columns: 1fr;
    padding: 31px 25px;
  }

  .sample-box .button {
    width: 100%;
  }
  .sample-box::after {
    right: -20px;
    top: -30px;
    font-size: 6rem;
  }

  .course-trigger {
    grid-template-columns: 53px 1fr auto;
    gap: 12px;
    padding: 18px 0;
  }

  .level-pill {
    width: 48px;
    height: 39px;
    font-size: 0.84rem;
  }

  .lesson-list {
    grid-template-columns: 1fr;
    padding: 0 0 20px;
  }

  .teacher-photo {
    width: min(100%, 360px);
    height: clamp(330px, 104vw, 430px);
  }

  .price-card {
    padding: 26px 22px;
  }
  .price {
    margin-top: 14px;
  }
  .price strong {
    font-size: 3.25rem;
  }

  .value-side,
  .final-box {
    padding: 38px 21px;
  }
  .final-actions .button {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .legal-nav {
    gap: 14px;
  }

  .legal-back-link {
    font-size: 0.86rem;
  }

  .legal-page {
    padding: 48px 0 64px;
  }

  .legal-document {
    padding: 30px 22px;
    border-radius: var(--radius-md);
  }

  .legal-document p,
  .legal-document li {
    font-size: 0.96rem;
  }

  .mobile-bar {
    display: flex;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 10vw, 2.25rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8.4vw, 1.95rem);
  }

  .lead {
    font-size: 0.96rem;
  }

  .legal-nav {
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }

  .legal-document {
    padding: 24px 18px;
  }

  .hero {
    padding: 28px 0 30px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-actions {
    margin: 18px 0 14px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-proof {
    gap: 8px 12px;
    font-size: 0.82rem;
  }

  .hero-proof span::before {
    width: 18px;
    height: 18px;
  }

  .hero-visual {
    min-height: 285px;
  }

  .youtube-label {
    bottom: 24px;
    font-size: 1.05rem;
  }

  .youtube-play {
    width: 62px;
    height: 62px;
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Hero video */
.video-shell {
  position: absolute;
  inset: 14px 0 14px 18px;
  display: flex;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(16, 40, 68, 0.1);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.video-shell-shorts {
  position: relative;
  inset: auto;
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 14px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 18%, rgba(223, 80, 85, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(234, 242, 248, 0.72));
}

/* Scan-friendly course numbers */
.content-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.content-stat {
  min-height: 128px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.76);
}

.content-stat strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-950);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.72rem;
  line-height: 1;
}

.content-stat span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.availability-note {
  margin-top: 15px;
  padding: 15px 17px;
  border: 1px solid rgba(35, 80, 127, 0.15);
  border-radius: 13px;
  color: #4d6178;
  background: rgba(234, 242, 248, 0.72);
  font-size: 0.84rem;
}

.pace-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.pace-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.pace-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-950);
}

.pace-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Guarantee */
.guarantee-box {
  max-width: 940px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 21px auto 0;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
}

.guarantee-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 800;
}

.guarantee-box .guarantee-icon {
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1;
}

.guarantee-box strong {
  display: block;
  color: var(--white);
  font-size: 0.94rem;
}

.guarantee-box div span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.81rem;
}

@media (max-width: 720px) {
  .video-shell {
    inset: 0;
  }
  .content-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-stat {
    min-height: 112px;
    padding: 17px;
  }
  .content-stat strong {
    font-size: 1.45rem;
  }
  .pace-choice {
    grid-template-columns: 1fr;
  }
  .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .guarantee-icon {
    margin-inline: auto;
  }
}

/* Responsive hamburger navigation */
.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(16, 40, 68, 0.14);
  border-radius: 13px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.8);
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Secure-checkout reassurance */
.payment-redirect-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.35;
}

.featured .payment-redirect-note {
  color: var(--muted);
}

.payment-redirect-note::before {
  content: "🔒";
  font-size: 0.78rem;
}

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

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    width: min(calc(100% - 28px), var(--max));
    max-height: 0;
    display: grid;
    gap: 4px;
    margin-inline: auto;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.28s ease,
      opacity 0.2s ease,
      padding 0.28s ease;
  }

  .mobile-menu.open {
    max-height: 520px;
    padding: 9px 0 16px;
    opacity: 1;
    border-top: 1px solid var(--line);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 47px;
    padding: 0 12px;
    border-radius: 11px;
    color: var(--navy-950);
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-menu a:not(.button):hover {
    background: var(--blue-50);
  }

  .mobile-menu .ebook-link {
    color: var(--red-600);
    background: var(--red-100);
  }

  .mobile-menu .button {
    margin-top: 6px;
    color: var(--white);
  }
}

/* Production asset merge */
.brand-logo {
  width: auto;
  height: 42px;
  max-width: 190px;
  object-fit: contain;
}

.hero-visual-shorts {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy-950);
}

.hero-video-frame-shorts {
  width: min(100%, 330px);
  height: auto;
  aspect-ratio: 9 / 16;
  flex: 0 1 330px;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(16, 40, 68, 0.22);
}

.hero-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.youtube-facade {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: inherit;
  color: var(--white);
  background: var(--navy-950);
  cursor: pointer;
  text-decoration: none;
}

.youtube-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(42px, 12%, 92px);
  object-fit: contain;
  opacity: 1;
}

.hero-video-frame .youtube-facade img {
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.youtube-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(145deg, rgba(16, 40, 68, 0.05), rgba(16, 40, 68, 0.35));
}

.youtube-play,
.youtube-label {
  z-index: 1;
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  font-size: 1.55rem;
  padding-left: 5px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.youtube-label {
  position: absolute;
  left: 50%;
  bottom: 42px;
  align-self: end;
  width: min(100%, 360px);
  max-width: 320px;
  padding: 0 24px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  transform: translateX(-50%);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.48);
}

.youtube-facade:hover .youtube-play,
.youtube-facade:focus-visible .youtube-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.youtube-facade:focus-visible {
  outline: 3px solid var(--red-500);
  outline-offset: 4px;
}

@media (min-width: 900px) {
  .hero-visual-shorts {
    min-height: 660px;
  }

  .video-shell-shorts {
    width: fit-content;
    max-width: 100%;
    padding: 18px;
    border-radius: 34px;
  }

  .hero-video-frame-shorts {
    width: clamp(320px, 23vw, 360px);
    flex: 0 0 auto;
    margin: 0;
  }
}

@media (max-width: 720px) {
  .hero-visual-shorts {
    min-height: auto;
  }

  .video-shell-shorts {
    width: min(100%, 320px);
    padding: 12px;
  }

  .hero-video-frame-shorts {
    width: min(100%, 296px);
    flex-basis: 296px;
    border-radius: 24px;
  }
}

.course-content[hidden],
.faq-answer[hidden] {
  display: none;
}

.lesson-card button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.lesson-card button strong::after {
  content: "+";
  float: right;
  color: var(--red-600);
}

.lesson-card.open button strong::after {
  content: "−";
}

.lesson-card p[hidden] {
  display: none;
}

/* Page-specific production assets */
.sample-box .eyebrow {
  color: #f08a8f;
}

.teacher .lead {
  font-size: 1.12rem;
}

/* Sample lesson page */
body.page-sample * { box-sizing: border-box; }
body.page-sample {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "DM Sans", Arial, sans-serif;
      line-height: 1.58;
      -webkit-font-smoothing: antialiased;
    }
body.page-sample.menu-open, body.page-sample.modal-open {
      overflow: hidden;
    }
body.page-sample img, body.page-sample svg, body.page-sample iframe { display: block; max-width: 100%; }
body.page-sample button, body.page-sample input { font: inherit; }
body.page-sample button { cursor: pointer; }
body.page-sample a { color: inherit; }
body.page-sample .container {
      width: min(calc(100% - 40px), var(--max));
      margin-inline: auto;
    }
body.page-sample .section {
      padding: 88px 0;
    }
body.page-sample .section-compact {
      padding: 68px 0;
    }
body.page-sample .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 13px;
      color: var(--red-600);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
body.page-sample .eyebrow::before {
      content: "";
      width: 25px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
    }
body.page-sample h1, body.page-sample h2, body.page-sample h3, body.page-sample p { margin-top: 0; }
body.page-sample h1, body.page-sample h2 {
      font-family: "Fraunces", Georgia, serif;
      color: var(--navy-950);
      letter-spacing: -.035em;
      line-height: 1.05;
    }
body.page-sample h1 {
      max-width: 800px;
      margin-bottom: 18px;
      font-size: clamp(2.45rem, 4.4vw, 3.85rem);
    }
body.page-sample h2 {
      margin-bottom: 16px;
      font-size: clamp(1.95rem, 3.2vw, 2.9rem);
    }
body.page-sample h3 {
      margin-bottom: 8px;
      color: var(--navy-950);
      font-size: 1.07rem;
      line-height: 1.32;
    }
body.page-sample p { color: var(--muted); }
body.page-sample .lead {
      max-width: 720px;
      font-size: clamp(1rem, 1.22vw, 1.12rem);
    }
body.page-sample .section-header {
      max-width: 750px;
      margin: 0 auto 40px;
      text-align: center;
    }
body.page-sample .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 23px;
      border: 1px solid transparent;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
body.page-sample .button:hover { transform: translateY(-2px); }
body.page-sample .button-primary {
      color: var(--white);
      background: var(--red-500);
      box-shadow: 0 12px 28px rgba(207, 65, 72, .25);
    }
body.page-sample .button-primary:hover { background: var(--red-600); }
body.page-sample .button-navy {
      color: var(--white);
      background: var(--navy-900);
      box-shadow: 0 12px 28px rgba(16, 40, 68, .22);
    }
body.page-sample .button-outline {
      color: var(--navy-900);
      border-color: rgba(16, 40, 68, .2);
      background: rgba(255,255,255,.74);
    }
body.page-sample .button-small {
      min-height: 43px;
      padding-inline: 18px;
      font-size: .9rem;
    }
body.page-sample .button-wide { width: 100%; }
body.page-sample .arrow {
      transition: transform .2s ease;
    }
body.page-sample .button:hover .arrow { transform: translateX(3px); }
/* Header */
body.page-sample .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(16,40,68,.08);
      background: rgba(255,254,250,.92);
      backdrop-filter: blur(16px);
    }
body.page-sample .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
body.page-sample .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--navy-950);
      text-decoration: none;
      font-weight: 800;
      letter-spacing: -.02em;
    }
body.page-sample .nav-links {
      display: flex;
      align-items: center;
      gap: 23px;
    }
body.page-sample .nav-links > a:not(.button) {
      color: #4c5c70;
      text-decoration: none;
      font-size: .9rem;
      font-weight: 700;
    }
body.page-sample .menu-toggle {
      width: 44px;
      height: 44px;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      border: 1px solid rgba(16,40,68,.14);
      border-radius: 13px;
      color: var(--navy-950);
      background: rgba(255,255,255,.8);
    }
body.page-sample .menu-toggle span {
      width: 19px;
      height: 2px;
      display: block;
      border-radius: 99px;
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
    }
body.page-sample .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.page-sample .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
body.page-sample .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.page-sample .mobile-menu { display: none; }
/* Hero */
body.page-sample .hero {
      padding: 52px 0 46px;
      overflow: hidden;
      background:
        radial-gradient(circle at 90% 10%, rgba(223,80,85,.13), transparent 24%),
        radial-gradient(circle at 8% 0%, rgba(35,80,127,.12), transparent 26%),
        linear-gradient(180deg, var(--paper), var(--ivory));
    }
body.page-sample .hero-copy {
      max-width: 870px;
      margin: 0 auto 28px;
      text-align: center;
    }
body.page-sample .hero-copy h1, body.page-sample .hero-copy .lead {
      margin-inline: auto;
    }
body.page-sample .hero-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
body.page-sample .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border: 1px solid rgba(16,40,68,.11);
      border-radius: 999px;
      color: var(--navy-800);
      background: rgba(255,255,255,.72);
      font-size: .82rem;
      font-weight: 800;
    }
body.page-sample .hero-badge::before {
      content: "✓";
      width: 18px;
      height: 18px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: var(--navy-800);
      font-size: .65rem;
    }
body.page-sample .lesson-shell {
      max-width: 1050px;
      margin: 0 auto;
      padding: 14px;
      border-radius: 28px;
      background: var(--navy-950);
      box-shadow: var(--shadow-md);
    }
body.page-sample .video-frame {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      border-radius: 18px;
      background: #000;
    }
body.page-sample .video-frame iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }
body.page-sample .youtube-facade {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 0;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 0;
      border-radius: inherit;
      color: var(--white);
      background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.13), transparent 34%),
        linear-gradient(135deg, #0f2844, #07192d);
      cursor: pointer;
    }
body.page-sample .youtube-facade img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      padding: 0;
      object-fit: cover;
      object-position: center;
      opacity: 1;
      filter: none;
    }
body.page-sample .youtube-facade::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.4));
      pointer-events: none;
    }
body.page-sample .youtube-play {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--red-500);
      box-shadow: 0 18px 34px rgba(207, 65, 72, .36);
      font-size: 1.55rem;
      transform: translate(-50%, -50%);
      transition: transform .2s ease, background .2s ease;
      z-index: 1;
    }
body.page-sample .youtube-label {
      position: absolute;
      left: 24px;
      bottom: 22px;
      z-index: 1;
      font-weight: 800;
      letter-spacing: -.01em;
      transform: none;
    }
body.page-sample .youtube-facade:hover .youtube-play, body.page-sample .youtube-facade:focus-visible .youtube-play {
      transform: translate(-50%, -50%) scale(1.05);
      background: var(--red-600);
    }
body.page-sample .youtube-facade:focus-visible {
      outline: 3px solid rgba(255,255,255,.84);
      outline-offset: -8px;
    }
body.page-sample .video-caption {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 17px 9px 4px;
      color: rgba(255,255,255,.72);
      font-size: .86rem;
    }
body.page-sample .video-caption strong {
      color: var(--white);
    }
/* Lesson overview */
body.page-sample .lesson-intro {
      background: var(--white);
    }
body.page-sample .lesson-intro-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 64px;
      align-items: center;
    }
body.page-sample .lesson-meta {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
body.page-sample .meta-card {
      min-height: 130px;
      padding: 21px;
      border: 1px solid var(--line);
      border-radius: 17px;
      background: var(--blue-50);
    }
body.page-sample .meta-card span {
      display: block;
      margin-bottom: 8px;
      color: var(--red-600);
      font-size: .73rem;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
body.page-sample .meta-card strong {
      display: block;
      color: var(--navy-950);
      font-size: 1rem;
      line-height: 1.4;
    }
/* Downloads */
body.page-sample .materials {
      background: var(--ivory);
    }
body.page-sample .downloads-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }
body.page-sample .download-card {
      display: flex;
      flex-direction: column;
      min-height: 245px;
      padding: 23px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: 0 8px 24px rgba(16,40,68,.04);
      transition: transform .2s ease, box-shadow .2s ease;
    }
body.page-sample .download-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }
body.page-sample .download-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 13px;
      background: var(--blue-100);
      font-size: 1.35rem;
    }
body.page-sample .download-card p {
      margin-bottom: 18px;
      font-size: .9rem;
    }
body.page-sample .download-card .button {
      width: 100%;
      min-height: 45px;
      margin-top: auto;
      padding-inline: 15px;
      font-size: .86rem;
    }
/* Daily practice */
body.page-sample .practice {
      background: var(--paper);
    }
body.page-sample .practice-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
body.page-sample .practice-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: 0 8px 25px rgba(16,40,68,.04);
    }
body.page-sample .practice-card.is-hidden {
      display: none;
    }
body.page-sample .practice-number {
      min-height: 88px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 17px 20px;
      color: var(--white);
      background:
        radial-gradient(circle at 85% 10%, rgba(223,80,85,.5), transparent 35%),
        var(--navy-900);
    }
body.page-sample .practice-number strong {
      font-family: "Fraunces", Georgia, serif;
      font-size: 2.4rem;
      line-height: 1;
    }
body.page-sample .practice-number span {
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
body.page-sample .practice-content {
      padding: 21px;
    }
body.page-sample .practice-date {
      margin-bottom: 12px;
      color: var(--red-600);
      font-size: .74rem;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
    }
body.page-sample .practice-content p {
      margin-bottom: 9px;
      font-size: .9rem;
      line-height: 1.55;
    }
body.page-sample .practice-content p:last-child { margin-bottom: 0; }
body.page-sample .practice-content em {
      color: var(--navy-900);
      font-style: normal;
      font-weight: 700;
    }
body.page-sample .practice-toggle-wrap {
      margin-top: 26px;
      text-align: center;
    }
/* What this demonstrates */
body.page-sample .method-strip {
      color: var(--white);
      background: var(--navy-950);
    }
body.page-sample .method-strip h2 { color: var(--white); }
body.page-sample .method-strip .eyebrow { color: #f08a8f; }
body.page-sample .method-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 32px;
    }
body.page-sample .method-card {
      padding: 25px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.055);
    }
body.page-sample .method-card span {
      display: inline-flex;
      margin-bottom: 21px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--navy-950);
      background: var(--blue-100);
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
body.page-sample .method-card h3 { color: var(--white); }
body.page-sample .method-card p {
      margin: 0;
      color: rgba(255,255,255,.68);
      font-size: .92rem;
    }
/* Club preview */
body.page-sample .club-preview {
      background: var(--blue-50);
    }
body.page-sample .stats-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      margin: 34px 0 40px;
    }
body.page-sample .stat-card {
      min-height: 132px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--white);
      text-align: center;
    }
body.page-sample .stat-card strong {
      display: block;
      margin-bottom: 4px;
      color: var(--navy-950);
      font-family: "Fraunces", Georgia, serif;
      font-size: 1.8rem;
      line-height: 1.05;
    }
body.page-sample .stat-card span {
      color: var(--muted);
      font-size: .76rem;
      font-weight: 700;
      line-height: 1.35;
    }
body.page-sample .availability-note {
      max-width: 880px;
      margin: 0 auto;
      padding: 17px 20px;
      border: 1px solid #efd3d4;
      border-radius: 15px;
      color: #6d3a3d;
      background: #fff6f6;
      text-align: center;
      font-size: .9rem;
    }
/* Pricing */
body.page-sample .pricing {
      color: var(--white);
      background:
        radial-gradient(circle at 85% 12%, rgba(223,80,85,.2), transparent 24%),
        var(--navy-950);
    }
body.page-sample .pricing h2 { color: var(--white); }
body.page-sample .pricing .eyebrow { color: #f08a8f; }
body.page-sample .pricing .lead { color: rgba(255,255,255,.7); }
body.page-sample .price-grid {
      max-width: 940px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 36px auto 0;
    }
body.page-sample .price-grid.single-price {
      max-width: 560px;
      grid-template-columns: 1fr;
    }
body.page-sample .price-card {
      position: relative;
      padding: 30px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 27px;
      background: rgba(255,255,255,.06);
    }
body.page-sample .price-card.featured {
      color: var(--ink);
      background: var(--white);
      box-shadow: 0 25px 70px rgba(0,0,0,.24);
    }
body.page-sample .plan-label {
      color: rgba(255,255,255,.65);
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
body.page-sample .featured .plan-label { color: var(--red-600); }
body.page-sample .price {
      display: flex;
      align-items: end;
      gap: 8px;
      margin: 15px 0 9px;
    }
body.page-sample .price strong {
      font-family: "Fraunces", Georgia, serif;
      font-size: 3.5rem;
      line-height: .95;
      letter-spacing: -.05em;
    }
body.page-sample .price span {
      color: rgba(255,255,255,.6);
      font-weight: 700;
    }
body.page-sample .featured .price span { color: var(--muted); }
body.page-sample .price-desc {
      min-height: 48px;
      color: rgba(255,255,255,.66);
      font-size: .93rem;
    }
body.page-sample .featured .price-desc { color: var(--muted); }
body.page-sample .price-list {
      display: grid;
      gap: 10px;
      margin: 23px 0 26px;
      padding: 0;
      list-style: none;
    }
body.page-sample .price-list li {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 8px;
      font-size: .9rem;
    }
body.page-sample .price-list li::before {
      content: "✓";
      color: #8fd0b7;
      font-weight: 800;
    }
body.page-sample .featured .price-list li::before { color: var(--green); }
body.page-sample .payment-note, body.page-sample .price-foot {
      margin: 11px 0 0;
      text-align: center;
      font-size: .76rem;
    }
body.page-sample .payment-note {
      color: rgba(255,255,255,.63);
    }
body.page-sample .payment-note::before {
      content: "🔒 ";
    }
body.page-sample .featured .payment-note, body.page-sample .featured .price-foot {
      color: var(--muted);
    }
body.page-sample .price-foot {
      color: rgba(255,255,255,.5);
    }
body.page-sample .guarantee {
      max-width: 940px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: center;
      margin: 20px auto 0;
      padding: 17px 20px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 17px;
      background: rgba(255,255,255,.055);
    }
body.page-sample .guarantee-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--navy-950);
      background: var(--blue-100);
    }
body.page-sample .guarantee strong {
      display: block;
      color: var(--white);
    }
body.page-sample .guarantee span {
      color: rgba(255,255,255,.62);
      font-size: .84rem;
    }
/* Footer */
body.page-sample footer {
      padding: 30px 0 95px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      background: var(--white);
      font-size: .84rem;
    }
body.page-sample .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }
body.page-sample .footer-links {
      display: flex;
      gap: 18px;
    }
body.page-sample .footer-links a { text-decoration: none; }
/* Checkout modal */
body.page-sample .checkout-modal {
      position: fixed;
      z-index: 500;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 20px;
      visibility: hidden;
      opacity: 0;
      background: rgba(6,18,33,.72);
      backdrop-filter: blur(9px);
      transition: opacity .2s ease, visibility .2s ease;
    }
body.page-sample .checkout-modal.open {
      visibility: visible;
      opacity: 1;
    }
body.page-sample .checkout-dialog {
      position: relative;
      width: min(100%, 520px);
      padding: 34px;
      border-radius: 25px;
      background: var(--white);
      box-shadow: 0 28px 90px rgba(0,0,0,.32);
      text-align: center;
    }
body.page-sample .checkout-close {
      position: absolute;
      top: 13px;
      right: 13px;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 50%;
      color: var(--navy-900);
      background: var(--blue-50);
      font-size: 1.2rem;
    }
body.page-sample .checkout-lock {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin: 0 auto 17px;
      border-radius: 50%;
      color: var(--navy-900);
      background: var(--blue-100);
      font-size: 1.35rem;
    }
body.page-sample .checkout-dialog h2 {
      margin-bottom: 12px;
      font-size: clamp(1.8rem, 5vw, 2.35rem);
    }
body.page-sample .checkout-dialog p {
      margin-bottom: 18px;
      font-size: .95rem;
    }
body.page-sample .checkout-plan {
      margin-bottom: 20px;
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 14px;
      color: var(--navy-950);
      background: var(--blue-50);
      font-weight: 800;
    }
body.page-sample .checkout-actions {
      display: grid;
      gap: 10px;
    }
body.page-sample .checkout-back {
      border: 0;
      color: var(--muted);
      background: transparent;
      font-weight: 700;
    }
/* Sticky mobile CTA */
body.page-sample .mobile-bar {
      position: fixed;
      z-index: 120;
      left: 10px;
      right: 10px;
      bottom: 10px;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 10px 10px 15px;
      border: 1px solid rgba(16,40,68,.12);
      border-radius: 18px;
      background: rgba(255,255,255,.95);
      box-shadow: 0 18px 50px rgba(16,40,68,.2);
      backdrop-filter: blur(15px);
    }
body.page-sample .mobile-bar strong {
      display: block;
      color: var(--navy-950);
      font-size: .88rem;
    }
body.page-sample .mobile-bar small {
      display: block;
      color: var(--muted);
      font-size: .7rem;
    }
@media (max-width: 1020px) {
body.page-sample .nav-links { display: none; }
body.page-sample .menu-toggle { display: flex; }
body.page-sample .mobile-menu {
        width: min(calc(100% - 28px), var(--max));
        max-height: 0;
        display: grid;
        gap: 4px;
        margin-inline: auto;
        overflow: hidden;
        opacity: 0;
        transition: max-height .28s ease, opacity .2s ease, padding .28s ease;
      }
body.page-sample .mobile-menu.open {
        max-height: 520px;
        padding: 9px 0 16px;
        opacity: 1;
        border-top: 1px solid var(--line);
      }
body.page-sample .mobile-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 47px;
        padding: 0 12px;
        border-radius: 11px;
        color: var(--navy-950);
        text-decoration: none;
        font-weight: 750;
      }
body.page-sample .mobile-menu .ebook-link {
        color: var(--red-600);
        background: var(--red-100);
      }
body.page-sample .mobile-menu .button {
        margin-top: 6px;
        color: var(--white);
      }
body.page-sample .lesson-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
body.page-sample .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
      }
body.page-sample .stats-grid {
        grid-template-columns: repeat(3, 1fr);
      }

    
}
@media (max-width: 760px) {
body.page-sample .container { width: min(calc(100% - 28px), var(--max)); }
body.page-sample .section { padding: 68px 0; }
body.page-sample .section-compact { padding: 54px 0; }
body.page-sample h1 {
        font-size: clamp(2.05rem, 10vw, 2.85rem);
      }
body.page-sample h2 {
        font-size: clamp(1.7rem, 7.8vw, 2.3rem);
      }
body.page-sample .nav { min-height: 66px; }
body.page-sample .brand span:last-child { font-size: .91rem; }
body.page-sample .hero { padding: 36px 0 34px; }
body.page-sample .lesson-shell { padding: 8px; border-radius: 20px; }
body.page-sample .video-frame { border-radius: 13px; }
body.page-sample .video-caption {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        padding: 13px 6px 3px;
      }
body.page-sample .lesson-meta, body.page-sample .downloads-grid, body.page-sample .practice-grid, body.page-sample .method-grid, body.page-sample .price-grid {
        grid-template-columns: 1fr;
      }
body.page-sample .practice-card.is-hidden {
        display: none;
      }
body.page-sample .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
body.page-sample .price-card {
        padding: 26px 22px;
      }
body.page-sample .guarantee {
        grid-template-columns: 1fr;
        text-align: center;
      }
body.page-sample .guarantee-icon {
        margin-inline: auto;
      }
body.page-sample .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
body.page-sample .mobile-bar { display: flex; }
body.page-sample .checkout-dialog {
        padding: 31px 21px 24px;
      }

    
}
@media (max-width: 390px) {
body.page-sample .container { width: min(calc(100% - 22px), var(--max)); }
body.page-sample .section { padding: 56px 0; }
body.page-sample .section-compact { padding: 46px 0; }
body.page-sample .eyebrow {
        margin-bottom: 10px;
        font-size: .68rem;
        letter-spacing: .11em;
      }
body.page-sample h1 {
        margin-bottom: 14px;
        font-size: clamp(1.86rem, 9.8vw, 2.18rem);
      }
body.page-sample h2 {
        font-size: clamp(1.52rem, 8.2vw, 1.92rem);
      }
body.page-sample .lead {
        font-size: .96rem;
      }
body.page-sample .hero {
        padding: 28px 0 30px;
      }
body.page-sample .hero-copy {
        margin-bottom: 22px;
      }
body.page-sample .hero-badges {
        margin-top: 16px;
      }
body.page-sample .button {
        min-height: 48px;
      }

    
}
@media (prefers-reduced-motion: reduce) {
body.page-sample *, body.page-sample *::before, body.page-sample *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }

    
}
/* Production asset merge */
body.page-sample .brand-logo {
  width: auto;
  height: 42px;
  max-width: 190px;
  object-fit: contain;
}
body.page-sample .brand-title {
  font-size: 1.02rem;
  line-height: 1;
  white-space: nowrap;
}
body.page-sample .method-note {
  color: rgba(255, 255, 255, 0.68);
}
