/* ============================================================
   LANGUAGE MONK — Custom Palette from Logo
   Primary: Rich Brown / Dark Brown backgrounds
   Accent: Warm Orange (#b87125, #d6a94d)
   Gold/Cream: (#f0d59a, #e8c97a)
   Light surface: warm parchment / off-white
   ============================================================ */

:root,
[data-theme='light'] {
  /* Surfaces — warm parchment */
  --color-bg: #f4ead9;
  --color-surface: #f8eddc;
  --color-surface-2: #f0dfc7;
  --color-surface-offset: #e8d3b5;
  --color-surface-dynamic: #dfc5a0;
  --color-divider: #ceb894;
  --color-border: #bfa681;

  /* Text */
  --color-text: #1e1208;
  --color-text-muted: #6b4e2e;
  --color-text-faint: #b89e80;
  --color-text-inverse: #f8eddc;

  /* Primary Accent — warm orange from logo */
  --color-primary: #8f5018;
  --color-primary-hover: #6f350d;
  --color-primary-active: #4b2108;
  --color-primary-highlight: #efd5ad;

  /* Deep brown — logo background dark tone */
  --color-brown-deep: #3d1a05;
  --color-brown-rich: #5a2d0c;
  --color-brown-mid: #7a4018;
  --color-gold: #c99a3d;
  --color-gold-light: #f0d59a;
  --color-orange-bright: #d6a94d;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.75rem;
  --radius-full: 9999px;

  /* Backward-compatible aliases used by older patched sections */
  --accent: var(--color-primary);
  --gold: var(--color-gold-light);
  --surface-alt: var(--color-surface-2);
  --text-muted: var(--color-text-muted);

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(61,26,5,0.08);
  --shadow-md: 0 4px 16px rgba(61,26,5,0.12);
  --shadow-lg: 0 12px 40px rgba(61,26,5,0.18);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
}

[data-theme='dark'] {
  --color-bg: #120a03;
  --color-surface: #1a0f05;
  --color-surface-2: #211408;
  --color-surface-offset: #261808;
  --color-surface-dynamic: #2e1f0c;
  --color-divider: #3a2510;
  --color-border: #4a3018;
  --color-text: #f0e4d0;
  --color-text-muted: #c49a68;
  --color-text-faint: #7a5535;
  --color-text-inverse: #1a0f05;
  --color-primary: #d6a94d;
  --color-primary-hover: #c99a3d;
  --color-primary-active: #f0d59a;
  --color-primary-highlight: #3d2208;
  --color-brown-deep: #f0e4d0;
  --color-brown-rich: #c99a3d;
  --color-brown-mid: #c49a68;
  --color-gold: #d6a94d;
  --color-gold-light: #f0d59a;
  --color-orange-bright: #d6a94d;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #120a03;
    --color-surface: #1a0f05;
    --color-surface-2: #211408;
    --color-surface-offset: #261808;
    --color-surface-dynamic: #2e1f0c;
    --color-divider: #3a2510;
    --color-border: #4a3018;
    --color-text: #f0e4d0;
    --color-text-muted: #c49a68;
    --color-text-faint: #7a5535;
    --color-text-inverse: #1a0f05;
    --color-primary: #d6a94d;
    --color-primary-hover: #c99a3d;
    --color-primary-active: #f0d59a;
    --color-primary-highlight: #3d2208;
    --color-brown-deep: #f0e4d0;
    --color-brown-rich: #c99a3d;
    --color-gold: #d6a94d;
    --color-gold-light: #f0d59a;
    --color-orange-bright: #d6a94d;
  }
}

/* ============================================================
   BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color 0.3s, color 0.3s;
}

img, picture, video { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; max-width: 72ch; }

a, button, [role='button'] {
  transition: color var(--transition-interactive), background var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive), opacity var(--transition-interactive);
}

button { cursor: pointer; background: none; border: none; }

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #b87125, #d6a94d);
  color: #1e1208;
  box-shadow: 0 4px 16px rgba(184,113,37,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #8f5018, #b87125);
  box-shadow: 0 6px 24px rgba(184,113,37,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-highlight);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn-full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-16));
  max-width: var(--content-wide);
  margin-inline: auto;
}

.nav-logo { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.nav-logo-img { height: 68px; width: 68px; object-fit: contain; border-radius: var(--radius-md); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin-left: auto;
  flex: 0 1 auto;
}

.nav-links a {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--color-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 0 0 auto;
}

.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: none;
  transition: color var(--transition-interactive), border-color var(--transition-interactive);
}
.lang-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  background: none;
  cursor: pointer;
  transition: color var(--transition-interactive), border-color var(--transition-interactive);
}
.theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: var(--space-2);
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-16));
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  gap: var(--space-1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
}
.nav-mobile a:hover { color: var(--color-primary); }

@media (max-width: 1120px) {
  .nav-inner { gap: var(--space-5); }
  .nav-links { gap: var(--space-4); }
  .nav-actions .btn-primary { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions .btn { display: none; }
}

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */

.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: var(--space-12);
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #3d1a05 0%, #5a2d0c 40%, #7a4018 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(214,169,77,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184,113,37,0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(240,213,154,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--space-24) + var(--space-16));
  padding-bottom: var(--space-24);
  text-align: center;
}

/* Hero two-column layout */
.hero-content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  margin-bottom: var(--space-10);
}

.hero-text-col {
  flex: 1 1 420px;
  max-width: 560px;
  text-align: left;
}

.hero-img-col {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-monkey-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-2xl);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-wrap {
    flex-direction: column-reverse;
    gap: var(--space-8);
  }
  .hero-text-col {
    text-align: center;
  }
  .hero-img-col {
    flex: none;
    width: 100%;
    max-width: 300px;
  }
  .hero-monkey-img {
    max-width: 260px;
  }
}

.hero-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(214,169,77,0.18);
  border: 1px solid rgba(214,169,77,0.35);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0d59a;
  margin-bottom: var(--space-8);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: #faf7f2;
  margin-bottom: var(--space-6);
  line-height: 1.05;
}

.hero-heading .accent {
  background: linear-gradient(135deg, #d6a94d, #f0d59a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: var(--text-sm);
  color: rgba(240,213,154,0.75);
  max-width: 560px;
  margin-bottom: var(--space-10);
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero .btn-ghost {
  color: #f0d59a;
  border-color: rgba(240,213,154,0.35);
}
.hero .btn-ghost:hover {
  border-color: #d6a94d;
  color: #d6a94d;
}

.hero-pillars {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-6);
  background: rgba(240,213,154,0.07);
  border: 1px solid rgba(240,213,154,0.15);
  border-radius: var(--radius-lg);
  min-width: 140px;
}

.pillar-icon {
  font-size: 1.5rem;
  color: #d6a94d;
  line-height: 1;
}

.pillar-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #f0d59a;
  letter-spacing: 0.05em;
}

.pillar-desc {
  font-size: var(--text-xs);
  color: rgba(240,213,154,0.6);
  text-align: center;
}

/* ============================================================
   SYSTEM SECTION
   ============================================================ */

.system-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background:
    radial-gradient(circle at 50% 18%, rgba(214,169,77,0.10), transparent 34%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.system-header {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-8);
}

.system-header .section-heading {
  max-width: 900px;
  margin-inline: auto;
}

.system-copy {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
  color: var(--color-text-muted);
}

.system-copy p,
.system-resource-lines p,
.system-question-box p,
.system-closing p {
  max-width: none;
}

.system-resource-lines {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  max-width: 1040px;
  margin: var(--space-8) auto 0;
}

.system-resource-break {
  flex-basis: 100%;
  height: 0;
}

.system-resource-lines p {
  background: linear-gradient(135deg, rgba(61,26,5,0.92), rgba(90,45,12,0.88));
  border: 1px solid rgba(240,213,154,0.16);
  border-radius: var(--radius-full);
  color: #f0d59a;
  box-shadow: 0 10px 24px rgba(61,26,5,0.12);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: var(--space-3) var(--space-6);
}

.system-resource-lines p:last-child {
  background: linear-gradient(135deg, #f0d59a, #d6aa57);
  border-color: rgba(90,45,12,0.24);
  color: #2a1405;
  font-weight: 800;
}

.system-path-panel {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-6);
  align-items: stretch;
}

.system-question-box {
  margin: 0;
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  border: 1px solid rgba(240,213,154,0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(24,14,6,0.99), rgba(38,22,9,0.97));
  box-shadow: var(--shadow-md);
}

.system-question-intro {
  font-weight: 700;
  color: #f0e4d0;
  margin-bottom: var(--space-5);
  text-align: center;
}

.system-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.system-questions li {
  position: relative;
  padding-left: var(--space-6);
  color: rgba(240,213,154,0.84);
  font-size: var(--text-sm);
}

.system-questions li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(214,169,77,0.16);
  color: #d6a94d;
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 1;
}

.system-bridge {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(240,213,154,0.12);
  text-align: center;
  color: #f0d59a;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
}

.system-closing {
  margin: 0;
  min-height: 100%;
  text-align: center;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  background: linear-gradient(145deg, #5a2a0d, #73401a);
  color: #f0d59a;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.system-closing h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.system-closing p {
  margin-inline: auto;
  color: rgba(244,221,170,0.84);
}

.system-final-line {
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
  font-weight: 800;
  color: #f0d59a !important;
}


[data-theme='dark'] .system-question-box {
  background: linear-gradient(145deg, rgba(24,14,6,0.99), rgba(38,22,9,0.97));
  border-color: rgba(240,213,154,0.14);
}

[data-theme='light'] .system-question-box {
  background: linear-gradient(145deg, #241406, #34200d);
  border-color: rgba(240,213,154,0.14);
}

[data-theme='light'] .system-question-intro,
[data-theme='light'] .system-bridge {
  color: #f0d59a;
}

[data-theme='light'] .system-questions li {
  color: rgba(240,213,154,0.84);
}

[data-theme='dark'] .system-resource-lines p {
  background: linear-gradient(135deg, rgba(61,26,5,0.98), rgba(90,45,12,0.94));
  border-color: rgba(240,213,154,0.18);
  color: #f0d59a;
}


[data-theme='dark'] .system-resource-lines p:last-child {
  background: linear-gradient(135deg, #f0d59a, #d6aa57);
  color: #2a1405;
}

@media (max-width: 900px) {
  .system-path-panel,
  .system-questions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .system-resource-lines {
    align-items: stretch;
    flex-direction: column;
  }

  .system-resource-lines p {
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .system-question-box {
    padding: var(--space-6);
  }

  .system-closing .btn {
    width: 100%;
  }
}

/* ============================================================
   METHOD
   ============================================================ */

.method {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-bg);
}

.method-proof-card {
  max-width: 880px;
  margin: var(--space-10) auto 0;
  padding: clamp(var(--space-6), 4vw, var(--space-8));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--color-surface), var(--color-surface-2));
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.method-proof-label {
  margin: 0 0 var(--space-3);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-proof-copy {
  margin: 0 auto;
  max-width: 720px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.25rem);
  font-weight: 600;
  line-height: 1.65;
}

[data-theme='dark'] .method-proof-card {
  background: linear-gradient(145deg, rgba(240,213,154,0.08), rgba(214,169,77,0.045));
  border-color: rgba(240,213,154,0.16);
}

.how-works { margin-top: var(--space-10); }

.how-works-heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-10);
  text-align: center;
}

.how-works-steps {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  opacity: 0;
  transform: translateY(20px);
}

.step.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  background: linear-gradient(135deg, #b87125, #d6a94d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.step-body h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.step-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.step-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #b87125, #d6a94d);
  border-radius: 2px;
  align-self: center;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .step-divider { display: none; }
  .how-works-steps { flex-direction: column; align-items: center; }
}

/* ============================================================
   TEACHERS
   ============================================================ */

.teachers {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-surface);
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--space-8);
  max-width: 920px;
  margin-inline: auto;
}

/* Four-teacher layout: clean 2x2 grid so the teachers stay visually equal. */
.teachers-grid .teacher-card {
  width: 100%;
  max-width: none;
  grid-column: auto;
}

@media (max-width: 640px) {
  .teachers-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .teachers-grid .teacher-card,
  .teachers-grid .teacher-card:last-child {
    grid-column: 1;
    max-width: 100%;
  }
}

.teacher-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(24px);
}

.teacher-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}

.teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.teacher-card--alt {
  background: var(--color-surface-2);
}

.teacher-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.teacher-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.teacher-card:hover .teacher-img {
  transform: scale(1.04);
}

.teacher-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #000;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.teacher-video-wrap iframe,
.teacher-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.teacher-video {
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 0;
  font-size: 0;
}

.video-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #1a0f05;
  color: #d6a94d;
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.video-fallback:hover { color: #f0d59a; }

.teacher-info {
  padding: var(--space-8);
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.teacher-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(214,169,77,0.16);
  color: #d6a94d;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.teacher-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.teacher-bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  max-width: 560px;
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  margin-top: var(--space-2);
}

.teacher-tags li {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}


/* ============================================================
   COACH SUPPORT
   ============================================================ */

.coaches {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.coaches .section-sub {
  max-width: 860px;
}

.coach-system-strip {
  margin-bottom: var(--space-10);
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
  max-width: 980px;
  margin-inline: auto;
  align-items: stretch;
}

.coach-card {
  border-color: rgba(214, 169, 77, 0.22);
}

.coach-card--founder {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-2) 100%);
}

.coach-card--student {
  background: var(--color-bg);
}

.coach-img-wrap {
  aspect-ratio: 4 / 3;
}

/* Jaylynne uses a prepared 4:3 thumbnail so the card shows her full portrait instead of cropping tightly into her face. */
.jaylynne-img {
  object-fit: cover;
  object-position: center center;
}

.teacher-card:hover .jaylynne-img {
  transform: none;
}

.coaches .teacher-video-wrap {
  border-top-color: rgba(214, 169, 77, 0.18);
}

@media (max-width: 820px) {
  .coach-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }
}

/* ============================================================
   RESULTS / TESTIMONIALS
   ============================================================ */

.results {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: linear-gradient(160deg, #3d1a05 0%, #5a2d0c 55%, #7a4018 100%);
}

.results .section-label { color: #d6a94d; }
.results .section-heading { color: #faf7f2; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.testimonial {
  background: rgba(240,213,154,0.07);
  border: 1px solid rgba(240,213,154,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  opacity: 0;
  transform: translateY(20px);
}

.testimonial.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-stars {
  color: #d6a94d;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
}

.testimonial p {
  font-size: var(--text-base);
  color: rgba(240,213,154,0.9);
  font-style: italic;
  line-height: 1.65;
}

.testimonial-author {
  font-size: var(--text-xs);
  color: rgba(240,213,154,0.5);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
}

/* Student video feature */
.student-video-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-10);
  align-items: center;
  margin-bottom: var(--space-4);
}

.student-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.student-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.student-video-quote {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.student-video-quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: rgba(240,213,154,0.9);
  line-height: 1.6;
  font-style: normal;
  position: relative;
  padding-left: var(--space-5);
  border-left: 3px solid #d6a94d;
}

.student-author-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #d6a94d;
}

.student-author-detail {
  font-size: var(--text-xs);
  color: rgba(240,213,154,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: var(--space-1);
}

@media (max-width: 768px) {
  .student-video-feature {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  align-items: stretch;
}

.pricing-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}

.pricing-card--featured {
  background: linear-gradient(160deg, #3d1a05, #5a2d0c);
  border-color: #d6a94d;
  box-shadow: 0 0 0 2px rgba(214,169,77,0.25), var(--shadow-lg);
  transform: translateY(-8px) scale(1.02);
}

.pricing-card--featured.revealed {
  transform: translateY(-8px) scale(1.02);
}

.pricing-card--featured:hover {
  transform: translateY(-12px) scale(1.02);
}

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #b87125, #d6a94d);
  color: #1e1208;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-tier {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.pricing-card--featured .pricing-tier { color: #d6a94d; }

.pricing-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}

.pricing-card--featured .pricing-name { color: #faf7f2; }

.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
}

.pricing-card--featured .pricing-price { color: #d6a94d; }

.pricing-price span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.pricing-card--featured .pricing-price span { color: rgba(240,213,154,0.6); }

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.pricing-card--featured .pricing-desc { color: rgba(240,213,154,0.7); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  margin-top: var(--space-2);
}

.pricing-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  max-width: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.pricing-card--featured .pricing-features li { color: rgba(240,213,154,0.8); }
.pricing-card--featured .pricing-features li::before { color: #d6a94d; }

.pricing-card .btn { margin-top: var(--space-4); }




/* ============================================================
   PRICING OFFER ARCHITECTURE UPGRADE
   Adds value stack, best-for framing, comparison table, and stronger trust block.
   ============================================================ */

.pricing-main-sub {
  max-width: 820px;
}

.pricing-value-stack,
.pricing-comparison {
  max-width: 1120px;
  margin: var(--space-10) auto var(--space-10);
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in srgb, var(--color-border) 80%, var(--color-primary));
  background:
    radial-gradient(circle at top left, rgba(214,169,77,0.13), transparent 32%),
    linear-gradient(145deg, var(--color-surface), var(--color-surface-2));
  box-shadow: var(--shadow-md);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  opacity: 0;
  transform: translateY(20px);
}

.pricing-value-stack.revealed,
.pricing-comparison.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pricing-value-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(var(--space-6), 4vw, var(--space-10));
  align-items: start;
}

.pricing-value-copy .section-label,
.pricing-comparison-head .section-label {
  text-align: left;
  margin-bottom: var(--space-3);
}

.pricing-value-copy h2,
.pricing-comparison-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.25rem + 1.4vw, 2.5rem);
  line-height: 1.13;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.pricing-value-copy p,
.pricing-comparison-head p {
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 620px;
}

.pricing-value-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.pricing-value-list li {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214,169,77,0.18);
  background: rgba(214,169,77,0.08);
  padding: var(--space-3) var(--space-4);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.pricing-grid--money-models {
  margin-top: var(--space-12);
}

.pricing-best-for {
  border-left: 3px solid var(--color-primary);
  background: rgba(214,169,77,0.08);
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.55;
  font-weight: 700;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
}

.pricing-card--featured .pricing-best-for {
  background: rgba(214,169,77,0.13);
  color: rgba(250,247,242,0.92);
}

.pricing-price-note {
  margin-top: calc(var(--space-3) * -1);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-comparison {
  margin-top: var(--space-14);
}

.pricing-comparison-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-8);
  align-items: end;
  margin-bottom: var(--space-6);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: rgba(0,0,0,0.09);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  color: var(--color-text);
  font-weight: 800;
}

.comparison-table th {
  color: var(--color-text);
  font-weight: 900;
  background: rgba(214,169,77,0.08);
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:not(:first-child) {
  font-weight: 800;
}

.pricing-question-row {
  text-align: center;
  margin-top: var(--space-10);
}

.pricing-question-row p {
  color: rgba(240,213,154,0.66);
  margin-bottom: var(--space-4);
}

@media (max-width: 980px) {
  .pricing-value-stack,
  .pricing-comparison-head {
    grid-template-columns: 1fr;
  }

  .pricing-value-copy .section-label,
  .pricing-comparison-head .section-label,
  .pricing-value-copy h2,
  .pricing-comparison-head h2,
  .pricing-value-copy p,
  .pricing-comparison-head p {
    text-align: center;
    margin-inline: auto;
  }

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

@media (max-width: 640px) {
  .pricing-value-list {
    grid-template-columns: 1fr;
  }

  .pricing-value-stack,
  .pricing-comparison,
  .pricing-trust-block {
    padding: var(--space-5);
  }

  .pricing-featured-badge {
    max-width: calc(100% - var(--space-8));
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
}

/* ============================================================
   BOOKING / CALENDLY
   ============================================================ */

.booking {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-surface);
}

.calendly-embed-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-8);
  background: #3d1a05;
}

.calendly-inline-widget {
  border-radius: var(--radius-xl);
  min-width: 320px;
  min-height: 700px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-surface);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-faint); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-email-card {
  background: linear-gradient(160deg, #3d1a05, #5a2d0c);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-email-icon {
  font-size: 2rem;
  color: #d6a94d;
}

.contact-email-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #faf7f2;
}

.contact-email-card p {
  font-size: var(--text-sm);
  color: rgba(240,213,154,0.7);
}

.contact-email-link {
  display: inline-block;
  color: #d6a94d;
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
}

.contact-email-link:hover { color: #f0d59a; text-decoration: underline; }

.contact-tip {
  font-size: var(--text-xs);
  color: rgba(240,213,154,0.5);
}

.contact-what-get {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.contact-what-get h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.contact-what-get ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-what-get li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  max-width: none;
}

.contact-what-get li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: linear-gradient(160deg, #2a1103, #3d1a05);
  padding-block: var(--space-12);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.footer-logo-img {
  height: 64px;
  width: 64px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: #1a0a02;
  padding: 4px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: rgba(240,213,154,0.65);
  max-width: none;
}

.footer-nav {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  font-size: var(--text-sm);
  color: rgba(240,213,154,0.5);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #d6a94d; }

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(240,213,154,0.3);
  max-width: 960px;
  line-height: 1.8;
}

.footer-copy a {
  color: rgba(240,213,154,0.55);
  text-decoration: none;
}

.footer-copy a:hover {
  color: #d6a94d;
}

/* ============================================================
   SCROLL REVEAL BASE
   ============================================================ */

.teacher-card, .testimonial, .pricing-card, .step, .system-closing {
  opacity: 0;
  transform: translateY(20px);
}


.system-closing.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {
  .hero-pillars { flex-direction: column; align-items: center; }
  .pillar { width: 100%; max-width: 240px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured.revealed { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .method-proof-card { padding: var(--space-6); }
  .method-proof-copy { font-size: var(--text-base); }
}

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


/* ── BOOKING ─────────────────────────────────────────── */
.booking {
  background: var(--color-surface-2, #2a1203);
  padding: 80px 0 60px;
  text-align: center;
}
.booking .section-label {
  color: var(--color-primary, #b87125);
}
.booking .section-heading {
  color: var(--color-text, #f0d59a);
}
.booking .section-sub {
  color: var(--color-text-muted, #a89070);
  margin-bottom: 40px;
}
.booking .calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

/* ── SOCIAL BUTTONS ──────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 16px 0;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184, 113, 37, 0.15);
  color: var(--accent, #b87125);
  border: 1.5px solid rgba(184, 113, 37, 0.4);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--accent, #b87125);
  color: #fff7e8;
  transform: translateY(-2px);
}

/* ── HERO TEXT LINK ──────────────────────────────────── */
.hero-text-link {
  display: block;
  margin-top: 14px;
  color: var(--gold, #f0d59a);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.hero-text-link:hover { opacity: 1; }

/* ── FOOTER PRIVACY LINK ─────────────────────────────── */
.footer-privacy {
  color: var(--text-muted, #a89070);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: inherit;
}
.footer-privacy:hover { color: var(--gold, #f0d59a); }

/* ── VIDEO COMING SOON PLACEHOLDER ──────────────────── */
.video-coming-soon {
  background: rgba(61, 26, 5, 0.6);
  border: 2px dashed rgba(184, 113, 37, 0.35);
  border-radius: 10px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-placeholder {
  text-align: center;
  padding: 32px 20px;
}
.coming-soon-placeholder span {
  font-family: 'Cinzel', serif;
  color: var(--accent, #b87125);
  font-size: 1rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

/* ── VIDEO-WRAP (newer teacher cards) ───────────────── */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 0 0 10px 10px;
  flex-shrink: 0;
  display: block;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--space-24) 0;
  background: var(--surface-alt, #2a1203);
}

[data-theme="light"] .faq-section {
  background: #f5efe6;
}

.faq-list {
  max-width: 760px;
  margin: var(--space-12) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(240,213,154,0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.2s;
}

[data-theme="light"] .faq-item {
  background: #f8eddc;
  border-color: rgba(61,26,5,0.12);
}

.faq-item.open {
  border-color: rgba(184,113,37,0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  color: #f0d59a;
  line-height: 1.4;
}

[data-theme="light"] .faq-question {
  color: #3d1a05;
}

.faq-item--refund .faq-question {
  color: #b87125;
}

[data-theme="light"] .faq-item--refund .faq-question {
  color: #c05e00;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: #b87125;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 var(--space-6);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
  font-size: var(--text-sm);
  color: rgba(240,213,154,0.75);
  line-height: 1.7;
  margin: 0;
}

[data-theme="light"] .faq-answer p {
  color: #5a3a1a;
}

/* ── BOOKING CENTERING FIX ─────────────────────────────
   Keeps the booking intro locked into a clean centered column
   so the subtitle does not visually drift left on wide screens. */
.booking .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking .section-label,
.booking .section-heading,
.booking .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.booking .section-label {
  margin-bottom: 18px;
}

.booking .section-heading {
  max-width: 780px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.booking .section-sub {
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.55;
  text-wrap: balance;
}

.booking .calendly-inline-widget {
  width: min(100%, 900px);
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   SENIOR POSITIONING / CONVERSION POLISH — 2026-05-11
   ============================================================ */

.hero-sub {
  font-size: clamp(1.02rem, 0.96rem + 0.25vw, 1.2rem);
  max-width: 660px;
  color: rgba(240,213,154,0.82);
}

.hero-ctas .btn-primary {
  white-space: normal;
  text-align: center;
}

.nav-actions .btn-primary {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: center;
  min-width: max-content;
  padding-inline: var(--space-5);
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-4);
  max-width: 1160px;
  margin: var(--space-10) auto 0;
}

.pillar {
  min-width: 0;
  height: 100%;
  padding: var(--space-5);
  background: linear-gradient(145deg, rgba(240,213,154,0.10), rgba(240,213,154,0.045));
  border-color: rgba(240,213,154,0.18);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.pillar-label {
  text-align: center;
  line-height: 1.2;
}

.system-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(214,169,77,0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(240,213,154,0.11), transparent 30%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.system-copy {
  max-width: 790px;
  margin-inline: auto;
  font-size: var(--text-base);
}

.system-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  max-width: 1120px;
  margin: var(--space-10) auto var(--space-8);
}

.system-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, var(--color-surface), var(--color-surface-2));
  box-shadow: var(--shadow-sm);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  opacity: 0;
  transform: translateY(20px);
}

.system-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, #b87125, #d6a94d, #f0d59a);
}

.system-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.system-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.system-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-weight: 900;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.system-card h3 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.system-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

.system-card-emphasis {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  font-weight: 800;
  color: var(--color-text) !important;
}

.system-cta-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.system-closing .btn-ghost {
  border-color: rgba(240,213,154,0.32);
  color: #f0d59a;
}

.teacher-system-strip {
  max-width: 1080px;
  margin: 0 auto var(--space-10);
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.teacher-system-strip span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.teacher-card {
  border-color: color-mix(in srgb, var(--color-border) 85%, var(--color-primary));
}

.teacher-bio {
  color: var(--color-text-muted);
}

.pricing-trust-block {
  max-width: 1040px;
  margin: var(--space-12) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-8);
  align-items: center;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, var(--color-surface), var(--color-surface-2));
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
}

.pricing-trust-block.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pricing-trust-copy .section-label {
  margin-bottom: var(--space-3);
  text-align: left;
}

.pricing-trust-copy p {
  color: var(--color-text-muted);
  max-width: none;
}

.pricing-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.pricing-trust-list li {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(214,169,77,0.08);
  border: 1px solid rgba(214,169,77,0.18);
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-8);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 700;
  max-width: none;
}

.pricing-trust-list li::before {
  content: '✓';
  position: absolute;
  left: var(--space-4);
  color: var(--color-primary);
  font-weight: 900;
}

.footer-tagline {
  color: rgba(240,213,154,0.76);
}

@media (max-width: 1080px) {
  .hero-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-pillars,
  .system-cards,
  .pricing-trust-block,
  .pricing-trust-list {
    grid-template-columns: 1fr;
  }

  .pricing-trust-copy .section-label,
  .pricing-trust-copy p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-pillars { grid-template-columns: 1fr; }
  .pillar { max-width: none; }
  .system-cta-row .btn { width: 100%; }
  .nav-actions .btn-primary { display: none; }
}

/* ============================================================
   FULL LAYOUT / SPANISH OVERFLOW AUDIT FIX — 2026-05-11
   Fixes long Spanish CTA wrapping, system-card overflow, and awkward narrow columns.
   ============================================================ */

html, body {
  max-width: 100%;
  overflow-x: clip;
}

/* Buttons should never blow out of their parent cards. Nav buttons are handled separately. */
.btn {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  overflow-wrap: normal;
}

.nav-inner {
  width: 100%;
  min-width: 0;
  gap: clamp(var(--space-4), 2vw, var(--space-8));
}

.nav-links {
  min-width: 0;
  gap: clamp(var(--space-4), 2vw, var(--space-6));
}

.nav-actions {
  min-width: 0;
}

.nav-actions .btn-primary {
  white-space: nowrap;
  max-width: 12.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* At laptop/zoomed widths, the header is cleaner without a CTA competing with links. */
@media (max-width: 1420px) {
  .nav-actions .btn-primary { display: none; }
}

/* Keep long translated CTAs inside cards/panels instead of stretching across the page. */
.hero-ctas .btn,
.system-cta-row .btn,
.pricing-card .btn,
.contact-form .btn,
.booking .btn {
  white-space: normal;
  text-align: center;
  line-height: 1.18;
}

.system-cta-row {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  align-items: stretch;
}

.system-cta-row .btn {
  flex: 1 1 210px;
}

.system-cta-row .btn-primary {
  flex-basis: 240px;
}

/* Spanish questions were breaking into word-stacks in a two-column box. One column reads cleaner. */
.system-questions {
  grid-template-columns: 1fr !important;
  max-width: 640px;
  margin-inline: auto;
}

.system-questions li {
  line-height: 1.55;
}

.system-bridge {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.system-closing {
  overflow: hidden;
}

.system-closing h3,
.system-closing p {
  max-width: 620px;
}

.system-closing p {
  line-height: 1.6;
}

.system-final-line {
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.2rem);
  line-height: 1.45;
}

/* Pricing CTAs need to remain inside the card in both languages. */
.pricing-card .btn {
  width: 100%;
  padding-inline: var(--space-4);
}

/* Long Spanish tag labels should wrap gracefully, not stretch teacher cards. */
.teacher-tags li,
.teacher-system-strip span,
.coach-system-strip span,
.pillar-label,
.pillar-desc {
  overflow-wrap: normal;
  text-align: center;
}

/* Slightly reduce visual heaviness of display text in dense Spanish areas. */
html[lang='es'] .system-bridge,
html[lang='es'] .system-final-line,
html[lang='es'] .pricing-trust-list li {
  text-wrap: pretty;
}

@media (max-width: 980px) {
  .system-path-panel {
    grid-template-columns: 1fr;
  }

  .system-closing {
    padding: clamp(var(--space-6), 5vw, var(--space-10));
  }
}

@media (max-width: 640px) {
  .btn-lg {
    width: 100%;
    padding-inline: var(--space-4);
  }

  .hero-ctas {
    width: 100%;
  }

  .hero-ctas .btn,
  .hero-text-link {
    width: 100%;
  }

  .system-cta-row {
    max-width: none;
  }
}

/* ============================================================
   PRICING PAGE FULL AUDIT FIX — 2026-05-11
   Prevents skinny word-stacked cards in English/Spanish and makes the
   Money Models pricing section read like a premium offer architecture.
   ============================================================ */

.pricing {
  overflow-x: clip;
}

.pricing > .container {
  max-width: 1240px;
}

.pricing .section-heading,
.pricing-main-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-value-stack,
.pricing-comparison,
.pricing-trust-block {
  width: 100%;
  max-width: 1120px;
}

.pricing-value-stack {
  display: block;
}

.pricing-value-copy {
  max-width: 820px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.pricing-value-copy .section-label,
.pricing-value-copy h2,
.pricing-value-copy p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}

.pricing-value-list li {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  min-height: 4.25rem;
  text-align: left;
  line-height: 1.38;
  overflow-wrap: normal;
  word-break: normal;
}

.pricing-value-list li::before {
  content: '✓';
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: rgba(214,169,77,0.16);
  color: var(--color-primary);
  font-weight: 900;
}

.pricing-grid--money-models {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 981px) {
  .pricing-grid--money-models {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  min-width: 0;
}

.pricing-card .btn {
  min-height: 3rem;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.pricing-best-for,
.pricing-desc,
.pricing-features li,
.pricing-price-note {
  overflow-wrap: normal;
  word-break: normal;
}

.pricing-comparison-head {
  align-items: center;
}

.comparison-table th,
.comparison-table td {
  white-space: normal;
  word-break: normal;
}

.pricing-trust-block {
  display: block;
  text-align: center;
}

.pricing-trust-copy {
  max-width: 820px;
  margin: 0 auto var(--space-8);
}

.pricing-trust-copy .section-label,
.pricing-trust-copy p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-trust-copy .section-label {
  display: inline-block;
}

.pricing-trust-copy p {
  font-size: var(--text-base);
  line-height: 1.72;
}

.pricing-trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  width: 100%;
}

.pricing-trust-list li {
  min-width: 0;
  min-height: 5.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.42;
  padding: var(--space-4) var(--space-4) var(--space-4) calc(var(--space-8) + var(--space-2));
  overflow-wrap: normal;
  word-break: normal;
}

.pricing-trust-list li::before {
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
}

.pricing-question-row .btn {
  min-width: min(100%, 220px);
}

html[lang='es'] .pricing-card .btn,
html[lang='es'] .pricing-trust-list li,
html[lang='es'] .pricing-value-list li,
html[lang='es'] .comparison-table th,
html[lang='es'] .comparison-table td {
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .pricing-trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .pricing-grid--money-models {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .pricing-card--featured,
  .pricing-card--featured.revealed,
  .pricing-card--featured:hover {
    transform: none;
  }

  .pricing-comparison-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-comparison-head .section-label,
  .pricing-comparison-head h2,
  .pricing-comparison-head p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .pricing-value-list,
  .pricing-trust-list {
    grid-template-columns: 1fr;
  }

  .pricing-value-list li,
  .pricing-trust-list li {
    min-height: auto;
  }

  .comparison-table {
    min-width: 680px;
  }
}

@media (max-width: 480px) {
  .pricing .section-heading br {
    display: none;
  }

  .pricing-value-stack,
  .pricing-comparison,
  .pricing-trust-block {
    border-radius: var(--radius-xl);
  }

  .pricing-card,
  .pricing-value-stack,
  .pricing-comparison,
  .pricing-trust-block {
    padding: var(--space-5);
  }

  .pricing-trust-list li,
  .pricing-value-list li {
    padding-right: var(--space-4);
  }
}


/* ============================================================
   PAYMENT FLOW BLOCK — secure checkout after plan call
   ============================================================ */

.payment-flow-block {
  width: 100%;
  max-width: 1120px;
  margin: var(--space-12) auto 0;
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in srgb, var(--color-border) 78%, var(--color-primary));
  background:
    radial-gradient(circle at top right, rgba(214,169,77,0.16), transparent 34%),
    linear-gradient(145deg, var(--color-surface-2), var(--color-surface));
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
}

.payment-flow-block.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.payment-flow-copy {
  max-width: 820px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.payment-flow-copy .section-label {
  margin-bottom: var(--space-3);
}

.payment-flow-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.2rem + 1.35vw, 2.45rem);
  line-height: 1.14;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.payment-flow-copy p {
  color: var(--color-text-muted);
  line-height: 1.72;
  max-width: 760px;
  margin-inline: auto;
}

.payment-flow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding: 0;
}

.payment-flow-steps li {
  min-width: 0;
  min-height: 7rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214,169,77,0.18);
  background: rgba(214,169,77,0.075);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--space-3);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  word-break: normal;
  overflow-wrap: normal;
}

.payment-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b87125, #d6a94d);
  color: #1e1208;
  font-weight: 900;
  flex: 0 0 auto;
}

.payment-flow-note {
  margin: var(--space-6) auto 0;
  max-width: 760px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214,169,77,0.2);
  background: rgba(0,0,0,0.12);
  color: var(--color-text-muted);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
}

html[lang='es'] .payment-flow-copy h2,
html[lang='es'] .payment-flow-copy p,
html[lang='es'] .payment-flow-steps li,
html[lang='es'] .payment-flow-note {
  letter-spacing: 0;
  text-wrap: pretty;
}

@media (max-width: 980px) {
  .payment-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .payment-flow-steps {
    grid-template-columns: 1fr;
  }

  .payment-flow-steps li {
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .payment-flow-block {
    border-radius: var(--radius-xl);
    padding: var(--space-5);
  }
}

/* ============================================================
   FINAL NAVIGATION STABILITY FIX — 2026-05-11
   Prevents Spanish nav labels/buttons from overlapping at desktop widths.
   ============================================================ */
.nav {
  overflow: visible;
}

.nav-inner {
  max-width: min(1440px, calc(100% - 2rem));
  width: 100%;
  box-sizing: border-box;
  gap: clamp(0.75rem, 1.35vw, 1.75rem);
  padding-inline: clamp(1rem, 3.2vw, 3rem);
}

.nav-links {
  flex: 0 0 auto;
  min-width: max-content;
  gap: clamp(0.8rem, 1.35vw, 1.35rem);
  overflow: visible;
}

.nav-links a {
  font-size: clamp(0.84rem, 0.74rem + 0.22vw, 0.96rem);
  line-height: 1;
}

.nav-actions {
  flex: 0 0 auto;
  margin-left: clamp(0.5rem, 1vw, 1rem);
  gap: clamp(0.45rem, 0.8vw, 0.75rem);
}

.lang-toggle,
.theme-toggle {
  flex: 0 0 36px;
}

/* Spanish labels are longer, so the header stays premium without a competing CTA. */
html[lang='es'] .nav-actions .btn-primary {
  display: none !important;
}

.nav-actions .btn-primary {
  flex: 0 0 auto;
  padding-inline: clamp(1rem, 1.8vw, 1.5rem);
  max-width: none;
  white-space: nowrap;
}

/* Hide the header CTA before it can squeeze the navigation. Hero/body CTAs stay visible. */
@media (max-width: 1540px) {
  .nav-actions .btn-primary { display: none !important; }
}

/* Switch to the mobile menu earlier so medium screens never get cramped. */
@media (max-width: 1120px) {
  .nav-inner { max-width: 100%; }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

@media (max-width: 560px) {
  .nav-inner { padding-inline: 0.875rem; gap: 0.65rem; }
  .nav-logo-img { width: 58px; height: 58px; }
  .lang-toggle,
  .theme-toggle { width: 34px; height: 34px; flex-basis: 34px; }
}


/* ============================================================
   SENIOR WEBSITE IMPLEMENTATION PASS — RESPONSIVE TRUST + OFFER
   ============================================================ */

/* Permanent nav stability: body CTAs do the selling; header must never break trust. */
.nav { isolation: isolate; }
.nav-inner {
  min-height: 86px;
  max-width: min(1320px, calc(100% - 2rem));
  padding-inline: clamp(1rem, 2.4vw, 2rem) !important;
  gap: clamp(0.75rem, 1.1vw, 1.25rem) !important;
}
.nav-links { gap: clamp(0.8rem, 1.05vw, 1.15rem) !important; min-width: 0 !important; }
.nav-links a { font-size: clamp(0.9rem, 0.82rem + 0.22vw, 1rem) !important; }
.nav-actions { margin-left: 0 !important; }
.nav-actions .btn-primary { display: none !important; } /* prevents every Spanish/zoom overflow case */
.nav-mobile { box-shadow: 0 18px 36px rgba(20,10,4,0.24); }
.nav-mobile a { font-size: 1rem; }
@media (max-width: 1240px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
}
@media (max-width: 520px) {
  .nav-inner { min-height: 74px; }
  .nav-logo-img { width: 54px !important; height: 54px !important; }
}

/* Button guardrails for English/Spanish. */
.btn { line-height: 1.15; text-wrap: balance; max-width: 100%; }
.nav .btn { white-space: nowrap; text-wrap: nowrap; }
.hero-ctas .btn-primary,
.system-cta-row .btn-primary,
.pricing-card .btn,
.contact-form .btn { min-width: 0; white-space: normal; }
@media (max-width: 640px) {
  .hero-ctas .btn,
  .system-cta-row .btn,
  .pricing-card .btn { width: 100%; }
}

/* First-week diagnostic: lowers perceived time delay without fake fluency promises. */
.first-week-card {
  width: min(1060px, 100%);
  margin: clamp(1.75rem, 4vw, 3rem) auto 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(240,213,154,0.16);
  background: linear-gradient(135deg, rgba(24,14,6,0.82), rgba(90,45,12,0.46));
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}
.first-week-card .section-label { margin-bottom: 0.65rem; }
.first-week-card h2 {
  color: #faf7f2;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1rem + 1.35vw, 2.2rem);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}
.first-week-card p { color: rgba(240,213,154,0.72); line-height: 1.65; }
.first-week-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.first-week-list li {
  min-width: 0;
  border: 1px solid rgba(240,213,154,0.16);
  background: rgba(240,213,154,0.07);
  color: #f0d59a;
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}
.first-week-list li::before { content: "✓"; color: #d6a94d; margin-right: 0.45rem; }
@media (max-width: 860px) {
  .first-week-card { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .first-week-list { grid-template-columns: 1fr; }
}

/* Teacher cards: conversion-oriented details without changing the balanced layout. */
.teacher-conversion-copy {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(214,169,77,0.07);
  border: 1px solid rgba(240,213,154,0.12);
}
.teacher-conversion-copy p { margin: 0; color: var(--color-text-muted); font-size: var(--text-xs); line-height: 1.55; }
.teacher-conversion-copy strong { color: var(--color-text); }

/* Pricing page: premium hierarchy and no cramped trust boxes. */
.pricing-founding-note {
  max-width: 780px;
  margin: -0.5rem auto var(--space-8);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(214,169,77,0.18);
  border-radius: var(--radius-full);
  background: rgba(214,169,77,0.07);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
  line-height: 1.45;
}
.payment-flow-block,
.pricing-trust-block,
.pricing-value-stack,
.pricing-comparison {
  overflow: hidden;
}
.pricing-trust-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.2rem);
  align-items: start;
}
.pricing-trust-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  gap: 0.85rem !important;
}
.pricing-trust-list li {
  min-width: 0;
  line-height: 1.35 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
.comparison-card-stack { display: none; }
@media (max-width: 860px) {
  .comparison-table-wrap { display: none; }
  .comparison-card-stack { display: grid; gap: 1rem; }
  .comparison-mobile-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: rgba(214,169,77,0.06);
    padding: 1.2rem;
  }
  .comparison-mobile-card--featured { border-color: rgba(214,169,77,0.4); background: rgba(214,169,77,0.10); }
  .comparison-mobile-card h3 { font-family: var(--font-display); margin-bottom: 0.45rem; color: var(--color-text); }
  .comparison-mobile-card p { color: var(--color-text-muted); line-height: 1.55; }
}
@media (max-width: 980px) {
  .pricing-trust-block { grid-template-columns: 1fr; }
  .pricing-trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 620px) {
  .pricing-founding-note { border-radius: var(--radius-lg); }
  .pricing-trust-list { grid-template-columns: 1fr !important; }
}

/* Booking/contact trust notes. */
.booking-plan-note,
.contact-payment-note {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(214,169,77,0.07);
  color: var(--color-text-muted);
  padding: 1rem 1.1rem;
  line-height: 1.55;
}
.booking-plan-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.booking-plan-note strong,
.contact-payment-note h3 { color: var(--color-text); }
.contact-payment-note h3 { font-family: var(--font-display); margin-bottom: 0.35rem; }
.form-helper { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.5; text-align: center; }
.form-honeypot { position:absolute !important; left:-9999px !important; opacity:0 !important; height:0 !important; width:0 !important; pointer-events:none !important; }

/* Less fantasy-poster, more premium product: display font is restrained in dense sections. */
.pricing-card,
.pricing-trust-block,
.payment-flow-block,
.contact-form,
.faq-list { font-family: var(--font-body); }
.pricing-card .pricing-name,
.pricing-card .pricing-price,
.pricing-comparison h2,
.payment-flow-copy h2 { text-wrap: balance; }
html[lang='es'] .section-heading,
html[lang='es'] .hero-heading { text-wrap: balance; }

/* Safety against any future skinny-column regression. */
.pricing *, .system-section *, .teachers *, .coaches *, .contact * { min-width: 0; }

/* --- pricing page trust-block audit fix: prevent cramped text and awkward wraps --- */
.pricing-trust-block {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr) !important;
  gap: clamp(1.25rem, 3vw, 2rem) !important;
  align-items: start !important;
}

.pricing-trust-copy {
  max-width: none !important;
  margin: 0 !important;
}

.pricing-trust-copy .section-label,
.pricing-trust-copy p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.pricing-trust-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.9rem !important;
  align-items: stretch !important;
}

.pricing-trust-list li {
  min-height: 6.75rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 1.05rem 1rem 1.05rem 2.95rem !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(214, 169, 77, 0.14) !important;
  background: linear-gradient(180deg, rgba(214,169,77,0.07), rgba(214,169,77,0.04)) !important;
  font-size: clamp(0.98rem, 0.95rem + 0.15vw, 1.06rem) !important;
  line-height: 1.34 !important;
  text-wrap: pretty;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: none !important;
}

.pricing-trust-list li::before {
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

html[lang='es'] .pricing-trust-list li {
  font-size: clamp(0.94rem, 0.91rem + 0.12vw, 1rem) !important;
  line-height: 1.32 !important;
}

@media (max-width: 1180px) {
  .pricing-trust-block {
    grid-template-columns: 1fr !important;
  }
  .pricing-trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .pricing-trust-copy .section-label,
  .pricing-trust-copy p {
    text-align: center !important;
  }

  .pricing-trust-list {
    grid-template-columns: 1fr !important;
  }

  .pricing-trust-list li {
    min-height: 0 !important;
    padding: 1rem 1rem 1rem 2.85rem !important;
  }
}

/* ============================================================
   FINAL SENIOR POLISH PASS — calmer premium rhythm, safer wraps
   ============================================================ */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* More consistent breathing room without oversized gaps. */
section { scroll-margin-top: 96px; }
.hero, .system-section, .method, .teachers, .coaches, .pricing, .booking, .faq, .contact, .results {
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.container { width: min(100% - 2rem, var(--content-wide)); }
.section-label {
  letter-spacing: 0.18em !important;
  line-height: 1.35 !important;
  max-width: 100%;
}
.section-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  line-height: 0.98 !important;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.section-sub, .pricing-main-sub {
  max-width: 820px;
  line-height: 1.65 !important;
  text-wrap: pretty;
}

/* Keep the nav clean at awkward browser zooms and medium desktop sizes. */
.nav { backdrop-filter: blur(18px); }
.nav-inner { max-width: 1320px !important; width: min(100% - 2rem, 1320px) !important; }
.nav-logo-img { box-shadow: 0 10px 24px rgba(18, 10, 3, 0.16); }
.nav-links a { white-space: nowrap !important; line-height: 1 !important; }
.nav-actions { flex-shrink: 0 !important; }
.nav-actions .btn-primary { display: none !important; }
@media (max-width: 1120px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

/* Premium buttons: no more runaway Spanish CTAs. */
.btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.15 !important;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav .btn { white-space: nowrap !important; }
.pricing-card .btn, .system-closing .btn, .hero-actions .btn, .booking .btn, .contact .btn {
  width: fit-content;
  max-width: min(100%, 420px);
}
@media (max-width: 680px) {
  .hero-actions, .system-actions, .pricing-question-row, .booking-actions { width: 100%; }
  .hero-actions .btn, .system-actions .btn, .pricing-card .btn, .booking .btn, .contact .btn {
    width: 100%;
  }
}

/* Dense commercial sections should read like a premium guided-learning brand, not a poster. */
.pricing-card, .pricing-value-stack, .payment-flow-block, .pricing-comparison, .pricing-trust-block,
.teacher-card, .coach-card, .proof-artifact-card, .first-week-card, .contact-form, .faq-item {
  box-shadow: 0 14px 42px rgba(61, 26, 5, 0.10);
}
[data-theme='dark'] .pricing-card, [data-theme='dark'] .pricing-value-stack, [data-theme='dark'] .payment-flow-block,
[data-theme='dark'] .pricing-comparison, [data-theme='dark'] .pricing-trust-block, [data-theme='dark'] .teacher-card,
[data-theme='dark'] .proof-artifact-card, [data-theme='dark'] .first-week-card, [data-theme='dark'] .contact-form,
[data-theme='dark'] .faq-item {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.pricing-card, .pricing-value-stack, .payment-flow-block, .pricing-comparison, .pricing-trust-block {
  border-color: rgba(214, 169, 77, 0.16) !important;
}
.pricing-card .pricing-name, .pricing-card .pricing-price, .pricing-comparison h2, .payment-flow-copy h2 {
  font-family: var(--font-body) !important;
  letter-spacing: -0.04em !important;
}
.pricing-card .pricing-name { font-weight: 700; }
.pricing-card .pricing-price { font-weight: 800; }
.pricing-desc, .pricing-best-for, .pricing-features li, .payment-flow-copy p, .payment-flow-note,
.comparison-mobile-card p, .pricing-trust-copy p, .pricing-trust-list li {
  text-wrap: pretty;
}

/* Pricing card consistency. */
.pricing-grid--money-models { align-items: stretch !important; }
.pricing-card { display: flex; flex-direction: column; min-width: 0; }
.pricing-features { flex: 1 1 auto; }
.pricing-card .btn { margin-top: auto !important; }
.pricing-featured-badge {
  max-width: 100%;
  white-space: normal;
  line-height: 1.25;
}

/* Trust block: final overflow-safe commercial layout. */
.pricing-trust-block {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr) !important;
  align-items: center !important;
  padding: clamp(1.6rem, 3.5vw, 3rem) !important;
}
.pricing-trust-copy p {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.3rem) !important;
  line-height: 1.62 !important;
}
.pricing-trust-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(0.75rem, 1.2vw, 1rem) !important;
}
.pricing-trust-list li {
  min-height: 6.2rem !important;
  padding: 1rem 0.95rem 1rem 2.7rem !important;
  font-size: clamp(0.9rem, 0.84rem + 0.22vw, 1.02rem) !important;
  line-height: 1.28 !important;
  overflow: visible !important;
}
.pricing-trust-list li::before { left: 0.9rem !important; }
html[lang='es'] .pricing-trust-list li { font-size: clamp(0.86rem, 0.82rem + 0.18vw, 0.96rem) !important; }
@media (max-width: 1220px) {
  .pricing-trust-block { grid-template-columns: 1fr !important; align-items: start !important; }
  .pricing-trust-copy, .pricing-trust-copy .section-label, .pricing-trust-copy p { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
  .pricing-trust-copy { max-width: 780px !important; }
  .pricing-trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px) {
  .pricing-trust-block { padding: 1.25rem !important; }
  .pricing-trust-list { grid-template-columns: 1fr !important; }
  .pricing-trust-list li { min-height: 0 !important; font-size: 0.96rem !important; }
}

/* Comparison table stays usable on desktop and becomes cards earlier on small screens. */
.comparison-table { min-width: 780px; }
.comparison-table th, .comparison-table td { line-height: 1.35 !important; }
@media (max-width: 900px) {
  .comparison-table-wrap { display: none !important; }
  .comparison-card-stack { display: grid !important; }
}

/* Teacher cards: cleaner balance and less cramped copy. */
.teacher-card { overflow: hidden; }
.teacher-card h3, .teacher-card p { text-wrap: pretty; }
.teacher-bio, .teacher-conversion-copy p { line-height: 1.58 !important; }
.teacher-conversion-copy { margin-top: 1rem; }

/* Forms and FAQ: cleaner readable rhythm. */
.form-group label, .faq-question { line-height: 1.35; }
.faq-answer p, .contact-payment-note p, .form-helper { line-height: 1.62 !important; }
input, textarea, select { font-size: 16px !important; }

/* Spanish-specific restraint: longer text gets slightly more room, not bigger drama. */
html[lang='es'] .hero-heading { font-size: clamp(3rem, 7.2vw, 6.8rem) !important; }
html[lang='es'] .section-heading { font-size: clamp(2.05rem, 4.4vw, 4.4rem) !important; }
html[lang='es'] .pricing-card .btn { font-size: clamp(0.88rem, 0.84rem + 0.2vw, 1rem) !important; }

/* Mobile final restraint. */
@media (max-width: 480px) {
  .container { width: min(100% - 1.25rem, var(--content-wide)); }
  .hero, .system-section, .method, .teachers, .coaches, .pricing, .booking, .faq, .contact, .results {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .section-heading { line-height: 1.04 !important; }
  .section-label { letter-spacing: 0.12em !important; }
  .pricing-card, .pricing-value-stack, .payment-flow-block, .pricing-comparison, .pricing-trust-block,
  .teacher-card, .coach-card, .proof-artifact-card, .first-week-card, .contact-form, .faq-item {
    border-radius: var(--radius-xl) !important;
  }
}

/* --- final trust-card polish fix: wider cards, cleaner wraps, no weird letter stacking --- */
.pricing-trust-block {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr) !important;
  align-items: center !important;
}

.pricing-trust-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.9rem !important;
}

.pricing-trust-list li {
  min-height: 5.8rem !important;
  padding: 1rem 1rem 1rem 2.8rem !important;
  font-size: clamp(0.92rem, 0.88rem + 0.16vw, 1rem) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em;
  white-space: normal !important;
  text-wrap: pretty;
  overflow-wrap: break-word !important;
}

.pricing-trust-list li::before {
  left: 0.95rem !important;
}

html[lang='es'] .pricing-trust-list li {
  font-size: clamp(0.9rem, 0.86rem + 0.14vw, 0.97rem) !important;
  line-height: 1.32 !important;
}

@media (max-width: 1280px) {
  .pricing-trust-block {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }
  .pricing-trust-copy,
  .pricing-trust-copy .section-label,
  .pricing-trust-copy p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 760px) {
  .pricing-trust-list {
    grid-template-columns: 1fr !important;
  }
  .pricing-trust-list li {
    min-height: 0 !important;
  }
}

/* --- visual cleanup pass: trust cards + system panel balance --- */

/* Pricing trust cards: force wider cards so text never stacks awkwardly. */
.pricing-trust-block {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr) !important;
  align-items: start !important;
}

.pricing-trust-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  gap: 1rem !important;
  max-width: 760px !important;
  width: 100% !important;
  margin-left: auto !important;
}

.pricing-trust-list li {
  min-height: 0 !important;
  padding: 1.05rem 1rem 1.05rem 3rem !important;
  font-size: clamp(0.93rem, 0.9rem + 0.1vw, 1rem) !important;
  line-height: 1.34 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: balance;
}

.pricing-trust-list li::before {
  left: 1rem !important;
}

html[lang='es'] .pricing-trust-list {
  grid-template-columns: repeat(2, minmax(290px, 1fr)) !important;
}

html[lang='es'] .pricing-trust-list li {
  font-size: clamp(0.9rem, 0.88rem + 0.08vw, 0.97rem) !important;
  line-height: 1.35 !important;
}

@media (max-width: 1320px) {
  .pricing-trust-block {
    grid-template-columns: 1fr !important;
  }
  .pricing-trust-copy,
  .pricing-trust-copy .section-label,
  .pricing-trust-copy p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .pricing-trust-list {
    margin-inline: auto !important;
  }
}

@media (max-width: 760px) {
  .pricing-trust-list,
  html[lang='es'] .pricing-trust-list {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }
}

/* Home system section: make the question box feel less empty and center the bridge text better. */
.system-question-box {
  display: flex;
  flex-direction: column;
}

.system-questions {
  margin-bottom: 0 !important;
}

.system-bridge {
  margin-top: auto !important;
  margin-bottom: auto !important;
  padding-top: var(--space-7) !important;
  padding-bottom: var(--space-2) !important;
  max-width: 30rem;
  margin-inline: auto;
}

/* Make the right-side CTA area feel cleaner and keep the button text comfortably inside. */
.system-cta-row {
  max-width: 360px !important;
  width: 100% !important;
  flex-direction: column !important;
}

.system-cta-row .btn {
  width: 100% !important;
  flex: 0 0 auto !important;
}

.system-cta-row .btn-primary {
  min-height: 72px;
  padding-inline: 1.25rem !important;
  font-size: clamp(1rem, 0.96rem + 0.1vw, 1.08rem) !important;
  line-height: 1.18 !important;
}

.system-closing {
  justify-content: center !important;
}

.system-closing h3,
.system-closing p,
.system-final-line {
  max-width: 30rem !important;
}

/* ============================================================
   TYPOGRAPHY NORMALIZATION + FINAL RESPONSIVE POLISH
   Goal: English and Spanish feel consistent, premium, and readable.
   ============================================================ */

:root {
  --lm-hero-size: clamp(2.7rem, 5.8vw, 5.6rem);
  --lm-section-size: clamp(2rem, 3.8vw, 3.65rem);
  --lm-card-heading-size: clamp(1.15rem, 1rem + 0.5vw, 1.45rem);
}

html[lang='es'] {
  --lm-hero-size: clamp(2.35rem, 5vw, 4.85rem);
  --lm-section-size: clamp(1.85rem, 3.35vw, 3.2rem);
  --lm-card-heading-size: clamp(1.08rem, 0.98rem + 0.38vw, 1.32rem);
}

.hero-heading,
html[lang='es'] .hero-heading {
  font-size: var(--lm-hero-size) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
  text-wrap: balance;
}

.section-heading,
html[lang='es'] .section-heading {
  font-size: var(--lm-section-size) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
  text-wrap: balance;
}

/* Keep ornate display type for main brand moments only. Dense practical copy stays clean. */
.pricing-card,
.pricing-value-stack,
.payment-flow-block,
.pricing-comparison,
.pricing-trust-block,
.teacher-bio,
.teacher-conversion-copy,
.faq-answer,
.contact-form,
.form-helper,
.pricing-features,
.pricing-best-for,
.pricing-desc,
.payment-flow-steps,
.pricing-trust-list,
.proof-artifact-card,
.first-week-card {
  font-family: var(--font-body) !important;
}

.pricing-card .pricing-name,
.system-card h3,
.teacher-card h3,
.proof-artifact-card h3,
.first-week-card h3 {
  font-size: var(--lm-card-heading-size) !important;
  line-height: 1.14 !important;
}

/* Shorter CTA treatment: never let language length define the layout. */
.btn,
.btn-lg,
.pricing-card .btn,
.system-cta-row .btn,
.hero-ctas .btn,
.booking .btn,
.contact .btn {
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-align: center !important;
  line-height: 1.18 !important;
}

html[lang='es'] .btn,
html[lang='es'] .btn-lg {
  font-size: clamp(0.92rem, 0.88rem + 0.16vw, 1rem) !important;
}

/* Pricing trust block: replace cramped mini-cards with clean premium checklist rows. */
.pricing-trust-block {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr) !important;
  align-items: center !important;
  gap: clamp(1.5rem, 3vw, 2.75rem) !important;
}

.pricing-trust-copy {
  max-width: 460px !important;
  margin: 0 !important;
}

.pricing-trust-copy .section-label,
.pricing-trust-copy p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.pricing-trust-copy p {
  font-size: clamp(1.05rem, 1rem + 0.22vw, 1.22rem) !important;
  line-height: 1.65 !important;
}

.pricing-trust-list,
html[lang='es'] .pricing-trust-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.7rem !important;
  max-width: 560px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.pricing-trust-list li,
html[lang='es'] .pricing-trust-list li {
  width: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0.85rem 1rem 0.85rem 3rem !important;
  border-radius: var(--radius-lg) !important;
  font-size: clamp(0.98rem, 0.95rem + 0.08vw, 1.04rem) !important;
  line-height: 1.34 !important;
  letter-spacing: -0.01em !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: pretty;
}

.pricing-trust-list li::before {
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 1120px) {
  .pricing-trust-block {
    grid-template-columns: 1fr !important;
  }
  .pricing-trust-copy,
  .pricing-trust-copy .section-label,
  .pricing-trust-copy p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .pricing-trust-list,
  html[lang='es'] .pricing-trust-list {
    max-width: 680px !important;
    margin-inline: auto !important;
  }
}

/* Homepage system section: balance empty space and keep buttons/card text controlled. */
.system-path-panel {
  align-items: stretch !important;
}

.system-question-box {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 100% !important;
}

.system-questions {
  grid-template-columns: 1fr !important;
  max-width: 620px !important;
  margin-inline: auto !important;
}

.system-question-intro,
.system-bridge {
  text-align: center !important;
}

.system-bridge {
  margin-top: clamp(1.5rem, 3vw, 2.4rem) !important;
  margin-bottom: 0 !important;
  padding-top: clamp(1.25rem, 2.5vw, 2rem) !important;
  max-width: 30rem !important;
  line-height: 1.48 !important;
}

.system-closing {
  justify-content: center !important;
}

.system-closing h3,
.system-closing p,
.system-final-line {
  max-width: 30rem !important;
}

.system-cta-row {
  max-width: 340px !important;
  width: 100% !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
}

.system-cta-row .btn {
  width: 100% !important;
  flex: 0 0 auto !important;
  min-height: 3.4rem !important;
  padding-inline: 1rem !important;
}

.system-cta-row .btn-primary {
  min-height: 4.1rem !important;
}

@media (max-width: 640px) {
  .hero-heading,
  html[lang='es'] .hero-heading {
    font-size: clamp(2.25rem, 12vw, 3.9rem) !important;
  }
  .section-heading,
  html[lang='es'] .section-heading {
    font-size: clamp(1.8rem, 8.5vw, 2.8rem) !important;
  }
  .pricing-trust-list li,
  html[lang='es'] .pricing-trust-list li {
    padding: 0.9rem 0.9rem 0.9rem 2.85rem !important;
  }
}

/* Contact page conversion upgrade: clearer diagnosis/application flow. */
.contact-application .contact-hero-copy {
  max-width: 980px;
  margin: 0 auto var(--space-10);
  text-align: center;
}

.contact-application .section-heading {
  max-width: 920px;
  margin-inline: auto;
  text-wrap: balance;
}

.contact-application .section-sub {
  max-width: 760px;
  margin-inline: auto;
}

.contact-outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin-top: var(--space-8);
}

.contact-outcome-card,
.contact-application-card,
.contact-diagnosis-card,
.contact-fit-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.contact-outcome-card {
  padding: clamp(1rem, 2vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.contact-outcome-card strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text);
  line-height: 1.18;
}

.contact-outcome-card span {
  color: var(--color-text-muted);
  line-height: 1.55;
  font-size: var(--text-sm);
}

.contact-inner--application {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.contact-application-card {
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.form-intro {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-1);
}

.form-eyebrow,
.contact-card-kicker {
  margin: 0 0 0.35rem;
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-intro h2,
.contact-diagnosis-card h3,
.contact-fit-card h3 {
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.15;
  text-wrap: balance;
}

.form-intro h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 0.45rem;
}

.form-intro p:not(.form-eyebrow) {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.form-group select {
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}

.contact-aside--application {
  gap: var(--space-5);
}

.contact-diagnosis-card {
  background: linear-gradient(160deg, #3d1a05, #5a2d0c);
  color: #faf7f2;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-diagnosis-card h3 {
  color: #faf7f2;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  margin-bottom: var(--space-5);
}

.contact-diagnosis-card .contact-card-kicker,
.contact-diagnosis-card .contact-card-note {
  color: rgba(240,213,154,0.82);
}

.contact-number-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 var(--space-5);
  padding: 0;
}

.contact-number-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.contact-number-list span {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,169,77,0.2);
  border: 1px solid rgba(240,213,154,0.35);
  color: #f0d59a;
  font-weight: 800;
}

.contact-number-list strong {
  color: #faf7f2;
  line-height: 1.25;
}

.contact-card-note {
  line-height: 1.55;
  margin-bottom: var(--space-5);
}

.contact-diagnosis-card .btn-outline {
  border-color: rgba(240,213,154,0.6);
  color: #faf7f2;
  background: rgba(250,247,242,0.08);
}

.contact-diagnosis-card .btn-outline:hover {
  background: rgba(214,169,77,0.18);
}

.contact-fit-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-fit-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.contact-fit-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

.contact-fit-card li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-fit-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 900;
}

@media (max-width: 900px) {
  .contact-outcome-strip,
  .contact-inner--application,
  .form-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-application .contact-hero-copy {
    text-align: left;
  }
  .contact-application .section-sub,
  .contact-application .section-heading {
    margin-left: 0;
    margin-right: 0;
  }
  .contact-application-card,
  .contact-diagnosis-card,
  .contact-fit-card,
  .contact-email-card {
    border-radius: var(--radius-lg);
  }
  .contact-application .section-heading,
  html[lang='es'] .contact-application .section-heading {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }
}

/* ============================================================
   HOME CONVERSION PASS — TOM PROOF + DIRECT CALENDLY PATH
   ============================================================ */
.homepage-proof-callout {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(circle at top left, rgba(214,169,77,0.16), transparent 34rem),
    linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.proof-callout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: stretch;
}

.tom-proof-card,
.home-booking-card {
  border-radius: var(--radius-2xl);
  padding: clamp(1.35rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  min-width: 0;
  overflow-wrap: anywhere;
}

.tom-proof-card {
  background: linear-gradient(145deg, #3d1a05 0%, #5a2d0c 60%, #7a4018 100%);
  border: 1px solid rgba(240,213,154,0.22);
  color: #faf7f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.tom-proof-card::after {
  content: '“';
  position: absolute;
  right: clamp(1rem, 4vw, 2rem);
  top: -1.4rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 1;
  color: rgba(240,213,154,0.08);
  pointer-events: none;
}

.tom-proof-card .section-label,
.home-booking-card .section-label {
  margin-bottom: 0.25rem;
}

.tom-proof-card .section-label,
.tom-proof-card .testimonial-stars {
  color: #d6a94d;
}

.tom-proof-card blockquote {
  max-width: 760px;
  font-size: clamp(1.08rem, 0.95rem + 0.65vw, 1.55rem);
  line-height: 1.58;
  font-weight: 650;
  color: rgba(250,247,242,0.95);
  position: relative;
  z-index: 1;
}

.tom-proof-card blockquote em {
  color: #f0d59a;
  font-style: normal;
}

.tom-proof-card .testimonial-author {
  color: rgba(240,213,154,0.7);
  margin-top: 0.35rem;
  position: relative;
  z-index: 1;
}

.home-booking-card {
  background: rgba(250,247,242,0.78);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

[data-theme='dark'] .home-booking-card {
  background: rgba(26,15,5,0.86);
}

.home-booking-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.25rem + 2vw, 3rem);
  line-height: 1.08;
  color: var(--color-text);
  max-width: 12ch;
}

.home-booking-card p {
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 46ch;
}

.booking-proof-list {
  list-style: none;
  display: grid;
  gap: 0.72rem;
  margin: 0.25rem 0 0.5rem;
  padding: 0;
}

.booking-proof-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.35;
  max-width: none;
}

.booking-proof-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.04rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,169,77,0.18);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 900;
}

.home-booking-card .btn {
  align-self: flex-start;
  margin-top: 0.15rem;
}

.booking-mini-note {
  font-size: var(--text-xs);
  font-weight: 650;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

.booking-outcomes {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 auto 1.5rem;
}

.booking-outcomes div {
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  box-shadow: var(--shadow-sm);
  text-align: center;
  min-width: 0;
}

.booking-outcomes strong,
.booking-outcomes span {
  display: block;
}

.booking-outcomes strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.92rem + 0.3vw, 1.22rem);
  color: var(--color-text);
  margin-bottom: 0.18rem;
}

.booking-outcomes span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .proof-callout-grid {
    grid-template-columns: 1fr;
  }

  .home-booking-card h2 {
    max-width: 18ch;
  }

  .booking-outcomes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .homepage-proof-callout {
    padding-block: 2.75rem;
  }

  .tom-proof-card,
  .home-booking-card {
    border-radius: var(--radius-xl);
    padding: 1.2rem;
  }

  .tom-proof-card blockquote {
    font-size: clamp(1rem, 4.3vw, 1.2rem);
    line-height: 1.55;
  }

  .home-booking-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    max-width: 100%;
  }

  .home-booking-card .btn {
    align-self: stretch;
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}


/* ============================================================
   FINAL SENIOR AUDIT POLISH — conversion clarity + bilingual QA
   ============================================================ */

/* Full primary CTA language without nav overflow. */
.nav-actions .btn-primary {
  max-width: 16.75rem;
  padding-inline: clamp(0.85rem, 1.4vw, 1.15rem);
  font-size: clamp(0.72rem, 0.65rem + 0.22vw, 0.86rem);
  line-height: 1.15;
  text-align: center;
}

/* Remove the old proof-card fake UI feel and make the cards read like concrete proof. */
.proof-artifact-card {
  justify-content: flex-start;
  min-height: 13.5rem;
}
.proof-artifact-card p,
.teacher-conversion-copy span,
.comparison-mobile-card p,
.contact-outcome-card span,
.form-helper {
  overflow-wrap: break-word;
}

/* FAQ breathing room so long refund/cancellation copy never visually runs into the next question. */
.faq-list {
  gap: clamp(1rem, 1.8vw, 1.45rem) !important;
}
.faq-item {
  margin-bottom: 0.15rem;
}
.faq-item--refund {
  margin-bottom: clamp(0.65rem, 1.6vw, 1.15rem) !important;
}
.faq-item.open .faq-answer {
  max-height: 420px !important;
  padding-bottom: clamp(1.25rem, 2.5vw, 1.8rem) !important;
}
.faq-answer p {
  line-height: 1.78 !important;
}

/* Contact page: make the diagnosis promise visible before the application. */
.contact-positioning-note {
  max-width: 760px;
  margin: clamp(1rem, 2vw, 1.35rem) auto 0;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(214, 169, 77, 0.25);
  border-radius: var(--radius-xl);
  background: rgba(214, 169, 77, 0.08);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}
[data-theme='dark'] .contact-positioning-note {
  background: rgba(214, 169, 77, 0.12);
}

/* Mobile pricing comparison should prioritize readability over tables. */
@media (max-width: 760px) {
  .comparison-table-wrap { display: none !important; }
  .comparison-card-stack { display: grid !important; gap: 1rem !important; }
  .comparison-mobile-card {
    padding: 1.05rem !important;
    border-radius: var(--radius-xl);
  }
  .comparison-mobile-card h3 { font-size: clamp(1.05rem, 4.5vw, 1.35rem); }
  .comparison-mobile-card p { font-size: 0.98rem; }
}

/* Spanish copy can run longer; keep headings/cards balanced instead of spilling. */
html[lang='es'] .hero-heading,
html[lang='es'] .section-heading,
html[lang='es'] .pricing-card h3,
html[lang='es'] .teacher-name,
html[lang='es'] .contact-application-card h2 {
  overflow-wrap: normal;
  hyphens: auto;
}
html[lang='es'] .btn,
html[lang='es'] .nav-links a {
  letter-spacing: 0.005em;
}

/* ============================================================
   COACH-REVIEWED HOURLY PRICING — STANDALONE OFFER CARD
   Keeps custom requests handled cleanly without crowding the
   public starter, weekly, and monthly packs.
   ============================================================ */
.private-bundle-section {
  max-width: 1120px;
  margin: clamp(var(--space-8), 5vw, var(--space-14)) auto var(--space-10);
}

.private-bundle-card {
  border: 1.5px solid rgba(214, 169, 77, 0.32);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top right, rgba(214, 169, 77, 0.20), transparent 34%),
    linear-gradient(145deg, #2b1205, #4b2209 54%, #201005);
  box-shadow: 0 26px 70px rgba(61, 26, 5, 0.28);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: clamp(var(--space-6), 4vw, var(--space-10));
  align-items: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.private-bundle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.private-bundle-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bundle-main-copy,
.bundle-pricing-panel,
.bundle-feature-grid,
.bundle-cta-row {
  position: relative;
  z-index: 1;
}

.private-bundle-card .bundle-kicker {
  color: #d6a94d;
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.private-bundle-card .bundle-title {
  color: #faf7f2;
  font-family: var(--font-body) !important;
  font-size: clamp(2rem, 1.45rem + 2vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}

.private-bundle-card .bundle-intro {
  color: rgba(240, 213, 154, 0.86);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.16rem);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
  text-wrap: pretty;
}

.bundle-pricing-panel {
  border: 1px solid rgba(214, 169, 77, 0.30);
  border-radius: var(--radius-xl);
  background: rgba(15, 7, 2, 0.42);
  padding: clamp(var(--space-5), 3vw, var(--space-7));
  display: grid;
  gap: var(--space-4);
}

.bundle-price-large {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bundle-price-large span {
  color: #d6a94d;
  font-family: var(--font-body) !important;
  font-size: clamp(2.8rem, 2rem + 3vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.bundle-price-large small {
  color: rgba(250, 247, 242, 0.82);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bundle-save-pill {
  /* Legacy class kept harmless in case older cached markup loads. */
  width: fit-content;
  border-radius: var(--radius-md);
  background: rgba(214, 169, 77, 0.10);
  border: 1px solid rgba(214, 169, 77, 0.24);
  color: #faf7f2;
  font-size: var(--text-sm);
  font-weight: 800;
  padding: 0.72rem 0.85rem;
  line-height: 1.35;
}

.bundle-savings-note {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(214, 169, 77, 0.13), rgba(250, 247, 242, 0.045));
  border: 1px solid rgba(214, 169, 77, 0.24);
  border-left: 4px solid #d6a94d;
  padding: 0.82rem 0.92rem;
  display: grid;
  gap: 0.22rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bundle-savings-note span {
  color: rgba(240, 213, 154, 0.74);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-transform: uppercase;
}

.bundle-savings-note strong {
  color: #faf7f2;
  font-size: clamp(0.98rem, 0.9rem + 0.22vw, 1.08rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.bundle-pricing-panel p {
  color: rgba(240, 213, 154, 0.78);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin: 0;
  text-wrap: pretty;
}

.bundle-feature-grid {
  grid-column: 1 / -1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0;
}

.bundle-feature-grid li {
  border: 1px solid rgba(214, 169, 77, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(250, 247, 242, 0.07);
  padding: var(--space-4);
  display: grid;
  gap: var(--space-2);
  min-width: 0;
}

.bundle-feature-grid strong {
  color: #faf7f2;
  font-size: var(--text-sm);
  line-height: 1.25;
  font-weight: 900;
}

.bundle-feature-grid span {
  color: rgba(240, 213, 154, 0.76);
  font-size: var(--text-sm);
  line-height: 1.5;
  text-wrap: pretty;
}

.bundle-cta-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-1);
}

.bundle-cta-row .btn {
  margin: 0;
}

.bundle-cta-row span {
  color: rgba(240, 213, 154, 0.76);
  font-size: var(--text-sm);
  font-weight: 700;
}

html[lang='es'] .private-bundle-card .bundle-title {
  font-size: clamp(1.75rem, 1.25rem + 1.7vw, 3rem);
  line-height: 1.07;
}

html[lang='es'] .bundle-feature-grid strong,
html[lang='es'] .bundle-feature-grid span,
html[lang='es'] .bundle-pricing-panel p,
html[lang='es'] .bundle-savings-note strong,
html[lang='es'] .bundle-savings-note span,
html[lang='es'] .bundle-cta-row span {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .private-bundle-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .private-bundle-section {
    margin-top: var(--space-8);
  }

  .private-bundle-card {
    padding: var(--space-6);
  }

  .bundle-feature-grid {
    grid-template-columns: 1fr;
  }

  .bundle-cta-row,
  .bundle-cta-row .btn {
    width: 100%;
  }

  .bundle-cta-row .btn {
    justify-content: center;
  }
}


/* ============================================================
   SENIOR CONVERSION POLISH — pricing, FAQ, teachers, contact
   ============================================================ */
.teacher-assignment-panel {
  max-width: 1040px;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto clamp(2rem, 4vw, 3rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--color-border) 72%, var(--color-primary));
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top left, rgba(214,169,77,0.14), transparent 34%),
    linear-gradient(145deg, var(--color-bg), var(--color-surface-2));
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.teacher-assignment-kicker {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.teacher-assignment-panel h3 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: clamp(1.35rem, 1rem + 1.2vw, 2rem);
  line-height: 1.16;
  margin: 0 0 0.75rem;
}
.teacher-assignment-panel p {
  color: var(--color-text-muted);
  line-height: 1.72;
  margin: 0;
  text-wrap: pretty;
}
.teacher-assignment-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.teacher-assignment-list li {
  border: 1px solid color-mix(in srgb, var(--color-border) 78%, var(--color-primary));
  border-radius: var(--radius-lg);
  background: rgba(214,169,77,0.07);
  padding: 0.75rem 0.85rem;
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.private-bundle-section--featured {
  margin-top: clamp(2.5rem, 6vw, 4.5rem) !important;
  margin-bottom: clamp(2rem, 5vw, 4rem) !important;
}
.private-bundle-card--premium {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr) !important;
  align-items: stretch !important;
  padding: clamp(1.35rem, 4vw, 3rem) !important;
  gap: clamp(1.25rem, 3.5vw, 2.25rem) !important;
}
.private-bundle-card--premium::after {
  content: 'BEST VALUE';
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  border-radius: 999px;
  background: rgba(250,247,242,0.10);
  border: 1px solid rgba(214,169,77,0.28);
  color: rgba(250,247,242,0.84);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.38rem 0.6rem;
}
.private-bundle-card--premium .bundle-main-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bundle-summary-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.bundle-summary-list li {
  position: relative;
  color: rgba(250,247,242,0.90);
  line-height: 1.45;
  font-weight: 800;
  padding-left: 1.55rem;
  overflow-wrap: anywhere;
}
.bundle-summary-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #d6a94d;
  font-weight: 900;
}
.bundle-price-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
.bundle-price-compare div {
  border-radius: var(--radius-md);
  background: rgba(250,247,242,0.07);
  border: 1px solid rgba(214,169,77,0.18);
  padding: 0.75rem 0.85rem;
}
.bundle-price-compare span,
.bundle-price-compare strong {
  display: block;
}
.bundle-price-compare span {
  color: rgba(240,213,154,0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.bundle-price-compare strong {
  color: #faf7f2;
  font-size: 1rem;
  line-height: 1.2;
}
.private-bundle-card--premium .bundle-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.85rem !important;
}
.private-bundle-card--premium .bundle-feature-grid li {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 6.25rem;
}
.bundle-feature-icon {
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,169,77,0.18);
  color: #d6a94d;
  font-weight: 900;
  line-height: 1;
}
.private-bundle-card--premium .bundle-cta-row {
  border-top: 1px solid rgba(214,169,77,0.18);
  padding-top: 1.1rem !important;
}
html[lang='es'] .private-bundle-card--premium::after { content: 'MEJOR VALOR'; }

.comparison-card-stack { gap: 1rem !important; }
.comparison-mobile-card { padding: 1.2rem !important; }
.comparison-mobile-points {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.comparison-mobile-points li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-text);
  font-weight: 750;
  line-height: 1.35;
}
.comparison-mobile-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 900;
}

/* FAQ must breathe enough that long answers never appear joined to the next question. */
.faq-list { gap: clamp(1rem, 2vw, 1.35rem) !important; }
.faq-item { margin-bottom: 0 !important; overflow: hidden; }
.faq-question { padding-block: clamp(1rem, 2.5vw, 1.35rem) !important; }
.faq-answer { padding: 0 clamp(1rem, 3vw, 1.35rem) !important; }
.faq-item.open .faq-answer { padding-bottom: clamp(1.25rem, 3vw, 1.75rem) !important; }
.faq-item--refund.open { margin-bottom: clamp(0.45rem, 1.5vw, 0.8rem) !important; }

/* Contact application reads like a premium diagnostic, not a dense generic form. */
.contact-application-card { gap: 1.05rem !important; }
.form-section-label {
  margin: 0.35rem 0 0.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid color-mix(in srgb, var(--color-border) 78%, var(--color-primary));
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-grid-two { gap: clamp(0.9rem, 2.4vw, 1.25rem) !important; }
.form-group { gap: 0.45rem !important; }
.form-group input,
.form-group textarea,
.form-group select { min-height: 3.15rem; }

@media (max-width: 980px) {
  .teacher-assignment-panel,
  .private-bundle-card--premium { grid-template-columns: 1fr !important; }
  .private-bundle-card--premium::after { position: static; width: fit-content; margin-bottom: -0.25rem; }
}
@media (max-width: 720px) {
  .teacher-assignment-list,
  .private-bundle-card--premium .bundle-feature-grid { grid-template-columns: 1fr !important; }
  .private-bundle-card--premium .bundle-feature-grid li { min-height: 0; }
  .bundle-save-pill,
  .bundle-savings-note { width: 100%; }
  .bundle-price-large span { font-size: clamp(2.55rem, 18vw, 4rem) !important; }
}
@media (max-width: 480px) {
  .teacher-assignment-panel,
  .private-bundle-card--premium { padding: 1.1rem !important; }
  .private-bundle-card--premium .bundle-title { font-size: clamp(1.85rem, 11vw, 2.65rem) !important; }
  .bundle-summary-list li,
  .bundle-feature-grid span,
  .bundle-pricing-panel p,
  .bundle-cta-row span { font-size: 0.94rem !important; }
}


/* ============================================================
   FINAL SENIOR POLISH — premium bundle, FAQ breathing, CTA clarity
   ============================================================ */
.private-bundle-card--premium {
  overflow: hidden;
}

.private-bundle-card--premium .bundle-pricing-panel {
  border-radius: clamp(1.1rem, 2vw, 1.75rem) !important;
  background:
    linear-gradient(180deg, rgba(26, 10, 2, 0.94), rgba(58, 24, 8, 0.82)) !important;
  border: 1px solid rgba(214, 169, 77, 0.24) !important;
  box-shadow: inset 0 1px 0 rgba(250, 247, 242, 0.08), 0 22px 56px rgba(0,0,0,0.22) !important;
}

.private-bundle-card--premium .bundle-savings-note {
  width: 100% !important;
  border-radius: var(--radius-lg) !important;
  background: rgba(214, 169, 77, 0.085) !important;
  border: 1px solid rgba(214, 169, 77, 0.24) !important;
  border-left: 3px solid rgba(214, 169, 77, 0.82) !important;
  padding: 0.9rem 1rem !important;
  box-shadow: none !important;
}

.private-bundle-card--premium .bundle-savings-note span,
.private-bundle-card--premium .bundle-price-compare span {
  letter-spacing: 0.12em !important;
}

.private-bundle-card--premium .bundle-savings-note strong {
  color: #faf7f2 !important;
  font-size: clamp(0.98rem, 0.92rem + 0.22vw, 1.1rem) !important;
  line-height: 1.32 !important;
}

.private-bundle-card--premium .bundle-price-compare div {
  background: rgba(250,247,242,0.055) !important;
  border-color: rgba(214,169,77,0.16) !important;
}

.private-bundle-card--premium .bundle-feature-grid strong,
.private-bundle-card--premium .bundle-feature-grid span {
  display: block;
}

.private-bundle-card--premium .bundle-feature-grid strong {
  margin-bottom: 0.28rem;
}

.private-bundle-card--premium .bundle-cta-row {
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 0.85rem 1.2rem !important;
}

.private-bundle-card--premium .bundle-cta-row .btn {
  flex: 0 1 auto;
}

.private-bundle-card--premium .bundle-trust-note,
.private-bundle-card--premium .bundle-cta-row span {
  display: block !important;
  max-width: 26rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.055);
  border: 1px solid rgba(214,169,77,0.16);
  line-height: 1.35 !important;
}

/* Make FAQ items visually separate even when an answer is long. */
.faq-list {
  gap: clamp(1.15rem, 2.4vw, 1.65rem) !important;
}
.faq-item {
  border-radius: var(--radius-xl) !important;
}
.faq-item.open .faq-answer {
  padding-bottom: clamp(1.55rem, 3.4vw, 2.15rem) !important;
}
.faq-item.open + .faq-item {
  margin-top: clamp(0.25rem, 1vw, 0.45rem) !important;
}
.faq-answer p::after {
  content: '';
  display: block;
  height: 0.2rem;
}

/* Keep the teacher policy clear without making it feel like students are shopping teachers. */
.teacher-assignment-panel {
  background:
    radial-gradient(circle at top left, rgba(214,169,77,0.12), transparent 34%),
    linear-gradient(145deg, var(--color-surface), var(--color-surface-2)) !important;
}
.teacher-assignment-list li:last-child {
  border-color: color-mix(in srgb, var(--color-primary) 42%, var(--color-border)) !important;
  background: color-mix(in srgb, var(--color-primary) 10%, transparent) !important;
}

/* Contact form breathing room for the diagnostic application flow. */
.contact-application-card .form-group + .form-section-label,
.contact-application-card .form-grid-two + .form-section-label {
  margin-top: 0.75rem !important;
}
.contact-application-card textarea {
  min-height: 8.5rem !important;
}

@media (max-width: 980px) {
  .private-bundle-card--premium .bundle-cta-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .private-bundle-card--premium .bundle-cta-row .btn,
  .private-bundle-card--premium .bundle-trust-note,
  .private-bundle-card--premium .bundle-cta-row span {
    width: 100%;
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .private-bundle-card--premium .bundle-price-large span {
    font-size: clamp(2.65rem, 17vw, 3.8rem) !important;
  }
  .private-bundle-card--premium .bundle-savings-note,
  .private-bundle-card--premium .bundle-price-compare div,
  .private-bundle-card--premium .bundle-trust-note,
  .private-bundle-card--premium .bundle-cta-row span {
    border-radius: var(--radius-md) !important;
  }
}


/* ============================================================
   SURGEON PASS — pricing bundle cleanup + FAQ/contact polish
   Removes duplicate bundle content, makes pricing stats premium,
   and keeps CTA/trust note separated on all screen sizes.
   ============================================================ */
.private-bundle-card--premium {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr) !important;
  align-items: stretch !important;
  gap: clamp(1.35rem, 3.6vw, 2.6rem) !important;
  overflow: hidden !important;
}

.private-bundle-card--premium .bundle-main-copy {
  justify-content: center !important;
  min-width: 0;
}

.private-bundle-card--premium .bundle-intro {
  max-width: 42rem !important;
}

.private-bundle-card--premium .bundle-summary-list {
  gap: clamp(0.65rem, 1.3vw, 0.9rem) !important;
  margin-top: clamp(1.1rem, 2vw, 1.35rem) !important;
}

.private-bundle-card--premium .bundle-summary-list li {
  background: rgba(250,247,242,0.055) !important;
  border: 1px solid rgba(214,169,77,0.16) !important;
  border-radius: 0.95rem !important;
  padding: 0.82rem 0.9rem 0.82rem 2.35rem !important;
  color: rgba(250,247,242,0.92) !important;
  font-weight: 780 !important;
  line-height: 1.38 !important;
}

.private-bundle-card--premium .bundle-summary-list li::before {
  left: 0.92rem !important;
  top: 0.82rem !important;
}

.private-bundle-card--premium .bundle-pricing-panel {
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: clamp(0.9rem, 2vw, 1.1rem) !important;
  min-width: 0 !important;
  padding: clamp(1.15rem, 3vw, 1.65rem) !important;
}

.private-bundle-card--premium .bundle-price-large {
  padding-bottom: clamp(0.65rem, 1.4vw, 0.9rem) !important;
  border-bottom: 1px solid rgba(214,169,77,0.18) !important;
}

.private-bundle-card--premium .bundle-price-large span {
  font-size: clamp(3.25rem, 7vw, 5.25rem) !important;
  letter-spacing: -0.075em !important;
}

.private-bundle-card--premium .bundle-price-large small {
  letter-spacing: 0.12em !important;
}

.private-bundle-card--premium .bundle-price-compare {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.72rem !important;
}

.private-bundle-card--premium .bundle-price-compare div {
  padding: 0.95rem 1rem !important;
  border-radius: 0.95rem !important;
  background: rgba(250,247,242,0.06) !important;
  border: 1px solid rgba(214,169,77,0.17) !important;
  box-shadow: none !important;
}

.private-bundle-card--premium .bundle-price-compare .bundle-advantage-card {
  background: linear-gradient(135deg, rgba(214,169,77,0.13), rgba(250,247,242,0.055)) !important;
  border-left: 3px solid rgba(214,169,77,0.78) !important;
}

.private-bundle-card--premium .bundle-price-compare span {
  display: block !important;
  color: rgba(240,213,154,0.72) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.28rem !important;
}

.private-bundle-card--premium .bundle-price-compare strong {
  display: block !important;
  color: #faf7f2 !important;
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.12rem) !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

.private-bundle-card--premium .bundle-pricing-panel p {
  margin: 0 !important;
  padding-top: 0.05rem !important;
  color: rgba(240,213,154,0.77) !important;
  line-height: 1.58 !important;
  font-size: 0.95rem !important;
}

.private-bundle-card--premium .bundle-cta-row {
  display: grid !important;
  gap: 0.68rem !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  border-top: 1px solid rgba(214,169,77,0.18) !important;
  padding-top: clamp(0.85rem, 1.8vw, 1rem) !important;
  margin-top: 0.1rem !important;
}

.private-bundle-card--premium .bundle-cta-row .btn {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: normal !important;
}

.private-bundle-card--premium .bundle-trust-note,
.private-bundle-card--premium .bundle-cta-row span {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: rgba(240,213,154,0.68) !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

/* Hide any older cached duplicate feature grid if it slips into a page. */
.private-bundle-card--premium .bundle-feature-grid {
  display: none !important;
}

/* FAQ: stronger item separation and enough room for long bilingual answers. */
.faq-list {
  gap: clamp(1.35rem, 3vw, 2rem) !important;
}
.faq-item {
  box-shadow: 0 12px 34px rgba(0,0,0,0.10) !important;
  overflow: hidden !important;
}
.faq-question {
  padding: clamp(1.05rem, 2.8vw, 1.45rem) clamp(1rem, 3.2vw, 1.45rem) !important;
}
.faq-answer {
  padding-inline: clamp(1rem, 3.2vw, 1.45rem) !important;
}
.faq-item.open .faq-answer {
  max-height: 1000px !important;
  padding-bottom: clamp(1.55rem, 3.8vw, 2.35rem) !important;
}
.faq-item--refund {
  margin-bottom: clamp(0.35rem, 1.5vw, 0.7rem) !important;
}
.faq-answer p {
  line-height: 1.82 !important;
  margin-bottom: 0 !important;
}

/* Contact: premium breathing room between diagnostic form groups. */
.contact-application-card {
  gap: clamp(1.05rem, 2.3vw, 1.45rem) !important;
}
.contact-application-card .form-grid-two {
  gap: clamp(1rem, 2.8vw, 1.45rem) !important;
}
.contact-application-card .form-group {
  gap: 0.55rem !important;
}
.contact-application-card .form-section-label {
  margin-top: clamp(0.75rem, 2vw, 1rem) !important;
}

@media (max-width: 980px) {
  .private-bundle-card--premium {
    grid-template-columns: 1fr !important;
  }
  .private-bundle-card--premium .bundle-pricing-panel {
    max-width: none !important;
  }
}

@media (max-width: 560px) {
  .private-bundle-card--premium {
    padding: clamp(1rem, 5vw, 1.25rem) !important;
  }
  .private-bundle-card--premium .bundle-title {
    font-size: clamp(2rem, 11vw, 2.85rem) !important;
  }
  .private-bundle-card--premium .bundle-price-large span {
    font-size: clamp(3.1rem, 19vw, 4.25rem) !important;
  }
  .private-bundle-card--premium .bundle-summary-list li {
    padding-left: 2.15rem !important;
  }
}

/* FINAL PRECISION PASS — pricing CTA separation + FAQ breathing room */
.private-bundle-card--premium .bundle-cta-block {
  display: grid !important;
  gap: clamp(0.72rem, 1.8vw, 0.95rem) !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  border-top: 1px solid rgba(214,169,77,0.18) !important;
  padding-top: clamp(0.95rem, 2vw, 1.15rem) !important;
  margin-top: 0.15rem !important;
}

.private-bundle-card--premium .bundle-cta-block .btn {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: normal !important;
}

.private-bundle-card--premium .bundle-cta-block .bundle-trust-note {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0.72rem 0.85rem !important;
  border: 1px solid rgba(240,213,154,0.14) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.045) !important;
  color: rgba(240,213,154,0.72) !important;
  font-size: 0.88rem !important;
  line-height: 1.48 !important;
  text-align: center !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-cta-block .bundle-trust-note {
  color: rgba(61,26,5,0.72) !important;
  background: rgba(255,255,255,0.72) !important;
  border-color: rgba(61,26,5,0.12) !important;
}

/* Keep any older bundle-cta-row styles from affecting this final CTA block. */
.private-bundle-card--premium .bundle-cta-row { display: none !important; }

/* FAQ: final breathing-room override for long refund/cancellation answers. */
.faq-list {
  gap: clamp(1.65rem, 3.5vw, 2.35rem) !important;
}

.faq-item {
  margin-bottom: 0 !important;
  border-radius: 22px !important;
}

.faq-item.open {
  overflow: visible !important;
}

.faq-item.open .faq-answer {
  max-height: 1200px !important;
  padding: 0 clamp(1.15rem, 3.4vw, 1.6rem) clamp(2rem, 4.2vw, 2.8rem) !important;
}

.faq-answer p {
  line-height: 1.86 !important;
  margin: 0 !important;
}

.faq-item.open .faq-answer::after {
  content: '';
  display: block;
  height: 1px;
  width: min(100%, 560px);
  margin: clamp(1.2rem, 2.6vw, 1.65rem) auto 0;
  background: linear-gradient(90deg, transparent, rgba(214,169,77,0.35), transparent);
}

.faq-item--refund {
  margin-bottom: clamp(0.85rem, 2.2vw, 1.35rem) !important;
}

.faq-item--refund.open + .faq-item {
  margin-top: clamp(0.75rem, 2vw, 1.2rem) !important;
}

@media (max-width: 640px) {
  .private-bundle-card--premium .bundle-cta-block .bundle-trust-note {
    font-size: 0.86rem !important;
    padding: 0.7rem 0.75rem !important;
  }

  .faq-list {
    gap: 1.35rem !important;
  }

  .faq-item.open .faq-answer {
    padding-bottom: 2.15rem !important;
  }
}

/* =========================================================
   MASTER SURGEON PASS — final structural pricing + FAQ fix
   ========================================================= */
.private-bundle-card--premium .bundle-pricing-panel {
  display: grid !important;
  align-content: start !important;
  gap: clamp(1rem, 2.2vw, 1.35rem) !important;
  padding: clamp(1.15rem, 2.6vw, 1.65rem) !important;
}

.private-bundle-card--premium .bundle-price-stats {
  display: grid !important;
  gap: 0.72rem !important;
  margin: 0 !important;
}

.private-bundle-card--premium .bundle-stat {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 0.75rem !important;
  align-items: center !important;
  padding: 0.82rem 0.92rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(240,213,154,0.14) !important;
  background: rgba(255,255,255,0.055) !important;
}

.private-bundle-card--premium .bundle-stat--advantage {
  border-color: rgba(214,169,77,0.3) !important;
  background: linear-gradient(135deg, rgba(214,169,77,0.15), rgba(255,255,255,0.055)) !important;
}

.private-bundle-card--premium .bundle-stat dt,
.private-bundle-card--premium .bundle-stat dd {
  margin: 0 !important;
  line-height: 1.32 !important;
}

.private-bundle-card--premium .bundle-stat dt {
  color: rgba(240,213,154,0.72) !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.075em !important;
}

.private-bundle-card--premium .bundle-stat dd {
  color: #fff4d6 !important;
  font-size: 0.96rem !important;
  font-weight: 900 !important;
  text-align: right !important;
}

.private-bundle-card--premium .bundle-body-note {
  margin: 0 !important;
  padding: 0.9rem 1rem !important;
  border-radius: 16px !important;
  background: rgba(61,26,5,0.34) !important;
  border: 1px solid rgba(240,213,154,0.12) !important;
  color: rgba(240,213,154,0.78) !important;
  font-size: 0.9rem !important;
  line-height: 1.62 !important;
}

.private-bundle-card--premium .bundle-cta-block {
  display: grid !important;
  gap: 0.72rem !important;
  align-items: stretch !important;
  margin-top: 0.05rem !important;
}

.private-bundle-card--premium .bundle-cta-block .btn,
.private-bundle-card--premium .bundle-cta-button {
  width: 100% !important;
  min-height: 52px !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  white-space: normal !important;
}

.private-bundle-card--premium .bundle-trust-note {
  display: block !important;
  margin: 0 !important;
  padding: 0.82rem 0.9rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(240,213,154,0.12) !important;
  background: rgba(0,0,0,0.16) !important;
  color: rgba(240,213,154,0.72) !important;
  font-size: 0.86rem !important;
  font-weight: 650 !important;
  line-height: 1.48 !important;
  text-align: center !important;
}

.private-bundle-card--premium .trust-check {
  color: #d6a94d !important;
  font-weight: 900 !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-stat {
  background: rgba(255,255,255,0.72) !important;
  border-color: rgba(61,26,5,0.11) !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-stat--advantage {
  background: linear-gradient(135deg, rgba(214,169,77,0.18), rgba(255,255,255,0.78)) !important;
  border-color: rgba(192,94,0,0.2) !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-stat dt,
[data-theme='light'] .private-bundle-card--premium .bundle-body-note,
[data-theme='light'] .private-bundle-card--premium .bundle-trust-note {
  color: rgba(61,26,5,0.72) !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-stat dd {
  color: #3d1a05 !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-body-note,
[data-theme='light'] .private-bundle-card--premium .bundle-trust-note {
  background: rgba(255,255,255,0.72) !important;
  border-color: rgba(61,26,5,0.11) !important;
}

.faq-list.faq-list--carded {
  display: grid !important;
  gap: clamp(1.15rem, 2.6vw, 1.65rem) !important;
  max-width: 820px !important;
}

.faq-list--carded .faq-item {
  display: block !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(240,213,154,0.16) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,0.18) !important;
}

.faq-list--carded .faq-item.open {
  overflow: visible !important;
  border-color: rgba(214,169,77,0.44) !important;
}

.faq-list--carded .faq-question {
  padding: clamp(1.15rem, 2.5vw, 1.45rem) clamp(1.1rem, 3vw, 1.65rem) !important;
}

.faq-list--carded .faq-answer {
  padding: 0 clamp(1.1rem, 3vw, 1.65rem) !important;
}

.faq-list--carded .faq-item.open .faq-answer {
  max-height: 1200px !important;
  padding-bottom: clamp(1.55rem, 3.8vw, 2.35rem) !important;
}

.faq-list--carded .faq-answer-inner {
  display: block !important;
  padding-top: clamp(0.65rem, 1.8vw, 0.95rem) !important;
  border-top: 1px solid rgba(240,213,154,0.13) !important;
}

.faq-list--carded .faq-answer p {
  margin: 0 !important;
  max-width: 68ch !important;
  font-size: 0.98rem !important;
  line-height: 1.86 !important;
}

.faq-list--carded .faq-item--refund {
  margin-bottom: clamp(0.35rem, 1.4vw, 0.75rem) !important;
}

.faq-list--carded .faq-item--refund + .faq-item {
  margin-top: clamp(0.35rem, 1.4vw, 0.75rem) !important;
}

[data-theme='light'] .faq-list--carded .faq-item {
  box-shadow: 0 14px 34px rgba(61,26,5,0.07) !important;
  border-color: rgba(61,26,5,0.1) !important;
}

[data-theme='light'] .faq-list--carded .faq-answer-inner {
  border-top-color: rgba(61,26,5,0.11) !important;
}

@media (max-width: 720px) {
  .private-bundle-card--premium .bundle-stat {
    grid-template-columns: 1fr !important;
    gap: 0.28rem !important;
    text-align: left !important;
  }
  .private-bundle-card--premium .bundle-stat dd {
    text-align: left !important;
  }
  .private-bundle-card--premium .bundle-price-stats {
    gap: 0.62rem !important;
  }
  .faq-list.faq-list--carded {
    gap: 1rem !important;
  }
}


/* FINAL MICRO SURGEON PASS — pricing stats, FAQ separation, mobile hero image spacing */
.private-bundle-card--premium .bundle-stat {
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: clamp(0.8rem, 2vw, 1.2rem) !important;
  row-gap: 0.35rem !important;
}

.private-bundle-card--premium .bundle-stat dt {
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
  gap: 0.25rem !important;
}

.private-bundle-card--premium .bundle-stat-label {
  min-width: 0 !important;
}

.private-bundle-card--premium .bundle-stat-divider {
  display: inline-block !important;
  color: rgba(240,213,154,0.45) !important;
  flex: 0 0 auto !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-stat-divider {
  color: rgba(61,26,5,0.35) !important;
}

.faq-transition-label {
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  margin: clamp(0.45rem, 1.8vw, 0.85rem) 0 clamp(0.1rem, 0.8vw, 0.25rem) !important;
  padding: 0.42rem 0.72rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(240,213,154,0.16) !important;
  background: rgba(240,213,154,0.07) !important;
  color: rgba(240,213,154,0.72) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

[data-theme='light'] .faq-transition-label {
  border-color: rgba(61,26,5,0.12) !important;
  background: rgba(61,26,5,0.05) !important;
  color: rgba(61,26,5,0.64) !important;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    align-items: flex-start !important;
  }
  .hero-inner {
    padding-top: calc(64px + var(--space-5)) !important;
    padding-bottom: var(--space-12) !important;
  }
  .hero-content-wrap {
    gap: var(--space-5) !important;
    margin-bottom: var(--space-7, 1.75rem) !important;
  }
  .hero-img-col {
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding-top: calc(58px + var(--space-4)) !important;
  }
  .hero-content-wrap {
    gap: var(--space-4) !important;
  }
  .hero-monkey-img {
    max-width: min(235px, 72vw) !important;
  }
  .private-bundle-card--premium .bundle-stat {
    grid-template-columns: 1fr !important;
    gap: 0.3rem !important;
  }
  .private-bundle-card--premium .bundle-stat-divider {
    display: none !important;
  }
}


/* FINAL LIVE POLISH — hard text-flow separation for pricing stats + FAQ cancellation block */
.private-bundle-card--premium .bundle-price-stats--text {
  display: grid !important;
  gap: 0.72rem !important;
  margin: 0 !important;
}

.private-bundle-card--premium .bundle-price-stats--text .bundle-stat {
  display: block !important;
  margin: 0 !important;
  padding: 0.86rem 0.96rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(240,213,154,0.14) !important;
  background: rgba(255,255,255,0.055) !important;
  color: #fff4d6 !important;
  font-size: 0.95rem !important;
  font-weight: 850 !important;
  line-height: 1.45 !important;
  letter-spacing: -0.01em !important;
}

.private-bundle-card--premium .bundle-price-stats--text .bundle-stat--advantage {
  border-color: rgba(214,169,77,0.3) !important;
  background: linear-gradient(135deg, rgba(214,169,77,0.15), rgba(255,255,255,0.055)) !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-price-stats--text .bundle-stat {
  color: #3d1a05 !important;
  background: rgba(255,255,255,0.72) !important;
  border-color: rgba(61,26,5,0.11) !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-price-stats--text .bundle-stat--advantage {
  background: linear-gradient(135deg, rgba(214,169,77,0.18), rgba(255,255,255,0.78)) !important;
  border-color: rgba(192,94,0,0.2) !important;
}

.faq-section-break {
  display: block !important;
  height: 1px !important;
  width: 100% !important;
  margin: clamp(0.95rem, 2.5vw, 1.45rem) 0 clamp(0.15rem, 1vw, 0.35rem) !important;
  background: linear-gradient(90deg, transparent, rgba(240,213,154,0.28), transparent) !important;
}

.faq-list--carded .faq-item--cancel {
  margin-top: clamp(0.25rem, 1.3vw, 0.65rem) !important;
}

.faq-list--carded .faq-item--refund .faq-answer-inner p::after {
  content: '';
  display: block;
  height: 0.5rem;
}

@media (max-width: 720px) {
  .private-bundle-card--premium .bundle-price-stats--text .bundle-stat {
    font-size: 0.9rem !important;
    padding: 0.78rem 0.84rem !important;
  }
  .faq-section-break {
    margin-top: 1.15rem !important;
  }
}


/* HARD STRUCTURAL FIX — final pricing-stat + FAQ text-flow guard */
.private-bundle-card--premium .bundle-price-stats--text .bundle-stat {
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}
.private-bundle-card--premium .bundle-cta-block {
  display: grid !important;
  gap: 0.72rem !important;
  align-items: start !important;
}
.private-bundle-card--premium .bundle-trust-note {
  display: block !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}
.faq-transition-label {
  display: block !important;
  margin: clamp(0.8rem, 2vw, 1.2rem) 0 clamp(0.6rem, 1.6vw, 0.95rem) !important;
  padding: 0.72rem 0.95rem !important;
  border-radius: 999px !important;
  width: fit-content !important;
  max-width: 100% !important;
}
.faq-item--refund {
  margin-bottom: clamp(1.15rem, 2.6vw, 1.85rem) !important;
}
.faq-item--cancel {
  margin-top: clamp(0.75rem, 2vw, 1.25rem) !important;
}


/* Coach section audit polish: keep longer coach-role badges clean on mobile and Spanish mode. */
.coach-card .teacher-badge {
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
}

/* ============================================================
   FOUNDER STORY — homepage teaser + dedicated page
   ============================================================ */
.founder-teaser {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(214,169,77,0.14), transparent 32%),
    linear-gradient(135deg, var(--color-surface), var(--color-surface-2));
  border-top: 1px solid rgba(122,64,24,0.12);
  border-bottom: 1px solid rgba(122,64,24,0.12);
}

.founder-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.founder-teaser .section-heading,
.founder-story-hero .section-heading {
  color: var(--color-brown-deep);
  max-width: 900px;
}

.founder-teaser-actions,
.founder-story-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.founder-teaser-card,
.story-proof-card,
.story-side-card,
.story-closing-card {
  border: 1px solid rgba(201, 106, 10, 0.28);
  border-radius: var(--radius-2xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(245,223,192,0.72));
  box-shadow: var(--shadow-lg);
}

.founder-teaser-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
}

.founder-teaser-card::before,
.story-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #d6a94d, #8f5018, #7a4018);
}

.founder-card-kicker,
.story-proof-kicker,
.story-side-kicker {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.founder-teaser-card blockquote,
.story-proof-card blockquote {
  color: var(--color-brown-deep);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.founder-teaser-card p:last-child,
.story-proof-card p:last-child {
  color: var(--color-text-muted);
}

.founder-story-hero {
  padding: calc(var(--space-24) + 80px) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 80% 18%, rgba(214,169,77,0.18), transparent 34%),
    radial-gradient(circle at 10% 10%, rgba(61,26,5,0.08), transparent 34%),
    linear-gradient(135deg, var(--color-bg), var(--color-surface-2));
}

.founder-story-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.founder-story-hero-copy .section-sub {
  max-width: 760px;
}

.story-proof-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.story-proof-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(61,26,5,0.16);
  margin-bottom: 1.25rem;
}

.founder-story-body {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--color-bg);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.26fr) minmax(0, 0.74fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: start;
}

.story-side-card {
  position: sticky;
  top: 112px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.story-side-card h2 {
  color: var(--color-brown-deep);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  margin-bottom: 1rem;
}

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

.story-side-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.story-side-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  color: #1e1208;
  background: linear-gradient(135deg, #d6a94d, #c99a3d);
  font-size: 0.85rem;
  flex: 0 0 auto;
}

.story-letter {
  padding: clamp(1.75rem, 4vw, 3.25rem);
  border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(247,243,236,0.92));
  border: 1px solid rgba(122,64,24,0.14);
  box-shadow: var(--shadow-md);
}

.story-letter p {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 0.75vw + 0.82rem, 1.13rem);
  line-height: 1.78;
  margin-bottom: 1.05rem;
  max-width: 78ch;
}

.story-letter p:first-child::first-letter {
  color: var(--color-primary);
  float: left;
  font-family: var(--font-display);
  font-size: 4.1rem;
  line-height: 0.88;
  padding-right: 0.38rem;
}

.story-signature {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(122,64,24,0.18);
}

.story-signature p {
  color: var(--color-brown-deep);
  font-weight: 800;
  margin: 0;
}

.founder-story-closing {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: linear-gradient(135deg, var(--color-brown-deep), var(--color-brown-rich));
}

.story-closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(145deg, rgba(250,247,242,0.96), rgba(245,223,192,0.96));
}

.story-closing-card h2 {
  color: var(--color-brown-deep);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  margin-bottom: 0.65rem;
}

.story-closing-card p {
  color: var(--color-text-muted);
}

[data-theme='dark'] .founder-teaser,
[data-theme='dark'] .founder-story-body {
  background: linear-gradient(135deg, var(--color-bg), var(--color-surface-2));
}

[data-theme='dark'] .founder-teaser .section-heading,
[data-theme='dark'] .founder-story-hero .section-heading,
[data-theme='dark'] .story-side-card h2,
[data-theme='dark'] .story-signature p {
  color: var(--color-text);
}

[data-theme='dark'] .founder-teaser-card,
[data-theme='dark'] .story-proof-card,
[data-theme='dark'] .story-side-card,
[data-theme='dark'] .story-letter,
[data-theme='dark'] .story-closing-card {
  background: linear-gradient(145deg, rgba(33,20,8,0.96), rgba(18,10,3,0.94));
  border-color: rgba(214,169,77,0.28);
}

[data-theme='dark'] .founder-teaser-card blockquote,
[data-theme='dark'] .story-proof-card blockquote,
[data-theme='dark'] .story-closing-card h2 {
  color: var(--color-gold-light);
}

[data-theme='dark'] .story-closing-card p,
[data-theme='dark'] .story-letter p,
[data-theme='dark'] .story-side-list li,
[data-theme='dark'] .founder-teaser-card p:last-child,
[data-theme='dark'] .story-proof-card p:last-child {
  color: var(--color-text-muted);
}

@media (max-width: 920px) {
  .founder-teaser-grid,
  .founder-story-hero-grid,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-side-card {
    position: relative;
    top: auto;
  }

  .story-closing-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .founder-teaser-actions,
  .founder-story-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .founder-teaser-actions .btn,
  .founder-story-hero-actions .btn,
  .story-closing-card .btn {
    width: 100%;
  }

  .story-letter p:first-child::first-letter {
    float: none;
    font-size: inherit;
    line-height: inherit;
    padding-right: 0;
  }
}

/* ============================================================
   FOUNDER STORY NAV CLEARANCE FIX — 2026-05-16
   Keeps the first story line safely below the fixed blurred nav
   without adding a heavy blank gap.
   ============================================================ */
body[data-page='founder-story'] .nav {
  background: rgba(250, 247, 242, 0.92);
  box-shadow: 0 8px 26px rgba(61, 26, 5, 0.08);
}

body[data-page='founder-story'] .founder-story-hero {
  padding-top: calc(var(--space-24) + 104px);
}

[data-theme='dark'] body[data-page='founder-story'] .nav {
  background: rgba(26, 15, 5, 0.92);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  body[data-page='founder-story'] .founder-story-hero {
    padding-top: calc(86px + var(--space-12));
  }
}


/* ============================================================
   FOUNDER STORY VIDEO BRIDGE — English teaching certification
   Adds the old founder-card video into the story without breaking
   the letter feel or crowding the page.
   ============================================================ */
.story-video-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  margin: clamp(2rem, 4vw, 3rem) 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 106, 10, 0.24);
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 169, 77, 0.14), transparent 35%),
    linear-gradient(145deg, rgba(250, 247, 242, 0.96), rgba(245, 223, 192, 0.62));
  box-shadow: var(--shadow-md);
}

.story-video-kicker {
  color: var(--color-primary) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em;
  line-height: 1.4 !important;
  margin-bottom: 0.7rem !important;
  text-transform: uppercase;
}

.story-video-copy h2 {
  color: var(--color-brown-deep);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
  margin-bottom: 0.85rem;
}

.story-video-copy p:last-child {
  margin-bottom: 0;
}

.story-video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background: #1e1208;
  box-shadow: 0 14px 34px rgba(61, 26, 5, 0.18);
}

.story-video-wrap::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.story-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-video-fallback {
  position: absolute;
  left: -9999px;
}

[data-theme='dark'] .story-video-card {
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 169, 77, 0.14), transparent 35%),
    linear-gradient(145deg, rgba(33,20,8,0.96), rgba(18,10,3,0.94));
  border-color: rgba(214,169,77,0.28);
}

[data-theme='dark'] .story-video-copy h2 {
  color: var(--color-gold-light);
}

@media (max-width: 840px) {
  .story-video-card {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   FOUNDER STORY REFINEMENT — 2026-05-16
   Fixes the cramped teaching-video section and tightens story flow.
   ============================================================ */
.story-letter {
  overflow: hidden;
}

.story-video-card {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.story-video-copy {
  max-width: 780px;
}

.story-video-copy h2 {
  max-width: 680px;
}

.story-video-copy p:last-child {
  max-width: 76ch;
}

.story-video-wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 1100px) {
  .story-letter {
    padding-left: clamp(2rem, 3vw, 3rem);
    padding-right: clamp(2rem, 3vw, 3rem);
  }
}

@media (max-width: 1100px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-side-card {
    position: relative;
    top: auto;
  }
}

/* Pricing: public page uses starter, weekly, monthly, and written custom-request options. */
.pricing-card--coming-soon {
  position: relative;
  overflow: hidden;
  border-style: dashed;
  background: linear-gradient(180deg, rgba(214,169,77,0.08), var(--color-surface));
}

.pricing-card--coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(214,169,77,0.16), transparent 42%);
}

.pricing-card--coming-soon > * {
  position: relative;
  z-index: 1;
}


.pricing-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--space-4);
}

.pricing-status-row .pricing-coming-soon-badge {
  margin-bottom: 0;
}

.pricing-waitlist-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(111, 78, 55, 0.24);
  background: rgba(111, 78, 55, 0.08);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-price--waitlist {
  color: var(--color-text);
}

.pricing-waitlist-btn {
  margin-top: auto;
}

.form-group--wide {
  grid-column: 1 / -1;
}

[data-theme='dark'] .pricing-waitlist-badge {
  border-color: rgba(214, 169, 77, 0.28);
  background: rgba(214, 169, 77, 0.08);
  color: var(--color-gold-light);
}

.pricing-coming-soon-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(214,169,77,0.35);
  background: rgba(214,169,77,0.14);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-price--paused {
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 0.1em;
  text-decoration-color: var(--color-primary);
  opacity: 0.76;
}

.pricing-paused-note {
  margin: var(--space-4) 0 0;
  padding: 0.8rem 0.95rem;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  background: rgba(214,169,77,0.12);
  color: var(--color-text-muted);
  font-weight: 700;
  line-height: 1.45;
}

.btn-disabled,
.btn-disabled:hover,
.btn-disabled:focus {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.72;
  box-shadow: none;
  transform: none;
}

[data-theme='dark'] .pricing-card--coming-soon {
  background: linear-gradient(180deg, rgba(214,169,77,0.1), var(--color-surface));
}

[data-theme='dark'] .pricing-paused-note {
  background: rgba(214,169,77,0.1);
  color: var(--color-gold-light);
}

/* ============================================================
   SENIOR REFINEMENT — Pricing group waitlist card
   Makes the coming-soon card feel rich/premium instead of cheap gold.
   Also prevents the featured-plan badge from crowding the card content.
   ============================================================ */
.pricing-card--coming-soon {
  border-style: solid !important;
  border-color: color-mix(in srgb, var(--color-gold-light) 38%, var(--color-border)) !important;
  background:
    radial-gradient(circle at 88% 0%, rgba(214,169,77,0.18), transparent 36%),
    linear-gradient(158deg, #f7f0e2 0%, #efe1c6 52%, #e5d0a9 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    0 16px 42px rgba(61,26,5,0.11) !important;
}

.pricing-card--coming-soon::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.20), transparent 32%),
    radial-gradient(circle at top right, rgba(214,169,77,0.13), transparent 44%) !important;
}

.pricing-card--coming-soon .pricing-tier,
.pricing-card--coming-soon .pricing-price,
.pricing-card--coming-soon .pricing-features li::before {
  color: #a95d08 !important;
}

.pricing-card--coming-soon .pricing-name {
  color: #2b1809 !important;
}

.pricing-card--coming-soon .pricing-price span,
.pricing-card--coming-soon .pricing-desc,
.pricing-card--coming-soon .pricing-features li,
.pricing-card--coming-soon .pricing-price-note {
  color: #6f4e25 !important;
}

.pricing-status-row {
  gap: 0.65rem !important;
  margin-bottom: 1.35rem !important;
}

.pricing-card--coming-soon .pricing-coming-soon-badge,
.pricing-card--coming-soon .pricing-waitlist-badge {
  min-height: 0 !important;
  padding: 0.46rem 0.86rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(89,49,10,0.2) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.34), rgba(214,169,77,0.14)) !important;
  color: #8b4c06 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38) !important;
  line-height: 1.28 !important;
}

.pricing-card--coming-soon .pricing-waitlist-badge {
  background: rgba(89,49,10,0.08) !important;
  color: #704113 !important;
}

.pricing-card--coming-soon .pricing-best-for,
.pricing-card--coming-soon .pricing-paused-note {
  border: 1px solid rgba(169,93,8,0.22) !important;
  border-left: 4px solid #a95d08 !important;
  background: rgba(255,255,255,0.22) !important;
  color: #5d3714 !important;
}

.pricing-card--coming-soon .pricing-waitlist-btn {
  border-color: rgba(169,93,8,0.55) !important;
  color: #6f3d05 !important;
  background: rgba(255,255,255,0.18) !important;
}

.pricing-card--coming-soon .pricing-waitlist-btn:hover,
.pricing-card--coming-soon .pricing-waitlist-btn:focus-visible {
  background: linear-gradient(135deg, #d6a94d, #c99a3d) !important;
  border-color: #f0d59a !important;
  color: #1e1208 !important;
}

[data-theme='dark'] .pricing-card--coming-soon {
  border-color: rgba(232,192,80,0.38) !important;
  background:
    radial-gradient(circle at 86% 0%, rgba(214,169,77,0.24), transparent 36%),
    linear-gradient(155deg, #3b2108 0%, #251306 48%, #160b03 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(240,213,154,0.09),
    0 18px 48px rgba(0,0,0,0.34),
    0 0 0 1px rgba(240,213,154,0.04) !important;
}

[data-theme='dark'] .pricing-card--coming-soon::before {
  background:
    linear-gradient(120deg, rgba(240,213,154,0.07), transparent 34%),
    radial-gradient(circle at top right, rgba(214,169,77,0.16), transparent 43%) !important;
}

[data-theme='dark'] .pricing-card--coming-soon .pricing-tier,
[data-theme='dark'] .pricing-card--coming-soon .pricing-price,
[data-theme='dark'] .pricing-card--coming-soon .pricing-features li::before {
  color: #d6a94d !important;
}

[data-theme='dark'] .pricing-card--coming-soon .pricing-name {
  color: #faf7f2 !important;
}

[data-theme='dark'] .pricing-card--coming-soon .pricing-price span,
[data-theme='dark'] .pricing-card--coming-soon .pricing-desc,
[data-theme='dark'] .pricing-card--coming-soon .pricing-features li,
[data-theme='dark'] .pricing-card--coming-soon .pricing-price-note {
  color: rgba(240,213,154,0.74) !important;
}

[data-theme='dark'] .pricing-card--coming-soon .pricing-coming-soon-badge,
[data-theme='dark'] .pricing-card--coming-soon .pricing-waitlist-badge {
  border-color: rgba(240,213,154,0.24) !important;
  background:
    linear-gradient(135deg, rgba(214,169,77,0.18), rgba(232,192,80,0.08)) !important;
  color: #f0d59a !important;
  box-shadow: inset 0 1px 0 rgba(240,213,154,0.11) !important;
}

[data-theme='dark'] .pricing-card--coming-soon .pricing-waitlist-badge {
  background: rgba(240,213,154,0.065) !important;
  color: #e8c97a !important;
}

[data-theme='dark'] .pricing-card--coming-soon .pricing-best-for,
[data-theme='dark'] .pricing-card--coming-soon .pricing-paused-note {
  border-color: rgba(214,169,77,0.25) !important;
  border-left-color: #d6a94d !important;
  background: rgba(214,169,77,0.075) !important;
  color: rgba(240,213,154,0.84) !important;
}

[data-theme='dark'] .pricing-card--coming-soon .pricing-waitlist-btn {
  border-color: rgba(214,169,77,0.42) !important;
  color: #f0d59a !important;
  background: rgba(214,169,77,0.06) !important;
}

[data-theme='dark'] .pricing-card--coming-soon .pricing-waitlist-btn:hover,
[data-theme='dark'] .pricing-card--coming-soon .pricing-waitlist-btn:focus-visible {
  background: linear-gradient(135deg, #d6a94d, #c99a3d) !important;
  border-color: #f0d59a !important;
  color: #1e1208 !important;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pricing-card--coming-soon {
    border-color: rgba(232,192,80,0.38) !important;
    background:
      radial-gradient(circle at 86% 0%, rgba(214,169,77,0.24), transparent 36%),
      linear-gradient(155deg, #3b2108 0%, #251306 48%, #160b03 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(240,213,154,0.09),
      0 18px 48px rgba(0,0,0,0.34),
      0 0 0 1px rgba(240,213,154,0.04) !important;
  }

  :root:not([data-theme]) .pricing-card--coming-soon .pricing-name {
    color: #faf7f2 !important;
  }

  :root:not([data-theme]) .pricing-card--coming-soon .pricing-tier,
  :root:not([data-theme]) .pricing-card--coming-soon .pricing-price,
  :root:not([data-theme]) .pricing-card--coming-soon .pricing-features li::before {
    color: #d6a94d !important;
  }

  :root:not([data-theme]) .pricing-card--coming-soon .pricing-price span,
  :root:not([data-theme]) .pricing-card--coming-soon .pricing-desc,
  :root:not([data-theme]) .pricing-card--coming-soon .pricing-features li,
  :root:not([data-theme]) .pricing-card--coming-soon .pricing-price-note {
    color: rgba(240,213,154,0.74) !important;
  }
  :root:not([data-theme]) .pricing-card--coming-soon .pricing-coming-soon-badge,
  :root:not([data-theme]) .pricing-card--coming-soon .pricing-waitlist-badge {
    border-color: rgba(240,213,154,0.24) !important;
    background: linear-gradient(135deg, rgba(214,169,77,0.18), rgba(232,192,80,0.08)) !important;
    color: #f0d59a !important;
    box-shadow: inset 0 1px 0 rgba(240,213,154,0.11) !important;
  }

  :root:not([data-theme]) .pricing-card--coming-soon .pricing-best-for,
  :root:not([data-theme]) .pricing-card--coming-soon .pricing-paused-note {
    border-color: rgba(214,169,77,0.25) !important;
    border-left-color: #d6a94d !important;
    background: rgba(214,169,77,0.075) !important;
    color: rgba(240,213,154,0.84) !important;
  }

  :root:not([data-theme]) .pricing-card--coming-soon .pricing-waitlist-btn {
    border-color: rgba(214,169,77,0.42) !important;
    color: #f0d59a !important;
    background: rgba(214,169,77,0.06) !important;
  }

}

.pricing-card--featured {
  padding-top: clamp(4rem, 7vw, 4.85rem) !important;
}

.pricing-featured-badge {
  top: -1.05rem !important;
  max-width: min(230px, calc(100% - 2.5rem)) !important;
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.18 !important;
  padding: 0.55rem 1.05rem !important;
}

@media (max-width: 720px) {
  .pricing-card--featured {
    padding-top: 3.9rem !important;
  }

  .pricing-featured-badge {
    max-width: min(220px, calc(100% - 2rem)) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.08em !important;
  }
}

/* ============================================================
   FOUNDER STORY — teaching proof refinement
   Moves David's English-learning testimonial into the origin story
   so it supports Bryan's teaching credibility without confusing
   the current Spanish offer.
   ============================================================ */
.story-teaching-proof {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.85rem);
  margin: clamp(2.15rem, 4vw, 3.25rem) 0;
}

.story-teaching-proof .story-video-card {
  margin: 0;
}

.story-video-card--david {
  border-color: rgba(111, 78, 55, 0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(214,169,77,0.13), transparent 34%),
    linear-gradient(145deg, rgba(255,252,246,0.98), rgba(242,226,196,0.72));
}

.story-video-card--david .story-video-kicker {
  color: #9f5a08 !important;
}

.story-david-quote {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.45rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  background: rgba(214,169,77,0.095);
  color: var(--color-brown-deep);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.18rem);
  line-height: 1.58;
}

.story-david-note {
  margin: 0 !important;
  padding-top: 0.25rem;
  color: var(--color-text-muted) !important;
  font-size: var(--text-base) !important;
  line-height: 1.7 !important;
  max-width: 78ch;
}

[data-theme='dark'] .story-video-card--david {
  border-color: rgba(214,169,77,0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(214,169,77,0.14), transparent 34%),
    linear-gradient(145deg, rgba(34,20,8,0.97), rgba(18,10,3,0.94));
}

[data-theme='dark'] .story-david-quote {
  background: rgba(214,169,77,0.075);
  color: var(--color-gold-light);
}

[data-theme='dark'] .story-david-note {
  color: rgba(240,213,154,0.76) !important;
}

@media (min-width: 1180px) {
  .story-video-card--david .story-video-copy,
  .story-video-card--teaching .story-video-copy {
    max-width: 820px;
  }
}

@media (max-width: 640px) {
  .story-david-quote {
    font-family: var(--font-body);
    font-weight: 700;
  }
}


/* ============================================================
   PRIVATE CHECKOUT + WELCOME PAGES
   ============================================================ */

.private-page-hero {
  padding-top: calc(var(--space-24) + 88px);
  padding-bottom: var(--space-16);
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 192, 80, 0.18), transparent 34%),
    linear-gradient(180deg, var(--color-bg), var(--color-surface-2));
}

.private-checkout-grid,
.welcome-student-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  align-items: stretch;
}

.private-checkout-copy,
.welcome-student-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
}

.private-checkout-copy h1,
.welcome-student-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  color: var(--color-brown-deep);
  max-width: 11ch;
}

.private-checkout-lead,
.welcome-lead {
  font-size: clamp(1.05rem, 1.2vw, 1.3rem);
  color: var(--color-text-muted);
  max-width: 62ch;
}

.private-access-note,
.welcome-highlight-card {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  max-width: 720px;
  padding: var(--space-4) var(--space-5);
  border: 1px solid rgba(201, 186, 160, 0.78);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.private-access-note span,
.welcome-highlight-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #5a2d0c, #8b4b16);
  color: var(--color-gold-light);
  font-size: 0.9rem;
}

.private-access-note p,
.welcome-highlight-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-weight: 600;
}

.checkout-summary-card,
.welcome-side-card {
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border: 1px solid rgba(232, 192, 80, 0.42);
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(145deg, rgba(61,26,5,0.96), rgba(90,45,12,0.92)),
    radial-gradient(circle at top right, rgba(232,192,80,0.22), transparent 40%);
  color: #fff6e6;
  box-shadow: 0 24px 70px rgba(61, 26, 5, 0.24);
}

.summary-kicker,
.checkout-plan-tier {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-gold-light);
}

.checkout-summary-card h2,
.welcome-side-card h2 {
  margin-top: var(--space-2);
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  font-family: var(--font-display);
  color: #fff6e6;
}

.checkout-clean-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.checkout-clean-list li {
  position: relative;
  padding-left: var(--space-7, 1.75rem);
  color: rgba(255, 246, 230, 0.88);
}

.checkout-clean-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold-light);
  font-weight: 900;
}

.checkout-plans-section,
.checkout-flow-section,
.checkout-policy-section,
.welcome-next-section {
  padding-block: var(--space-16);
}

.checkout-section-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  align-items: end;
  margin-bottom: var(--space-8);
}

.checkout-section-head h2,
.checkout-flow-copy h2,
.checkout-policy-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--color-brown-deep);
}

.checkout-section-head p,
.checkout-flow-copy p,
.checkout-policy-card p {
  color: var(--color-text-muted);
}

.checkout-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.checkout-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(var(--space-6), 2.8vw, var(--space-8));
  border: 1px solid rgba(201, 186, 160, 0.74);
  border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, var(--color-surface), var(--color-surface-2));
  box-shadow: var(--shadow-md);
}

.checkout-plan-card--featured {
  border-color: rgba(184, 113, 37, 0.52);
  box-shadow: 0 20px 58px rgba(201,106,10,0.18);
}

.checkout-plan-card--bundle {
  border-color: rgba(232, 192, 80, 0.58);
  background:
    linear-gradient(180deg, var(--color-surface), var(--color-primary-highlight)),
    radial-gradient(circle at top right, rgba(232,192,80,0.16), transparent 32%);
}

.checkout-plan-badge {
  align-self: flex-start;
  margin-bottom: var(--space-4);
  padding: 0.42rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #3d1a05;
  color: var(--color-gold-light);
}

.checkout-plan-badge--warm {
  background: linear-gradient(135deg, #7a4018, #8f5018);
  color: #fff6e6;
}

.checkout-plan-badge--outline {
  background: transparent;
  color: var(--color-brown-rich);
  border: 1px solid rgba(90,45,12,0.28);
}

.checkout-plan-card h3 {
  margin-top: var(--space-2);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  color: var(--color-brown-deep);
}

.checkout-plan-price {
  margin: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  color: var(--color-brown-rich);
  line-height: 1;
}

.checkout-plan-price span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.checkout-plan-card p {
  color: var(--color-text-muted);
}

.checkout-plan-features {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.checkout-plan-features li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--color-text);
  font-size: var(--text-sm);
}

.checkout-plan-features li::before {
  content: '•';
  position: absolute;
  left: 0.28rem;
  color: var(--color-primary);
  font-size: 1.3rem;
  line-height: 1;
}

.checkout-btn {
  margin-top: auto;
  width: 100%;
}

.checkout-btn--disabled {
  cursor: not-allowed;
  opacity: 0.68;
  pointer-events: none;
  filter: grayscale(0.12);
}

.checkout-waitlist-note,
.checkout-policy-card,
.welcome-contact-strip {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: center;
  margin-top: var(--space-8);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 186, 160, 0.76);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.checkout-waitlist-note h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--color-brown-deep);
}

.checkout-waitlist-note p,
.welcome-contact-strip p {
  color: var(--color-text-muted);
}

.checkout-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: var(--space-8);
  align-items: start;
}

.checkout-flow-steps {
  display: grid;
  gap: var(--space-4);
  counter-reset: checkoutStep;
}

.checkout-flow-steps li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.checkout-flow-steps span,
.welcome-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #3d1a05, #7a4018);
  color: var(--color-gold-light);
  font-weight: 900;
  font-size: var(--text-sm);
}

.checkout-flow-steps p {
  margin: 0;
  color: var(--color-text-muted);
  font-weight: 600;
}

.checkout-policy-section {
  padding-top: 0;
}

.checkout-policy-card {
  align-items: flex-start;
  background:
    linear-gradient(145deg, rgba(61,26,5,0.96), rgba(90,45,12,0.94)),
    radial-gradient(circle at bottom right, rgba(232,192,80,0.18), transparent 38%);
  color: #fff6e6;
}

.checkout-policy-card h2 {
  color: #fff6e6;
}

.checkout-policy-card p {
  color: rgba(255, 246, 230, 0.84);
}

.checkout-policy-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.welcome-next-section {
  background: linear-gradient(180deg, transparent, var(--color-surface-2));
}

.welcome-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}

.welcome-step-card {
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 186, 160, 0.74);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.welcome-step-card span {
  margin-bottom: var(--space-4);
  min-width: 2.75rem;
  height: 2.75rem;
}

.welcome-step-card h3 {
  color: var(--color-brown-deep);
  margin-bottom: var(--space-2);
}

.welcome-step-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 1020px) {
  .checkout-plan-grid,
  .welcome-step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-section-head,
  .checkout-flow-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 780px) {
  .private-page-hero {
    padding-top: calc(var(--space-20) + 76px);
  }

  .private-checkout-grid,
  .welcome-student-grid,
  .checkout-plan-grid,
  .welcome-step-grid {
    grid-template-columns: 1fr;
  }

  .checkout-waitlist-note,
  .checkout-policy-card,
  .welcome-contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-policy-actions {
    justify-content: flex-start;
  }

  .private-checkout-copy h1,
  .welcome-student-copy h1 {
    max-width: 12ch;
  }
}

.checkout-summary-card .btn-outline,
.welcome-side-card .btn-outline,
.checkout-policy-card .btn-outline,
.checkout-policy-card .btn-ghost {
  border-color: rgba(240, 213, 154, 0.58);
  color: #fff6e6;
  background: rgba(255, 246, 230, 0.06);
}

.checkout-summary-card .btn-outline:hover,
.welcome-side-card .btn-outline:hover,
.checkout-policy-card .btn-outline:hover,
.checkout-policy-card .btn-ghost:hover {
  background: rgba(214, 169, 77, 0.16);
  border-color: var(--color-gold-light);
}


/* ============================================================
   WELCOME PAGE — premium celebratory polish pass
   ============================================================ */
body[data-page='welcome-student'] {
  overflow-x: hidden;
}

body[data-page='welcome-student'] .private-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--space-24) + 96px);
  padding-bottom: clamp(var(--space-16), 8vw, 7rem);
  background:
    radial-gradient(circle at 9% 14%, rgba(240, 213, 154, 0.34), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(183, 121, 36, 0.26), transparent 22rem),
    linear-gradient(135deg, #fffaf0 0%, #f7efe1 46%, #eadcc3 100%);
}

body[data-page='welcome-student'] .welcome-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.72;
}

body[data-page='welcome-student'] .welcome-glow-one {
  width: 18rem;
  height: 18rem;
  left: -6rem;
  top: 8rem;
  background: radial-gradient(circle, rgba(232, 192, 80, 0.28), transparent 68%);
}

body[data-page='welcome-student'] .welcome-glow-two {
  width: 22rem;
  height: 22rem;
  right: -8rem;
  top: 5rem;
  background: radial-gradient(circle, rgba(90, 45, 12, 0.14), transparent 64%);
}

body[data-page='welcome-student'] .welcome-celebration-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

body[data-page='welcome-student'] .welcome-celebration-copy {
  gap: var(--space-4);
}

body[data-page='welcome-student'] .welcome-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-1);
}

body[data-page='welcome-student'] .welcome-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.82rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(90, 45, 12, 0.2);
  background: linear-gradient(135deg, #4f2609, #8a4d19 58%, #b77924);
  color: #fff8ea;
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(90, 45, 12, 0.18);
}

body[data-page='welcome-student'] .welcome-status-pill::before {
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #f3d88e;
  box-shadow: 0 0 0 5px rgba(240, 213, 154, 0.18);
}

body[data-page='welcome-student'] .welcome-status-pill--light {
  background: rgba(255, 250, 240, 0.78);
  color: #4f2609;
  border-color: rgba(183, 121, 36, 0.34);
  box-shadow: 0 10px 24px rgba(90, 45, 12, 0.08);
}

body[data-page='welcome-student'] .welcome-status-pill--light::before {
  background: #b77924;
  box-shadow: 0 0 0 5px rgba(183, 121, 36, 0.12);
}

body[data-page='welcome-student'] .welcome-student-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.75rem, 7vw, 5.9rem);
  line-height: 0.96;
  color: #3d1a05;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}

body[data-page='welcome-student'] .welcome-lead {
  max-width: 66ch;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  color: #5f4322;
}

body[data-page='welcome-student'] .welcome-highlight-card--celebration {
  position: relative;
  overflow: hidden;
  border-color: rgba(183, 121, 36, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(247, 239, 225, 0.98));
  box-shadow: 0 18px 48px rgba(90, 45, 12, 0.13);
}

body[data-page='welcome-student'] .welcome-highlight-card--celebration::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #f0d59a, #b77924, #7a4018);
}

body[data-page='welcome-student'] .welcome-highlight-card--celebration span {
  background: linear-gradient(145deg, #3d1a05, #7a4018 58%, #b77924);
  box-shadow: 0 12px 28px rgba(90, 45, 12, 0.18);
}

body[data-page='welcome-student'] .welcome-highlight-card--celebration p {
  color: #4f3214;
}

body[data-page='welcome-student'] .welcome-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.btn-secondary {
  border: 1px solid rgba(90, 45, 12, 0.22);
  background: rgba(255, 250, 240, 0.76);
  color: #4f2609;
  box-shadow: 0 8px 22px rgba(90, 45, 12, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(183, 121, 36, 0.45);
  background: #fff7e8;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(90, 45, 12, 0.12);
}

body[data-page='welcome-student'] .welcome-celebration-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-color: rgba(240, 213, 154, 0.38);
  background:
    radial-gradient(circle at 84% 6%, rgba(240, 213, 154, 0.24), transparent 15rem),
    linear-gradient(145deg, #2b1204 0%, #4f2609 46%, #7a4018 100%);
  box-shadow: 0 30px 85px rgba(61, 26, 5, 0.32);
}

body[data-page='welcome-student'] .welcome-celebration-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), transparent 34%),
    radial-gradient(circle at 24% 20%, rgba(240,213,154,0.12), transparent 12rem);
}

body[data-page='welcome-student'] .welcome-celebration-card > * {
  position: relative;
  z-index: 1;
}

body[data-page='welcome-student'] .celebration-orbit {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid rgba(240, 213, 154, 0.2);
  border-radius: 50%;
}

body[data-page='welcome-student'] .celebration-orbit span {
  position: absolute;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #f0d59a;
  box-shadow: 0 0 18px rgba(240, 213, 154, 0.56);
}

body[data-page='welcome-student'] .celebration-orbit span:nth-child(1) { top: -0.25rem; left: 50%; }
body[data-page='welcome-student'] .celebration-orbit span:nth-child(2) { right: 0.35rem; bottom: 0.6rem; opacity: 0.78; }
body[data-page='welcome-student'] .celebration-orbit span:nth-child(3) { left: 0.25rem; bottom: 0.95rem; opacity: 0.58; }

body[data-page='welcome-student'] .welcome-side-card h2 {
  max-width: 10ch;
}

body[data-page='welcome-student'] .welcome-side-intro {
  margin-top: var(--space-3);
  color: rgba(255, 246, 230, 0.82);
  font-weight: 650;
}

body[data-page='welcome-student'] .welcome-mini-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin: var(--space-6) 0;
}

body[data-page='welcome-student'] .welcome-mini-step {
  position: relative;
  min-width: 0;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 213, 154, 0.18);
  background: rgba(255, 246, 230, 0.07);
  text-align: center;
}

body[data-page='welcome-student'] .welcome-mini-step.is-complete {
  background: rgba(240, 213, 154, 0.16);
  border-color: rgba(240, 213, 154, 0.38);
}

body[data-page='welcome-student'] .welcome-mini-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0d59a, #b77924);
  color: #2b1204;
  font-weight: 900;
  font-size: 0.78rem;
}

body[data-page='welcome-student'] .welcome-mini-step p {
  margin: 0;
  color: rgba(255, 246, 230, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

body[data-page='welcome-student'] .welcome-confirm-list {
  margin-bottom: 0;
}

body[data-page='welcome-student'] .welcome-next-section {
  background:
    linear-gradient(180deg, #f7efe1 0%, var(--color-surface-2) 56%, var(--color-bg) 100%);
}

body[data-page='welcome-student'] .welcome-section-head {
  align-items: end;
}

body[data-page='welcome-student'] .welcome-section-head h2 {
  color: #3d1a05;
}

body[data-page='welcome-student'] .welcome-step-grid--premium {
  gap: clamp(var(--space-4), 2vw, var(--space-6));
}

body[data-page='welcome-student'] .welcome-step-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(183, 121, 36, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(247, 243, 236, 0.98));
  box-shadow: 0 16px 44px rgba(90, 45, 12, 0.09);
}

body[data-page='welcome-student'] .welcome-step-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #3d1a05, #b77924, #f0d59a);
  opacity: 0.7;
}

body[data-page='welcome-student'] .welcome-step-card span {
  background: linear-gradient(145deg, #3d1a05, #7a4018 60%, #b77924);
  color: #fff8ea;
  box-shadow: 0 10px 22px rgba(90, 45, 12, 0.16);
}

body[data-page='welcome-student'] .welcome-step-card h3 {
  color: #3d1a05;
}

body[data-page='welcome-student'] .welcome-step-card p {
  color: #684a28;
}

body[data-page='welcome-student'] .welcome-dopamine-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding: clamp(var(--space-6), 3.4vw, var(--space-10));
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(240, 213, 154, 0.38);
  background:
    radial-gradient(circle at 90% 12%, rgba(240, 213, 154, 0.22), transparent 15rem),
    linear-gradient(135deg, #3d1a05, #5a2d0c 48%, #7a4018);
  box-shadow: 0 26px 76px rgba(61, 26, 5, 0.24);
  color: #fff8ea;
}

body[data-page='welcome-student'] .welcome-strip-kicker {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: #f0d59a;
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page='welcome-student'] .welcome-dopamine-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  color: #fff8ea;
}

body[data-page='welcome-student'] .welcome-dopamine-strip p {
  margin-top: var(--space-2);
  color: rgba(255, 246, 230, 0.84);
  font-weight: 600;
}

body[data-page='welcome-student'] .welcome-help-strip {
  margin-top: var(--space-5);
  background: rgba(255, 250, 240, 0.86);
  border-color: rgba(183, 121, 36, 0.18);
}

[data-theme='dark'] body[data-page='welcome-student'] .private-page-hero,
body[data-page='welcome-student'][data-theme='dark'] .private-page-hero {
  background:
    radial-gradient(circle at 10% 16%, rgba(240, 213, 154, 0.12), transparent 23rem),
    radial-gradient(circle at 90% 18%, rgba(183, 121, 36, 0.18), transparent 21rem),
    linear-gradient(135deg, #120a03 0%, #1a0f05 48%, #251506 100%);
}

[data-theme='dark'] body[data-page='welcome-student'] .welcome-status-pill--light,
body[data-page='welcome-student'][data-theme='dark'] .welcome-status-pill--light,
[data-theme='dark'] body[data-page='welcome-student'] .welcome-highlight-card--celebration,
body[data-page='welcome-student'][data-theme='dark'] .welcome-highlight-card--celebration,
[data-theme='dark'] body[data-page='welcome-student'] .btn-secondary,
body[data-page='welcome-student'][data-theme='dark'] .btn-secondary {
  background: rgba(37, 21, 6, 0.82);
  border-color: rgba(240, 213, 154, 0.24);
  color: #f0d59a;
}

[data-theme='dark'] body[data-page='welcome-student'] .welcome-student-copy h1,
body[data-page='welcome-student'][data-theme='dark'] .welcome-student-copy h1,
[data-theme='dark'] body[data-page='welcome-student'] .welcome-section-head h2,
body[data-page='welcome-student'][data-theme='dark'] .welcome-section-head h2 {
  color: #fff1d6;
  text-shadow: none;
}

[data-theme='dark'] body[data-page='welcome-student'] .welcome-lead,
body[data-page='welcome-student'][data-theme='dark'] .welcome-lead,
[data-theme='dark'] body[data-page='welcome-student'] .welcome-highlight-card--celebration p,
body[data-page='welcome-student'][data-theme='dark'] .welcome-highlight-card--celebration p {
  color: #d8bc86;
}

[data-theme='dark'] body[data-page='welcome-student'] .welcome-next-section,
body[data-page='welcome-student'][data-theme='dark'] .welcome-next-section {
  background: linear-gradient(180deg, #1a0f05 0%, #211408 58%, #120a03 100%);
}

[data-theme='dark'] body[data-page='welcome-student'] .welcome-step-card,
body[data-page='welcome-student'][data-theme='dark'] .welcome-step-card,
[data-theme='dark'] body[data-page='welcome-student'] .welcome-help-strip,
body[data-page='welcome-student'][data-theme='dark'] .welcome-help-strip {
  background: rgba(26, 15, 5, 0.92);
  border-color: rgba(240, 213, 154, 0.18);
}

[data-theme='dark'] body[data-page='welcome-student'] .welcome-step-card h3,
body[data-page='welcome-student'][data-theme='dark'] .welcome-step-card h3 {
  color: #fff1d6;
}

[data-theme='dark'] body[data-page='welcome-student'] .welcome-step-card p,
body[data-page='welcome-student'][data-theme='dark'] .welcome-step-card p,
[data-theme='dark'] body[data-page='welcome-student'] .welcome-help-strip p,
body[data-page='welcome-student'][data-theme='dark'] .welcome-help-strip p {
  color: #caa36f;
}

@media (max-width: 1020px) {
  body[data-page='welcome-student'] .welcome-dopamine-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  body[data-page='welcome-student'] .private-page-hero {
    padding-top: calc(var(--space-20) + 82px);
  }

  body[data-page='welcome-student'] .welcome-student-copy h1 {
    font-size: clamp(2.45rem, 15vw, 4.35rem);
  }

  body[data-page='welcome-student'] .welcome-quick-actions,
  body[data-page='welcome-student'] .welcome-quick-actions .btn,
  body[data-page='welcome-student'] .welcome-dopamine-strip .btn,
  body[data-page='welcome-student'] .welcome-help-strip .btn {
    width: 100%;
  }

  body[data-page='welcome-student'] .welcome-mini-timeline {
    grid-template-columns: 1fr 1fr;
  }

  body[data-page='welcome-student'] .welcome-dopamine-strip,
  body[data-page='welcome-student'] .welcome-help-strip {
    align-items: stretch;
  }
}

/* ============================================================
   SIGNUP FLOW DOPAMINE POLISH — premium CTA language + call-confirmed route
   ============================================================ */
.btn-primary {
  background: linear-gradient(135deg, #5a2d0c 0%, #9a4d12 48%, #d58b24 100%);
  border: 1px solid rgba(240, 213, 154, 0.72);
  color: #fff7e8;
  box-shadow: 0 14px 32px rgba(61, 26, 5, 0.24), inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #6a310c 0%, #b75f17 48%, #e0a13a 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(61, 26, 5, 0.31), 0 0 0 4px rgba(232, 192, 80, 0.13), inset 0 1px 0 rgba(255,255,255,0.28);
}

.btn-outline:hover,
.btn-outline:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-1px);
}

.cta-microcopy,
.pricing-cta-note {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.hero-cta-microcopy {
  margin-top: -0.45rem;
  max-width: 420px;
}

.system-cta-microcopy {
  margin-top: 0.85rem;
}

.contact-call-microcopy {
  margin-top: 0.75rem;
  text-align: center;
}

.pricing-cta-note {
  margin-top: 0.7rem;
  text-align: center;
}

.pricing-cta-note--bundle {
  color: rgba(250, 247, 242, 0.82);
}

.booking-next-steps {
  padding: var(--space-16) 0 var(--space-10);
  background:
    radial-gradient(circle at 20% 10%, rgba(232,192,80,0.16), transparent 34%),
    linear-gradient(180deg, var(--color-bg), var(--color-surface));
}

.booking-next-card,
.pricing-next-steps {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: var(--space-8);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(90, 45, 12, 0.18);
  background:
    linear-gradient(135deg, rgba(255,251,244,0.94), rgba(245,232,207,0.94)),
    radial-gradient(circle at 85% 20%, rgba(232,192,80,0.22), transparent 38%);
  box-shadow: 0 20px 58px rgba(61, 26, 5, 0.13);
}

.booking-next-card::before,
.pricing-next-steps::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #5a2d0c, #b45e16, #c99a3d);
}

.booking-next-copy h2,
.pricing-next-steps h2 {
  font-family: var(--font-display);
  color: var(--color-brown-deep);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.8rem;
}

.booking-next-copy p,
.pricing-next-steps p {
  color: var(--color-text-muted);
  max-width: 650px;
}

.booking-next-list {
  display: grid;
  gap: 0.9rem;
}

.booking-next-list li,
.pricing-next-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.85rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(90,45,12,0.14);
  box-shadow: 0 8px 22px rgba(61,26,5,0.07);
}

.booking-next-list li span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-weight: 900;
  color: #fff7e8;
  background: linear-gradient(135deg, #5a2d0c, #8f5018);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.booking-next-list strong {
  color: var(--color-brown-deep);
  line-height: 1.25;
}

.booking-next-list small {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.pricing-next-steps {
  margin: var(--space-12) 0 var(--space-10);
}

.pricing-next-steps ul {
  display: grid;
  gap: 0.8rem;
}

.pricing-next-steps li {
  grid-template-columns: auto 1fr;
  font-weight: 800;
  color: var(--color-brown-deep);
}

.pricing-next-steps li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5a2d0c, #8f5018);
  color: #fff7e8;
  font-size: 0.85rem;
}

.booking .container {
  position: relative;
}

.booking .section-heading {
  background: linear-gradient(135deg, var(--color-brown-deep), var(--color-brown-rich), #9a4d12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.booking-plan-note {
  box-shadow: 0 12px 30px rgba(61,26,5,0.1);
}

.calendly-inline-widget {
  border: 1px solid rgba(232, 192, 80, 0.32) !important;
  box-shadow: 0 24px 62px rgba(61,26,5,0.17);
}

/* Call confirmed hidden page */
.call-confirmed-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--space-24) + 90px);
  padding-bottom: var(--space-16);
  background:
    radial-gradient(circle at 16% 20%, rgba(232,192,80,0.22), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(201,106,10,0.18), transparent 34%),
    linear-gradient(180deg, var(--color-bg), var(--color-surface));
}

.call-confirmed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: var(--space-10);
  align-items: center;
}

.call-confirmed-copy h1 {
  margin: 0.7rem 0 1rem;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--color-brown-deep);
}

.call-confirmed-lead {
  max-width: 730px;
  color: var(--color-text-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.call-confirmed-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.35rem 0 1.6rem;
}

.call-confirmed-pills span {
  border: 1px solid rgba(90,45,12,0.18);
  background: rgba(255,255,255,0.52);
  color: var(--color-brown-rich);
  font-weight: 850;
  font-size: var(--text-sm);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(61,26,5,0.08);
}

.call-confirmed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.call-confirmed-card {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(232,192,80,0.44);
  background:
    linear-gradient(160deg, rgba(61,26,5,0.96), rgba(90,45,12,0.95) 55%, rgba(126,63,18,0.95)),
    radial-gradient(circle at 100% 0%, rgba(232,192,80,0.28), transparent 40%);
  color: #fff7e8;
  box-shadow: 0 28px 70px rgba(61,26,5,0.34);
}

.call-confirmed-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: var(--space-5);
  border: 1px solid rgba(240,213,154,0.5);
  box-shadow: 0 16px 38px rgba(0,0,0,0.28);
}

.call-confirmed-card-kicker {
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: var(--text-xs);
}

.call-confirmed-card h2 {
  margin: 0.4rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.call-confirmed-card p:not(.call-confirmed-card-kicker) {
  color: rgba(255,247,232,0.84);
}

.celebration-orb {
  position: absolute;
  width: clamp(140px, 22vw, 280px);
  height: clamp(140px, 22vw, 280px);
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.42;
  background: radial-gradient(circle, rgba(232,192,80,0.44), rgba(201,106,10,0.14), transparent 68%);
}

.celebration-orb-one { top: 12%; left: -6%; }
.celebration-orb-two { right: -7%; bottom: 8%; }

.call-confirmed-prepare {
  padding: var(--space-16) 0 var(--space-20);
  background: var(--color-bg);
}

.call-confirmed-prepare .section-heading {
  max-width: 840px;
  margin-bottom: var(--space-8);
}

.call-confirmed-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.call-confirmed-steps article {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid rgba(90,45,12,0.14);
  box-shadow: var(--shadow-sm);
}

.call-confirmed-steps span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.call-confirmed-steps h3 {
  color: var(--color-brown-deep);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.call-confirmed-steps p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.call-confirmed-system-card {
  margin-top: var(--space-8);
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(232,192,80,0.42);
  background: linear-gradient(135deg, rgba(90,45,12,0.98), rgba(61,26,5,0.98));
  color: #fff7e8;
  box-shadow: 0 18px 48px rgba(61,26,5,0.2);
}

.call-confirmed-system-card h2 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.call-confirmed-system-card p {
  color: rgba(255,247,232,0.82);
  max-width: 900px;
}

[data-theme='dark'] .booking-next-card,
[data-theme='dark'] .pricing-next-steps,
[data-theme='dark'] .booking-next-list li,
[data-theme='dark'] .pricing-next-steps li,
[data-theme='dark'] .call-confirmed-pills span,
[data-theme='dark'] .call-confirmed-steps article {
  background: rgba(33, 20, 8, 0.86);
  border-color: rgba(232,192,80,0.22);
}

[data-theme='dark'] .booking-next-copy h2,
[data-theme='dark'] .pricing-next-steps h2,
[data-theme='dark'] .call-confirmed-copy h1,
[data-theme='dark'] .call-confirmed-steps h3 {
  color: var(--color-text);
}

@media (max-width: 980px) {
  .booking-next-card,
  .pricing-next-steps,
  .call-confirmed-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero-cta-microcopy {
    margin-top: 0;
  }

  .booking-next-steps {
    padding: var(--space-10) 0 var(--space-8);
  }

  .booking-next-card,
  .pricing-next-steps {
    padding: 1.25rem;
    border-radius: var(--radius-xl);
  }

  .booking-next-list li {
    grid-template-columns: 1fr;
  }

  .booking-next-list li span {
    grid-row: auto;
  }

  .call-confirmed-hero {
    padding-top: calc(var(--space-20) + 76px);
  }

  .call-confirmed-copy h1 {
    font-size: clamp(2.25rem, 14vw, 3.35rem);
  }

  .call-confirmed-actions .btn,
  .call-confirmed-actions {
    width: 100%;
  }

  .call-confirmed-steps {
    grid-template-columns: 1fr;
  }
}

.hero .hero-cta-microcopy {
  color: rgba(240, 213, 154, 0.82);
  text-align: left;
}

@media (max-width: 768px) {
  .hero .hero-cta-microcopy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ============================================================
   LIGHT MODE CREAM POLISH — removes stark white surfaces
   ============================================================ */
[data-theme='light'] body {
  background: #f4ead9;
}

[data-theme='light'] .nav.scrolled,
[data-theme='light'] .nav-mobile {
  background: rgba(248, 237, 220, 0.94);
  border-color: rgba(122, 64, 24, 0.14);
}

[data-theme='light'] .teacher-card,
[data-theme='light'] .pricing-card,
[data-theme='light'] .testimonial,
[data-theme='light'] .contact-form,
[data-theme='light'] .legal-card,
[data-theme='light'] .private-plan-card,
[data-theme='light'] .checkout-policy-card,
[data-theme='light'] .call-confirmed-step,
[data-theme='light'] .call-confirmed-prep,
[data-theme='light'] .call-confirmed-note {
  background-color: #f8eddc;
}

[data-theme='light'] .teacher-card--alt,
[data-theme='light'] .pricing-card--muted,
[data-theme='light'] .proof-card,
[data-theme='light'] .method-proof-card,
[data-theme='light'] .system-closing,
[data-theme='light'] .booking-plan-note {
  background: linear-gradient(145deg, #f8eddc 0%, #f0dfc7 100%);
}

[data-theme='light'] .founder-teaser-card,
[data-theme='light'] .story-proof-card,
[data-theme='light'] .story-side-card,
[data-theme='light'] .story-closing-card {
  background: linear-gradient(145deg, rgba(248,237,220,0.94), rgba(239,213,173,0.88));
}

[data-theme='light'] body[data-page='welcome-student'] .private-page-hero {
  background:
    radial-gradient(circle at 9% 14%, rgba(240, 213, 154, 0.34), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(183, 121, 36, 0.22), transparent 22rem),
    linear-gradient(135deg, #f4ead9 0%, #f0dfc7 48%, #e8d3b5 100%);
}

[data-theme='light'] body[data-page='welcome-student'] .welcome-status-pill--light,
[data-theme='light'] .btn-secondary,
[data-theme='light'] .call-confirmed-pills span {
  background: rgba(248, 237, 220, 0.84);
}

[data-theme='light'] body[data-page='welcome-student'] .welcome-highlight-card--celebration {
  background: linear-gradient(180deg, rgba(248, 237, 220, 0.97), rgba(240, 223, 199, 0.98));
}

[data-theme='light'] .btn-secondary:hover {
  background: #f0dfc7;
}

[data-theme='light'] .call-confirmed-hero {
  background:
    radial-gradient(circle at 16% 20%, rgba(232,192,80,0.20), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(201,106,10,0.16), transparent 34%),
    linear-gradient(180deg, #f4ead9, #f8eddc);
}

[data-theme='light'] .calendly-inline-widget {
  background: #f8eddc !important;
}

/* Light mode cream polish — high-specificity overrides for older pricing bundle patches. */
[data-theme='light'] .private-bundle-card--premium .bundle-cta-block .bundle-trust-note,
[data-theme='light'] .private-bundle-card--premium .bundle-stat,
[data-theme='light'] .private-bundle-card--premium .bundle-body-note,
[data-theme='light'] .private-bundle-card--premium .bundle-trust-note,
[data-theme='light'] .private-bundle-card--premium .bundle-price-stats--text .bundle-stat {
  background: rgba(248, 237, 220, 0.88) !important;
  border-color: rgba(90, 45, 12, 0.14) !important;
}

[data-theme='light'] .private-bundle-card--premium .bundle-stat--advantage,
[data-theme='light'] .private-bundle-card--premium .bundle-price-stats--text .bundle-stat--advantage {
  background: linear-gradient(135deg, rgba(214, 169, 77, 0.17), rgba(248, 237, 220, 0.9)) !important;
}

/* ============================================================
   SENIOR LIGHT-MODE CONTRAST POLISH — premium cream, readable bronze
   Fixes light-mode gold-on-cream washout while preserving the brand feel.
   ============================================================ */
[data-theme='light'] .system-closing {
  background:
    radial-gradient(circle at 82% 6%, rgba(240, 213, 154, 0.18), transparent 15rem),
    linear-gradient(145deg, #2a1405 0%, #3d1a05 42%, #5a2d0c 100%) !important;
  border: 1px solid rgba(232, 192, 80, 0.32) !important;
  color: #fff7e8 !important;
  box-shadow:
    0 22px 60px rgba(61, 26, 5, 0.22),
    inset 0 1px 0 rgba(240, 213, 154, 0.14) !important;
}

[data-theme='light'] .system-closing h3 {
  color: #fff3d6 !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16) !important;
}

[data-theme='light'] .system-closing p {
  color: rgba(255, 247, 232, 0.86) !important;
}

[data-theme='light'] .system-closing .system-final-line {
  color: #f0d59a !important;
}

[data-theme='light'] .system-closing .btn-ghost {
  border-color: rgba(240, 213, 154, 0.38) !important;
  color: #f7dfaa !important;
  background: rgba(240, 213, 154, 0.055) !important;
}

[data-theme='light'] .system-closing .btn-ghost:hover,
[data-theme='light'] .system-closing .btn-ghost:focus-visible {
  border-color: #f0d59a !important;
  color: #1e1208 !important;
  background: linear-gradient(135deg, #f0d59a, #d9ab4b) !important;
}

[data-theme='light'] .system-closing .cta-microcopy,
[data-theme='light'] .system-closing .system-cta-microcopy {
  color: rgba(255, 247, 232, 0.78) !important;
}

/* Light cards keep the parchment theme, but important text stays dark enough to read. */
[data-theme='light'] .method-proof-card,
[data-theme='light'] .booking-plan-note,
[data-theme='light'] .story-proof-card,
[data-theme='light'] .story-side-card,
[data-theme='light'] .story-closing-card,
[data-theme='light'] .founder-teaser-card {
  border-color: rgba(122, 64, 24, 0.16) !important;
  box-shadow: 0 16px 42px rgba(61, 26, 5, 0.09) !important;
}

[data-theme='light'] .method-proof-copy,
[data-theme='light'] .booking-plan-note strong,
[data-theme='light'] .story-proof-card blockquote,
[data-theme='light'] .story-side-card h2,
[data-theme='light'] .story-closing-card h2,
[data-theme='light'] .founder-teaser-card blockquote {
  color: #241306 !important;
}

[data-theme='light'] .story-proof-card p,
[data-theme='light'] .story-side-list li,
[data-theme='light'] .story-closing-card p,
[data-theme='light'] .founder-teaser-card p,
[data-theme='light'] .booking-plan-note {
  color: #684824 !important;
}

/* Keep cream mode from looking washed out on small utility pills and muted notes. */
[data-theme='light'] .section-sub,
[data-theme='light'] .cta-microcopy,
[data-theme='light'] .pricing-cta-note,
[data-theme='light'] .form-helper {
  color: #6b4a27 !important;
}

[data-theme='light'] .section-label,
[data-theme='light'] .founder-card-kicker,
[data-theme='light'] .story-proof-kicker,
[data-theme='light'] .story-side-kicker {
  color: #a95707 !important;
}

@media (max-width: 640px) {
  [data-theme='light'] .system-closing {
    padding: clamp(1.5rem, 7vw, 2rem) !important;
  }
}


/* === Language Monk precise pricing/refund contrast polish — 2026-05-18 === */
/* Keep the cream theme, but prevent pale-gold-on-cream washout in light mode. */
[data-theme="light"] .section-label,
[data-theme="light"] .pricing-tier,
[data-theme="light"] .checkout-plan-tier,
[data-theme="light"] .welcome-status span,
[data-theme="light"] .call-confirmed-pill,
[data-theme="light"] .faq-question span {
  color: #8a430f !important;
}

[data-theme="light"] .section-sub,
[data-theme="light"] .pricing-desc,
[data-theme="light"] .pricing-price-note,
[data-theme="light"] .pricing-cta-note,
[data-theme="light"] .comparison-sub,
[data-theme="light"] .contact-sub,
[data-theme="light"] .faq-answer,
[data-theme="light"] .footer-copy,
[data-theme="light"] .footer-tagline {
  color: #604222 !important;
}

/* Coming-soon group card: deeper premium bronze, no flat/cheap gold. */
.pricing-card--coming-soon {
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .pricing-card--coming-soon,
[data-theme="dark"] .pricing-card--coming-soon {
  background:
    radial-gradient(circle at 22% 0%, rgba(232, 192, 80, 0.22), transparent 34%),
    linear-gradient(155deg, #432006 0%, #2a1506 54%, #160b03 100%) !important;
  border: 1px solid rgba(232, 192, 80, 0.34) !important;
  box-shadow: 0 22px 58px rgba(61, 26, 5, 0.26), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

[data-theme="light"] .pricing-card--coming-soon .pricing-tier,
[data-theme="light"] .pricing-card--coming-soon .pricing-name,
[data-theme="dark"] .pricing-card--coming-soon .pricing-tier,
[data-theme="dark"] .pricing-card--coming-soon .pricing-name {
  color: #fff2d3 !important;
  text-shadow: 0 1px 1px rgba(0,0,0,0.26);
}

[data-theme="light"] .pricing-card--coming-soon .pricing-desc,
[data-theme="light"] .pricing-card--coming-soon .pricing-best-for,
[data-theme="light"] .pricing-card--coming-soon .pricing-paused-note,
[data-theme="light"] .pricing-card--coming-soon .pricing-price-note,
[data-theme="light"] .pricing-card--coming-soon .pricing-features li,
[data-theme="dark"] .pricing-card--coming-soon .pricing-desc,
[data-theme="dark"] .pricing-card--coming-soon .pricing-best-for,
[data-theme="dark"] .pricing-card--coming-soon .pricing-paused-note,
[data-theme="dark"] .pricing-card--coming-soon .pricing-price-note,
[data-theme="dark"] .pricing-card--coming-soon .pricing-features li {
  color: #e9c98f !important;
}

.pricing-card--coming-soon .pricing-price--waitlist {
  color: #d6a94d !important;
}
.pricing-card--coming-soon .pricing-price--waitlist span:first-child::after {
  content: " / month";
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  color: #e9c98f;
  margin-left: 0.15rem;
}
.pricing-card--coming-soon .pricing-price--waitlist span[data-i18n="price_month"] {
  display: none;
}
.pricing-card--coming-soon .pricing-price-note {
  display: inline-flex;
  width: fit-content;
  padding: 0.52rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 192, 80, 0.34);
  background: rgba(232, 192, 80, 0.12);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-waitlist-btn {
  border-color: rgba(232, 192, 80, 0.55) !important;
  color: #fff2d3 !important;
  background: rgba(255,255,255,0.04) !important;
}
.pricing-waitlist-btn:hover {
  background: linear-gradient(135deg, #8a430f, #8f5018) !important;
  border-color: rgba(214, 169, 77, 0.82) !important;
  transform: translateY(-1px);
}

/* Make policy-style pages match the premium site instead of feeling detached. */
.privacy-wrap {
  background: linear-gradient(145deg, rgba(61, 26, 5, 0.34), rgba(18, 10, 3, 0.12));
  border: 1px solid rgba(232, 192, 80, 0.14);
  border-radius: 28px;
  margin-top: 42px !important;
  margin-bottom: 56px !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

/* Small consistency pass for long pricing badges and headings. */
.pricing-featured-badge,
.pricing-coming-soon-badge,
.pricing-waitlist-badge {
  text-wrap: balance;
  line-height: 1.18;
}
.pricing-name,
.checkout-plan-title,
.comparison-mobile-card h3 {
  text-wrap: balance;
}
@media (max-width: 560px) {
  .pricing-featured-badge,
  .pricing-coming-soon-badge,
  .pricing-waitlist-badge {
    letter-spacing: 0.1em !important;
  }
  .pricing-card--coming-soon .pricing-price-note {
    font-size: 0.72rem;
  }
}

/* Security/privacy helper copy */
.form-security-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  opacity: 0.86;
}
[data-theme='dark'] .form-security-note {
  color: rgba(240, 213, 154, 0.72);
}

/* ============================================================
   PREMIUM SYSTEM SECTION HUE PATCH — 2026-05-18
   Tightens the Method/System section glow so dark mode reads as
   rich bronze instead of a flat orange/yellow wash.
   ============================================================ */
.system-section {
  background:
    radial-gradient(ellipse at 18% 7%, rgba(196,112,32,0.075), transparent 30%),
    radial-gradient(ellipse at 84% 14%, rgba(92,45,14,0.18), transparent 34%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 56%, var(--color-bg) 100%);
}

[data-theme='dark'] .system-section {
  background:
    radial-gradient(ellipse at 18% 7%, rgba(196,112,32,0.075), transparent 30%),
    radial-gradient(ellipse at 84% 14%, rgba(92,45,14,0.20), transparent 35%),
    linear-gradient(180deg, #120a03 0%, #170d05 52%, #120a03 100%);
}

[data-theme='light'] .system-section {
  background:
    radial-gradient(ellipse at 18% 7%, rgba(201,106,10,0.055), transparent 30%),
    radial-gradient(ellipse at 84% 14%, rgba(90,45,12,0.055), transparent 35%),
    linear-gradient(180deg, #f4ead9 0%, #f8eddc 56%, #f4ead9 100%);
}

[data-theme='dark'] .system-header .section-heading,
[data-theme='dark'] .system-copy {
  text-shadow: 0 2px 22px rgba(0,0,0,0.18);
}


/* ============================================================
   ROLE / POLICY / PREMIUM HUE CONSISTENCY PATCH — 2026-05-18
   Keeps CTA gold rich, text readable, and policy blocks visually
   connected across light and dark mode without changing layout.
   ============================================================ */
:root,
[data-theme='light'] {
  --lm-premium-bronze: #7a3b0c;
  --lm-premium-bronze-deep: #3d1a05;
  --lm-premium-gold-rich: #d9a441;
  --lm-premium-cream: #f4ead9;
}

[data-theme='dark'] {
  --lm-premium-bronze: #c47a22;
  --lm-premium-bronze-deep: #160b03;
  --lm-premium-gold-rich: #f0c46a;
  --lm-premium-cream: #f8eddc;
}

.btn-primary,
.bundle-cta-button,
.private-plan-card .btn-primary {
  background: linear-gradient(135deg, #7a3b0c 0%, #b76514 54%, #d9a441 100%) !important;
  border-color: rgba(240, 213, 154, 0.42) !important;
  color: #fff7e8 !important;
  box-shadow: 0 14px 34px rgba(61, 26, 5, 0.22), inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.btn-primary:hover,
.bundle-cta-button:hover,
.private-plan-card .btn-primary:hover {
  background: linear-gradient(135deg, #8a430f 0%, #8f5018 56%, #c99a3d 100%) !important;
  filter: saturate(0.98) brightness(1.02);
}

[data-theme='dark'] .btn-primary,
[data-theme='dark'] .bundle-cta-button,
[data-theme='dark'] .private-plan-card .btn-primary {
  color: #1e1208 !important;
  text-shadow: none !important;
}

[data-theme='light'] .privacy-wrap,
[data-theme='light'] .legal-card,
[data-theme='light'] .checkout-policy-card,
[data-theme='light'] .pricing-trust-block {
  background: linear-gradient(145deg, rgba(248, 237, 220, 0.96), rgba(232, 211, 181, 0.82)) !important;
  border-color: rgba(122, 64, 24, 0.18) !important;
  color: #1e1208 !important;
}

[data-theme='dark'] .privacy-wrap,
[data-theme='dark'] .legal-card,
[data-theme='dark'] .checkout-policy-card,
[data-theme='dark'] .pricing-trust-block {
  background: linear-gradient(145deg, rgba(33, 20, 8, 0.96), rgba(18, 10, 3, 0.96)) !important;
  border-color: rgba(232, 192, 80, 0.16) !important;
}

[data-theme='light'] .privacy-wrap p,
[data-theme='light'] .privacy-wrap li,
[data-theme='light'] .legal-card p,
[data-theme='light'] .checkout-policy-card p,
[data-theme='light'] .pricing-trust-block p,
[data-theme='light'] .pricing-trust-block li {
  color: #5b3b1d !important;
}

[data-theme='light'] .privacy-wrap h1,
[data-theme='light'] .privacy-wrap h2,
[data-theme='light'] .legal-card h1,
[data-theme='light'] .legal-card h2 {
  color: #2a1405 !important;
}

[data-theme='dark'] .privacy-wrap p,
[data-theme='dark'] .privacy-wrap li,
[data-theme='dark'] .legal-card p,
[data-theme='dark'] .checkout-policy-card p,
[data-theme='dark'] .pricing-trust-block p,
[data-theme='dark'] .pricing-trust-block li {
  color: rgba(240, 213, 154, 0.82) !important;
}

.pricing-card,
.teacher-card,
.coach-card,
.founder-teaser-card,
.story-proof-card,
.story-side-card,
.story-closing-card,
.contact-form,
.faq-card {
  outline-color: rgba(232, 192, 80, 0.10);
}

/* Refinement cycle 2 — premiumize remaining legacy orange accents without changing structure. */
.step-num,
.payment-step-number {
  background: linear-gradient(135deg, #8a430f 0%, #8f5018 48%, #d9a441 100%) !important;
  -webkit-background-clip: text;
  background-clip: text;
}
.payment-step-number {
  -webkit-text-fill-color: #1e1208 !important;
  color: #1e1208 !important;
}
.step-divider,
.system-card::after {
  background: linear-gradient(90deg, #7a3b0c 0%, #8f5018 48%, #d9a441 100%) !important;
}
.pricing-featured-badge {
  background: linear-gradient(135deg, #7a3b0c 0%, #8f5018 54%, #d9a441 100%) !important;
  color: #fff7e8 !important;
  border: 1px solid rgba(240, 213, 154, 0.32) !important;
  box-shadow: 0 10px 28px rgba(61, 26, 5, 0.18) !important;
}
[data-theme='dark'] .pricing-featured-badge {
  color: #1e1208 !important;
  text-shadow: none !important;
}
[data-theme='light'] .faq-item--refund .faq-question,
[data-theme='light'] .faq-item--refund .faq-question span {
  color: #7a3b0c !important;
}

/* Refinement cycle 3 — preserve payment-step circle fill after hue cleanup. */
.payment-step-number {
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  background: linear-gradient(135deg, #7a3b0c 0%, #8f5018 54%, #d9a441 100%) !important;
  color: #fff7e8 !important;
  -webkit-text-fill-color: #fff7e8 !important;
}
[data-theme='dark'] .payment-step-number {
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  background: linear-gradient(135deg, #a95b14 0%, #d8891c 55%, #f0c46a 100%) !important;
}


/* ============================================================
   PREMIUM COLOR SYSTEM REFINEMENT — MASTER PALETTE PASS
   Goal: restore rich, intentional bronze/gold atmosphere instead
   of removing hue. Uses deep espresso, aged bronze, antique gold,
   and warm parchment across light/dark mode without changing layout.
   ============================================================ */
:root,
[data-theme='light'] {
  --lm-espresso-950: #130803;
  --lm-espresso-900: #1f0d04;
  --lm-espresso-850: #2a1205;
  --lm-bronze-800: #4b2108;
  --lm-bronze-700: #65310c;
  --lm-bronze-600: #844514;
  --lm-bronze-500: #a8621c;
  --lm-copper-500: #b87125;
  --lm-gold-500: #c99a3d;
  --lm-gold-400: #ddb864;
  --lm-gold-300: #efd58f;
  --lm-cream-050: #fbf2e3;
  --lm-cream-100: #f6ead6;
  --lm-cream-150: #f1dfc4;
  --lm-ink-900: #1d1007;
  --lm-ink-700: #4e3218;
  --lm-premium-glow-soft: rgba(184, 113, 37, 0.12);
  --lm-premium-glow-mid: rgba(132, 69, 20, 0.18);

  --color-primary: #8f5018;
  --color-primary-hover: #6f350d;
  --color-primary-active: #4b2108;
  --color-gold: #c99a3d;
  --color-gold-light: #efd58f;
  --color-orange-bright: #b87125;
}

[data-theme='dark'] {
  --lm-espresso-950: #0e0602;
  --lm-espresso-900: #140903;
  --lm-espresso-850: #1d0d04;
  --lm-bronze-800: #3c1905;
  --lm-bronze-700: #532608;
  --lm-bronze-600: #743810;
  --lm-bronze-500: #a45d1a;
  --lm-copper-500: #c7832d;
  --lm-gold-500: #d6a94d;
  --lm-gold-400: #e8c573;
  --lm-gold-300: #f3d99a;
  --lm-cream-050: #fff7e8;
  --lm-cream-100: #f8eddc;
  --lm-cream-150: #f0e0c7;
  --lm-ink-900: #f8eddc;
  --lm-ink-700: #d2ad7a;
  --lm-premium-glow-soft: rgba(214, 169, 77, 0.11);
  --lm-premium-glow-mid: rgba(199, 131, 45, 0.16);

  --color-primary: #d6a94d;
  --color-primary-hover: #e8c573;
  --color-primary-active: #f3d99a;
  --color-gold: #d6a94d;
  --color-gold-light: #f3d99a;
  --color-orange-bright: #c7832d;
}

/* Premium global action color: bronze first, gold as highlight — not flat yellow. */
.btn-primary,
.bundle-cta-button,
.private-plan-card .btn-primary,
.hero-ctas .btn-primary,
.pricing-card .btn-primary,
.booking .btn-primary,
.contact-form .btn-primary {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 28%, rgba(0,0,0,0.08) 100%),
    linear-gradient(135deg, var(--lm-bronze-800) 0%, var(--lm-bronze-600) 48%, var(--lm-copper-500) 78%, var(--lm-gold-500) 100%) !important;
  border: 1px solid rgba(239, 213, 143, 0.35) !important;
  color: #fff7e8 !important;
  text-shadow: 0 1px 0 rgba(19,8,3,0.42) !important;
  box-shadow:
    0 14px 34px rgba(61, 26, 5, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(19,8,3,0.28) !important;
}

.btn-primary:hover,
.bundle-cta-button:hover,
.private-plan-card .btn-primary:hover,
.hero-ctas .btn-primary:hover,
.pricing-card .btn-primary:hover,
.booking .btn-primary:hover,
.contact-form .btn-primary:hover {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.03) 30%, rgba(0,0,0,0.08) 100%),
    linear-gradient(135deg, var(--lm-bronze-700) 0%, var(--lm-bronze-500) 50%, var(--lm-copper-500) 78%, var(--lm-gold-400) 100%) !important;
  box-shadow:
    0 18px 42px rgba(61, 26, 5, 0.34),
    0 0 0 1px rgba(239, 213, 143, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.22) !important;
}

.btn-outline {
  color: var(--lm-bronze-600) !important;
  border-color: rgba(132, 69, 20, 0.42) !important;
}
.btn-outline:hover {
  background: rgba(184, 113, 37, 0.10) !important;
  color: var(--lm-bronze-800) !important;
  border-color: rgba(132, 69, 20, 0.62) !important;
}
[data-theme='dark'] .btn-outline {
  color: var(--lm-gold-400) !important;
  border-color: rgba(232, 197, 115, 0.36) !important;
}
[data-theme='dark'] .btn-outline:hover {
  background: rgba(214, 169, 77, 0.10) !important;
  color: var(--lm-gold-300) !important;
}

/* Hero and dark showcase sections: keep the glow, make it feel like leather/bronze instead of orange wash. */
.hero {
  background:
    radial-gradient(ellipse at 76% 18%, rgba(214,169,77,0.14) 0%, rgba(132,69,20,0.12) 22%, transparent 48%),
    radial-gradient(ellipse at 12% 84%, rgba(168,98,28,0.18) 0%, transparent 46%),
    linear-gradient(150deg, #130803 0%, #261005 42%, #4b2108 74%, #2a1205 100%) !important;
}
.hero-bg-pattern {
  background-image:
    radial-gradient(circle at 22% 24%, rgba(239,213,143,0.09) 0%, transparent 44%),
    radial-gradient(circle at 84% 62%, rgba(184,113,37,0.13) 0%, transparent 48%),
    linear-gradient(90deg, rgba(255,255,255,0.018), transparent 24%, rgba(255,255,255,0.012)) !important;
}
.hero-badge,
.pricing-tier,
.section-label,
.proof-artifact-kicker,
.private-bundle-card .bundle-kicker,
.bundle-save-pill,
.waitlist-pill,
.checkout-step-kicker {
  color: var(--color-primary) !important;
}
[data-theme='dark'] .hero-badge,
[data-theme='dark'] .pricing-tier,
[data-theme='dark'] .section-label,
[data-theme='dark'] .proof-artifact-kicker,
[data-theme='dark'] .private-bundle-card .bundle-kicker,
[data-theme='dark'] .bundle-save-pill,
[data-theme='dark'] .waitlist-pill,
[data-theme='dark'] .checkout-step-kicker {
  color: var(--lm-gold-400) !important;
}
.hero-heading .accent,
.section-heading .accent,
.pricing-card--featured .pricing-price,
.bundle-price-large span {
  background: linear-gradient(135deg, var(--lm-gold-300) 0%, var(--lm-gold-500) 50%, var(--lm-copper-500) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* System section: restore a rich intentional hue on both sides, not a removed/flat cast. */
.system-section {
  background:
    radial-gradient(ellipse at 86% 10%, rgba(168,98,28,0.22) 0%, rgba(132,69,20,0.10) 26%, transparent 54%),
    radial-gradient(ellipse at 14% 18%, rgba(214,169,77,0.12) 0%, rgba(184,113,37,0.07) 24%, transparent 48%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 54%, var(--color-bg) 100%) !important;
}
[data-theme='dark'] .system-section {
  background:
    radial-gradient(ellipse at 86% 8%, rgba(214,169,77,0.13) 0%, rgba(168,98,28,0.12) 22%, transparent 50%),
    radial-gradient(ellipse at 13% 18%, rgba(184,113,37,0.13) 0%, transparent 46%),
    linear-gradient(180deg, #120803 0%, #1a0b03 52%, #100702 100%) !important;
}
.system-resource-lines p {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    linear-gradient(135deg, #2a1205 0%, #4b2108 52%, #65310c 100%) !important;
  border-color: rgba(239,213,143,0.20) !important;
  color: var(--lm-gold-300) !important;
}
.system-resource-lines p:last-child,
.system-resource-lines .system-resource-cta {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04)),
    linear-gradient(135deg, var(--lm-gold-300) 0%, var(--lm-gold-500) 54%, var(--lm-copper-500) 100%) !important;
  color: #1d1007 !important;
  border-color: rgba(75,33,8,0.30) !important;
  box-shadow: 0 16px 34px rgba(75, 33, 8, 0.18), inset 0 1px 0 rgba(255,255,255,0.38) !important;
}
.system-question-box,
[data-theme='light'] .system-question-box {
  background:
    radial-gradient(ellipse at top left, rgba(214,169,77,0.11), transparent 42%),
    linear-gradient(145deg, #160903 0%, #241005 54%, #321706 100%) !important;
  border-color: rgba(239,213,143,0.17) !important;
  box-shadow: 0 22px 60px rgba(61,26,5,0.24), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}
.system-closing,
[data-theme='light'] .system-closing {
  background:
    radial-gradient(ellipse at 82% 12%, rgba(214,169,77,0.20) 0%, rgba(184,113,37,0.10) 32%, transparent 58%),
    linear-gradient(145deg, #241005 0%, #4b2108 52%, #65310c 100%) !important;
  border: 1px solid rgba(239,213,143,0.18) !important;
  color: var(--lm-gold-300) !important;
  box-shadow: 0 24px 66px rgba(61,26,5,0.28), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.system-closing p { color: rgba(239, 213, 143, 0.84) !important; }
.system-final-line { color: var(--lm-gold-300) !important; }
.system-questions li::before,
.pricing-features li::before,
.first-week-list li::before,
.artifact-checks span {
  color: var(--lm-gold-400) !important;
}

/* Cards: richer premium surfaces in light mode; darker, polished bronze in dark mode. */
.pricing-card:not(.pricing-card--featured),
.teacher-card,
.coach-card,
.founder-teaser-card,
.story-proof-card,
.story-side-card,
.story-closing-card,
.contact-form,
.faq-card,
.proof-artifact-card,
.pricing-value-stack,
.pricing-comparison,
.payment-flow-block,
.checkout-card,
.welcome-step-card,
.confirmed-step-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)),
    linear-gradient(145deg, var(--color-surface) 0%, var(--color-surface-2) 100%) !important;
  border-color: rgba(132, 69, 20, 0.20) !important;
  box-shadow: 0 14px 38px rgba(61, 26, 5, 0.12), inset 0 1px 0 rgba(255,255,255,0.20) !important;
}
[data-theme='dark'] .pricing-card:not(.pricing-card--featured),
[data-theme='dark'] .teacher-card,
[data-theme='dark'] .coach-card,
[data-theme='dark'] .founder-teaser-card,
[data-theme='dark'] .story-proof-card,
[data-theme='dark'] .story-side-card,
[data-theme='dark'] .story-closing-card,
[data-theme='dark'] .contact-form,
[data-theme='dark'] .faq-card,
[data-theme='dark'] .proof-artifact-card,
[data-theme='dark'] .pricing-value-stack,
[data-theme='dark'] .pricing-comparison,
[data-theme='dark'] .payment-flow-block,
[data-theme='dark'] .checkout-card,
[data-theme='dark'] .welcome-step-card,
[data-theme='dark'] .confirmed-step-card {
  background:
    radial-gradient(ellipse at top right, rgba(214,169,77,0.06), transparent 46%),
    linear-gradient(145deg, #1a0b03 0%, #241005 100%) !important;
  border-color: rgba(239, 213, 143, 0.14) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.045) !important;
}

.pricing-card--featured,
.private-bundle-card,
.group-waitlist-card,
.pricing-card--group,
.pricing-card--waitlist {
  background:
    radial-gradient(ellipse at 84% 8%, rgba(214,169,77,0.19) 0%, rgba(184,113,37,0.09) 28%, transparent 52%),
    linear-gradient(150deg, #1a0b03 0%, #361704 45%, #5a2a0d 76%, #251006 100%) !important;
  border-color: rgba(239,213,143,0.28) !important;
  box-shadow: 0 24px 66px rgba(61,26,5,0.34), 0 0 0 1px rgba(239,213,143,0.08), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.pricing-card--featured .pricing-name,
.pricing-card--featured .pricing-desc,
.pricing-card--featured .pricing-features li,
.private-bundle-card .bundle-title,
.private-bundle-card .bundle-intro {
  color: rgba(255,247,232,0.92) !important;
}
.pricing-featured-badge,
.best-for-badge,
.pricing-best-for,
.waitlist-status-pill,
.checkout-status-pill {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03)),
    linear-gradient(135deg, var(--lm-bronze-700) 0%, var(--lm-copper-500) 60%, var(--lm-gold-500) 100%) !important;
  color: #fff7e8 !important;
  border-color: rgba(239,213,143,0.28) !important;
  text-shadow: 0 1px 0 rgba(19,8,3,0.40) !important;
}
[data-theme='dark'] .pricing-featured-badge,
[data-theme='dark'] .best-for-badge,
[data-theme='dark'] .pricing-best-for,
[data-theme='dark'] .waitlist-status-pill,
[data-theme='dark'] .checkout-status-pill {
  color: #fff7e8 !important;
}

/* Trust/notes: intentional bronze tint with readable text, not washed-out gold. */
.pricing-founding-note,
.booking-plan-note,
.contact-payment-note,
.contact-positioning-note,
.teacher-conversion-copy,
.comparison-mobile-card,
.bundle-savings-note,
.checkout-policy-card,
.refund-summary-card {
  background:
    linear-gradient(145deg, rgba(184,113,37,0.12), rgba(239,213,143,0.05)) !important;
  border-color: rgba(132,69,20,0.22) !important;
}
[data-theme='dark'] .pricing-founding-note,
[data-theme='dark'] .booking-plan-note,
[data-theme='dark'] .contact-payment-note,
[data-theme='dark'] .contact-positioning-note,
[data-theme='dark'] .teacher-conversion-copy,
[data-theme='dark'] .comparison-mobile-card,
[data-theme='dark'] .bundle-savings-note,
[data-theme='dark'] .checkout-policy-card,
[data-theme='dark'] .refund-summary-card {
  background: linear-gradient(145deg, rgba(214,169,77,0.10), rgba(184,113,37,0.055)) !important;
  border-color: rgba(239,213,143,0.16) !important;
}

/* Deep sections and footer: replace black/orange with premium espresso + bronze glow. */
.results,
.footer,
.call-confirmed-hero,
.welcome-hero,
.checkout-hero,
.story-hero {
  background:
    radial-gradient(ellipse at 82% 12%, rgba(214,169,77,0.10), transparent 42%),
    radial-gradient(ellipse at 10% 90%, rgba(184,113,37,0.10), transparent 44%),
    linear-gradient(160deg, #100702 0%, #1a0b03 52%, #2a1205 100%) !important;
}
.footer { border-top-color: rgba(239,213,143,0.12) !important; }

/* Premium text contrast pass: avoid pale gold on pale cream, avoid muddy orange on dark. */
[data-theme='light'] .section-sub,
[data-theme='light'] .pricing-desc,
[data-theme='light'] .pricing-features li,
[data-theme='light'] .teacher-bio,
[data-theme='light'] .coach-bio,
[data-theme='light'] .faq-answer,
[data-theme='light'] .legal-card p,
[data-theme='light'] .privacy-wrap p {
  color: #5a3a1a !important;
}
[data-theme='dark'] .section-sub,
[data-theme='dark'] .pricing-desc,
[data-theme='dark'] .pricing-features li,
[data-theme='dark'] .teacher-bio,
[data-theme='dark'] .coach-bio,
[data-theme='dark'] .faq-answer,
[data-theme='dark'] .legal-card p,
[data-theme='dark'] .privacy-wrap p {
  color: rgba(240,224,199,0.80) !important;
}

/* Mobile: keep premium spacing without crowding CTA cards. */
@media (max-width: 760px) {
  .pricing-card,
  .teacher-card,
  .coach-card,
  .proof-artifact-card,
  .contact-form,
  .faq-card {
    box-shadow: 0 10px 28px rgba(61,26,5,0.12), inset 0 1px 0 rgba(255,255,255,0.14) !important;
  }
  .system-section {
    background:
      radial-gradient(ellipse at 85% 4%, rgba(168,98,28,0.18) 0%, transparent 44%),
      linear-gradient(180deg, var(--color-bg), var(--color-surface) 58%, var(--color-bg)) !important;
  }
}


/* ============================================================
   SENIOR PRICE LEGIBILITY FIX — large pricing amount
   Prevents large pricing labels from clipping while
   keeping the premium bronze/gold feel intact.
   ============================================================ */
.private-bundle-card--premium {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr) !important;
}

.private-bundle-card--premium .bundle-pricing-panel {
  min-width: 0;
  overflow: visible;
}

.private-bundle-card--premium .bundle-price-large {
  min-width: 0;
  width: 100%;
  overflow: visible;
}

.private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  color: #e0b44f;
  font-size: clamp(2.95rem, 2.1rem + 2.15vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.032em;
  font-variant-numeric: tabular-nums lining-nums;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 30px rgba(214, 169, 77, 0.14);
}

@media (max-width: 1080px) {
  .private-bundle-card--premium {
    grid-template-columns: 1fr !important;
  }

  .private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
    font-size: clamp(3.1rem, 8vw, 4.35rem);
  }
}

@media (max-width: 460px) {
  .private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
    font-size: clamp(2.65rem, 14vw, 3.65rem);
    letter-spacing: -0.02em;
  }
}

/* ============================================================
   MASTER CONTRAST REFINEMENT — 2026-05-18
   Fixes pale text on light cream cards and low-contrast muted text
   on dark bronze pricing panels while preserving the premium palette.
   ============================================================ */
:root,
[data-theme='light'] {
  --lm-ink-strong: #211207;
  --lm-ink: #2d190a;
  --lm-ink-muted: #563819;
  --lm-ink-soft: #6a4620;
  --lm-bronze-text: #7a3f0a;
  --lm-cream-card: #f2e2c7;
  --lm-cream-card-deep: #e5cca3;
  --lm-dark-card-text: #fff5df;
  --lm-dark-card-muted: rgba(255, 238, 207, 0.86);
  --lm-dark-card-soft: rgba(240, 213, 154, 0.82);
}

/* Light mode readable text: cream background should never use pale gold for body copy. */
[data-theme='light'] body,
[data-theme='light'] p,
[data-theme='light'] li,
[data-theme='light'] label,
[data-theme='light'] td,
[data-theme='light'] th,
[data-theme='light'] .section-sub,
[data-theme='light'] .pricing-main-sub,
[data-theme='light'] .pricing-desc,
[data-theme='light'] .pricing-features li,
[data-theme='light'] .pricing-price-note,
[data-theme='light'] .teacher-bio,
[data-theme='light'] .coach-bio,
[data-theme='light'] .faq-answer,
[data-theme='light'] .legal-card p,
[data-theme='light'] .privacy-wrap p,
[data-theme='light'] .payment-flow-copy p,
[data-theme='light'] .payment-flow-note,
[data-theme='light'] .comparison-mobile-card p,
[data-theme='light'] .contact-outcome-card span,
[data-theme='light'] .form-helper {
  color: var(--lm-ink-muted) !important;
  text-shadow: none !important;
}

[data-theme='light'] h1,
[data-theme='light'] h2,
[data-theme='light'] h3,
[data-theme='light'] h4,
[data-theme='light'] .pricing-name,
[data-theme='light'] .pricing-price,
[data-theme='light'] .story-side-card h2,
[data-theme='light'] .form-intro h2,
[data-theme='light'] .contact-fit-card h3,
[data-theme='light'] .faq-question {
  color: var(--lm-ink-strong) !important;
  text-shadow: none !important;
}

[data-theme='light'] .section-label,
[data-theme='light'] .pricing-tier,
[data-theme='light'] .form-eyebrow,
[data-theme='light'] .contact-card-kicker,
[data-theme='light'] .proof-artifact-kicker,
[data-theme='light'] .teacher-assignment-kicker {
  color: var(--lm-bronze-text) !important;
  text-shadow: none !important;
}

/* Pricing cards: light cards get dark copy; dark featured cards get cream copy. */
[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
    linear-gradient(145deg, var(--lm-cream-card) 0%, var(--lm-cream-card-deep) 100%) !important;
  border-color: rgba(101, 55, 16, 0.22) !important;
}

[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-name,
[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price {
  color: var(--lm-ink-strong) !important;
}

[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-tier,
[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-features li::before {
  color: var(--lm-bronze-text) !important;
}

[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-desc,
[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-features li,
[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price-note,
[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price span {
  color: var(--lm-ink-muted) !important;
}

/* Group waitlist card: premium antique parchment with strong bronze text, no white-on-cream. */
[data-theme='light'] .pricing-card--coming-soon {
  background:
    radial-gradient(ellipse at 84% 0%, rgba(156, 87, 21, 0.13), transparent 42%),
    linear-gradient(150deg, #ead5b0 0%, #f3e4cb 48%, #dfc292 100%) !important;
  border-color: rgba(92, 48, 13, 0.26) !important;
  box-shadow: 0 18px 46px rgba(61,26,5,0.14), inset 0 1px 0 rgba(255,255,255,0.34) !important;
}

[data-theme='light'] .pricing-card--coming-soon .pricing-tier,
[data-theme='light'] .pricing-card--coming-soon .pricing-price,
[data-theme='light'] .pricing-card--coming-soon .pricing-features li::before {
  color: #7b3f07 !important;
}

[data-theme='light'] .pricing-card--coming-soon .pricing-name {
  color: #241204 !important;
}

[data-theme='light'] .pricing-card--coming-soon .pricing-desc,
[data-theme='light'] .pricing-card--coming-soon .pricing-features li,
[data-theme='light'] .pricing-card--coming-soon .pricing-price-note,
[data-theme='light'] .pricing-card--coming-soon .pricing-price span,
[data-theme='light'] .pricing-card--coming-soon .pricing-paused-note {
  color: #51310f !important;
}

[data-theme='light'] .pricing-card--coming-soon .pricing-coming-soon-badge,
[data-theme='light'] .pricing-card--coming-soon .pricing-waitlist-badge {
  background: linear-gradient(145deg, rgba(65,32,9,0.10), rgba(255,255,255,0.24)) !important;
  border-color: rgba(65,32,9,0.20) !important;
  color: #5b2e06 !important;
  text-shadow: none !important;
}

[data-theme='light'] .pricing-card--coming-soon .pricing-best-for,
[data-theme='light'] .pricing-card--coming-soon .pricing-paused-note {
  background: rgba(255, 247, 232, 0.58) !important;
  border-color: rgba(123,63,7,0.24) !important;
  border-left-color: #7b3f07 !important;
  color: #3f260d !important;
  text-shadow: none !important;
}

/* Dark cards inside light mode: keep body text cream, not muddy brown. */
[data-theme='light'] .pricing-card--featured,
[data-theme='light'] .private-bundle-card,
[data-theme='light'] .contact-diagnosis-card,
[data-theme='light'] .tom-proof-card,
[data-theme='light'] .system-question-box,
[data-theme='light'] .system-closing {
  color: var(--lm-dark-card-text) !important;
}

[data-theme='light'] .pricing-card--featured .pricing-name,
[data-theme='light'] .pricing-card--featured .pricing-price,
[data-theme='light'] .private-bundle-card .bundle-title,
[data-theme='light'] .contact-diagnosis-card h3,
[data-theme='light'] .tom-proof-card blockquote,
[data-theme='light'] .system-question-intro,
[data-theme='light'] .system-bridge,
[data-theme='light'] .system-closing h3 {
  color: var(--lm-dark-card-text) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

[data-theme='light'] .pricing-card--featured .pricing-desc,
[data-theme='light'] .pricing-card--featured .pricing-features li,
[data-theme='light'] .pricing-card--featured .pricing-price span,
[data-theme='light'] .pricing-card--featured .pricing-cta-note,
[data-theme='light'] .private-bundle-card .bundle-intro,
[data-theme='light'] .private-bundle-card .bundle-summary-list li,
[data-theme='light'] .private-bundle-card .bundle-body-note,
[data-theme='light'] .private-bundle-card .bundle-trust-note,
[data-theme='light'] .contact-diagnosis-card .contact-card-note,
[data-theme='light'] .system-questions li,
[data-theme='light'] .system-closing p,
[data-theme='light'] .system-final-line {
  color: var(--lm-dark-card-muted) !important;
  text-shadow: none !important;
}

[data-theme='light'] .pricing-card--featured .pricing-tier,
[data-theme='light'] .pricing-card--featured .pricing-features li::before,
[data-theme='light'] .private-bundle-card .bundle-kicker,
[data-theme='light'] .private-bundle-card .bundle-price-large span,
[data-theme='light'] .system-questions li::before {
  color: var(--lm-dark-card-soft) !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Buttons/badges: readable premium, not washed-out gold. */
[data-theme='light'] .btn-primary {
  color: #1b0d04 !important;
  text-shadow: none !important;
}
[data-theme='light'] .btn-outline {
  color: #5f3006 !important;
  border-color: rgba(95,48,6,0.46) !important;
  background: rgba(255,247,232,0.18) !important;
}
[data-theme='light'] .btn-outline:hover,
[data-theme='light'] .btn-outline:focus-visible {
  color: #1b0d04 !important;
}

[data-theme='dark'] .pricing-card--featured .pricing-desc,
[data-theme='dark'] .pricing-card--featured .pricing-features li,
[data-theme='dark'] .pricing-card--featured .pricing-price span,
[data-theme='dark'] .pricing-card--featured .pricing-cta-note,
[data-theme='dark'] .private-bundle-card .bundle-intro,
[data-theme='dark'] .private-bundle-card .bundle-summary-list li,
[data-theme='dark'] .private-bundle-card .bundle-body-note,
[data-theme='dark'] .private-bundle-card .bundle-trust-note {
  color: rgba(255, 238, 207, 0.84) !important;
}

[data-theme='dark'] .pricing-card:not(.pricing-card--featured) .pricing-desc,
[data-theme='dark'] .pricing-card:not(.pricing-card--featured) .pricing-features li,
[data-theme='dark'] .pricing-card:not(.pricing-card--featured) .pricing-price-note {
  color: rgba(240, 224, 199, 0.82) !important;
}

/* ============================================================
   FINAL LIGHT-MODE CONTRAST RESCUE — premium readable palette
   Purpose: restore clear ink/cream contrast after security/color passes
   without flattening the bronze Language Monk look.
   Applies to explicit light mode and to the default light state before JS.
   ============================================================ */
:root:not([data-theme='dark']),
html[data-theme='light'] {
  --lm-light-ink: #201106;
  --lm-light-ink-muted: #523313;
  --lm-light-bronze: #7a3f08;
  --lm-light-bronze-strong: #5a2b04;
  --lm-light-cream-card: #f1dfc2;
  --lm-light-cream-card-2: #e4c79b;
  --lm-light-cream-soft: #fff3df;
  --lm-dark-panel-cream: #fff3dc;
  --lm-dark-panel-muted: rgba(255, 239, 211, 0.88);
  --lm-dark-panel-soft: rgba(240, 213, 154, 0.86);
}

/* Global light readability: body copy must be ink/brown, never pale gold. */
html:not([data-theme='dark']) body,
html:not([data-theme='dark']) p,
html:not([data-theme='dark']) li,
html:not([data-theme='dark']) label,
html:not([data-theme='dark']) td,
html:not([data-theme='dark']) th,
html:not([data-theme='dark']) .section-sub,
html:not([data-theme='dark']) .pricing-main-sub,
html:not([data-theme='dark']) .form-helper,
html:not([data-theme='dark']) .faq-answer,
html:not([data-theme='dark']) .legal-card p,
html:not([data-theme='dark']) .privacy-wrap p,
html:not([data-theme='dark']) .contact-outcome-card span,
html[data-theme='light'] body,
html[data-theme='light'] p,
html[data-theme='light'] li,
html[data-theme='light'] label,
html[data-theme='light'] td,
html[data-theme='light'] th,
html[data-theme='light'] .section-sub,
html[data-theme='light'] .pricing-main-sub,
html[data-theme='light'] .form-helper,
html[data-theme='light'] .faq-answer,
html[data-theme='light'] .legal-card p,
html[data-theme='light'] .privacy-wrap p,
html[data-theme='light'] .contact-outcome-card span {
  color: var(--lm-light-ink-muted) !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) h1,
html:not([data-theme='dark']) h2,
html:not([data-theme='dark']) h3,
html:not([data-theme='dark']) h4,
html:not([data-theme='dark']) .section-heading,
html:not([data-theme='dark']) .pricing-name,
html:not([data-theme='dark']) .pricing-price,
html:not([data-theme='dark']) .faq-question,
html:not([data-theme='dark']) .form-intro h2,
html[data-theme='light'] h1,
html[data-theme='light'] h2,
html[data-theme='light'] h3,
html[data-theme='light'] h4,
html[data-theme='light'] .section-heading,
html[data-theme='light'] .pricing-name,
html[data-theme='light'] .pricing-price,
html[data-theme='light'] .faq-question,
html[data-theme='light'] .form-intro h2 {
  color: var(--lm-light-ink) !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) .section-label,
html:not([data-theme='dark']) .pricing-tier,
html:not([data-theme='dark']) .form-eyebrow,
html:not([data-theme='dark']) .contact-card-kicker,
html:not([data-theme='dark']) .proof-artifact-kicker,
html:not([data-theme='dark']) .teacher-assignment-kicker,
html[data-theme='light'] .section-label,
html[data-theme='light'] .pricing-tier,
html[data-theme='light'] .form-eyebrow,
html[data-theme='light'] .contact-card-kicker,
html[data-theme='light'] .proof-artifact-kicker,
html[data-theme='light'] .teacher-assignment-kicker {
  color: var(--lm-light-bronze) !important;
  text-shadow: none !important;
}

/* Light pricing cards: premium parchment surfaces with strong bronze ink. */
html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium),
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) {
  background:
    radial-gradient(ellipse at 82% 0%, rgba(154, 86, 20, 0.10), transparent 42%),
    linear-gradient(145deg, var(--lm-light-cream-card) 0%, var(--lm-light-cream-soft) 52%, var(--lm-light-cream-card-2) 100%) !important;
  border-color: rgba(92, 48, 13, 0.28) !important;
  color: var(--lm-light-ink) !important;
  box-shadow: 0 18px 44px rgba(61,26,5,0.14), inset 0 1px 0 rgba(255,255,255,0.36) !important;
}

html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-name,
html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-name,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price {
  color: var(--lm-light-ink) !important;
  -webkit-text-fill-color: currentColor !important;
}

html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-desc,
html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-features li,
html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price-note,
html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price span,
html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-paused-note,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-desc,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-features li,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price-note,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-price span,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-paused-note {
  color: var(--lm-light-ink-muted) !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-tier,
html:not([data-theme='dark']) .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-features li::before,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-tier,
html[data-theme='light'] .pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium) .pricing-features li::before {
  color: var(--lm-light-bronze-strong) !important;
}

/* Group waitlist card: no washed-out cream text on cream background. */
html:not([data-theme='dark']) .pricing-card--coming-soon .pricing-coming-soon-badge,
html:not([data-theme='dark']) .pricing-card--coming-soon .pricing-waitlist-badge,
html[data-theme='light'] .pricing-card--coming-soon .pricing-coming-soon-badge,
html[data-theme='light'] .pricing-card--coming-soon .pricing-waitlist-badge {
  background: linear-gradient(145deg, rgba(91, 45, 8, 0.12), rgba(255, 248, 235, 0.30)) !important;
  border-color: rgba(91,45,8,0.28) !important;
  color: #4b2504 !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) .pricing-card--coming-soon .pricing-best-for,
html:not([data-theme='dark']) .pricing-card--coming-soon .pricing-paused-note,
html[data-theme='light'] .pricing-card--coming-soon .pricing-best-for,
html[data-theme='light'] .pricing-card--coming-soon .pricing-paused-note {
  background: rgba(255, 247, 232, 0.64) !important;
  border-color: rgba(91,45,8,0.26) !important;
  border-left-color: #70400b !important;
  color: #3e2309 !important;
  text-shadow: none !important;
}

/* Featured/private/bundle panels are dark in light mode. Their text must stay cream. */
html:not([data-theme='dark']) .pricing-card--featured,
html:not([data-theme='dark']) .private-bundle-card--premium,
html:not([data-theme='dark']) .contact-diagnosis-card,
html:not([data-theme='dark']) .tom-proof-card,
html:not([data-theme='dark']) .system-question-box,
html:not([data-theme='dark']) .system-closing,
html[data-theme='light'] .pricing-card--featured,
html[data-theme='light'] .private-bundle-card--premium,
html[data-theme='light'] .contact-diagnosis-card,
html[data-theme='light'] .tom-proof-card,
html[data-theme='light'] .system-question-box,
html[data-theme='light'] .system-closing {
  color: var(--lm-dark-panel-cream) !important;
}

html:not([data-theme='dark']) .pricing-card--featured .pricing-name,
html:not([data-theme='dark']) .pricing-card--featured .pricing-price,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-title,
html:not([data-theme='dark']) .contact-diagnosis-card h3,
html:not([data-theme='dark']) .tom-proof-card blockquote,
html:not([data-theme='dark']) .system-question-intro,
html:not([data-theme='dark']) .system-bridge,
html:not([data-theme='dark']) .system-closing h3,
html[data-theme='light'] .pricing-card--featured .pricing-name,
html[data-theme='light'] .pricing-card--featured .pricing-price,
html[data-theme='light'] .private-bundle-card--premium .bundle-title,
html[data-theme='light'] .contact-diagnosis-card h3,
html[data-theme='light'] .tom-proof-card blockquote,
html[data-theme='light'] .system-question-intro,
html[data-theme='light'] .system-bridge,
html[data-theme='light'] .system-closing h3 {
  color: var(--lm-dark-panel-cream) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) .pricing-card--featured .pricing-desc,
html:not([data-theme='dark']) .pricing-card--featured .pricing-features li,
html:not([data-theme='dark']) .pricing-card--featured .pricing-price span,
html:not([data-theme='dark']) .pricing-card--featured .pricing-cta-note,
html:not([data-theme='dark']) .pricing-card--featured .pricing-best-for,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-intro,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-summary-list li,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-body-note,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-trust-note,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-stat,
html:not([data-theme='dark']) .contact-diagnosis-card .contact-card-note,
html:not([data-theme='dark']) .system-questions li,
html:not([data-theme='dark']) .system-closing p,
html:not([data-theme='dark']) .system-final-line,
html[data-theme='light'] .pricing-card--featured .pricing-desc,
html[data-theme='light'] .pricing-card--featured .pricing-features li,
html[data-theme='light'] .pricing-card--featured .pricing-price span,
html[data-theme='light'] .pricing-card--featured .pricing-cta-note,
html[data-theme='light'] .pricing-card--featured .pricing-best-for,
html[data-theme='light'] .private-bundle-card--premium .bundle-intro,
html[data-theme='light'] .private-bundle-card--premium .bundle-summary-list li,
html[data-theme='light'] .private-bundle-card--premium .bundle-body-note,
html[data-theme='light'] .private-bundle-card--premium .bundle-trust-note,
html[data-theme='light'] .private-bundle-card--premium .bundle-stat,
html[data-theme='light'] .contact-diagnosis-card .contact-card-note,
html[data-theme='light'] .system-questions li,
html[data-theme='light'] .system-closing p,
html[data-theme='light'] .system-final-line {
  color: var(--lm-dark-panel-muted) !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) .pricing-card--featured .pricing-tier,
html:not([data-theme='dark']) .pricing-card--featured .pricing-features li::before,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-kicker,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-price-large span,
html:not([data-theme='dark']) .private-bundle-card--premium .bundle-price-large small,
html:not([data-theme='dark']) .system-questions li::before,
html[data-theme='light'] .pricing-card--featured .pricing-tier,
html[data-theme='light'] .pricing-card--featured .pricing-features li::before,
html[data-theme='light'] .private-bundle-card--premium .bundle-kicker,
html[data-theme='light'] .private-bundle-card--premium .bundle-price-large span,
html[data-theme='light'] .private-bundle-card--premium .bundle-price-large small,
html[data-theme='light'] .system-questions li::before {
  color: var(--lm-dark-panel-soft) !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Buttons in light mode: rich, readable bronze/gold. */
html:not([data-theme='dark']) .btn-primary,
html[data-theme='light'] .btn-primary {
  color: #190c03 !important;
  text-shadow: none !important;
  background: linear-gradient(135deg, #e7bb58 0%, #c9862f 100%) !important;
  box-shadow: 0 12px 26px rgba(89,43,8,0.18), inset 0 1px 0 rgba(255,255,255,0.35) !important;
}

html:not([data-theme='dark']) .btn-outline,
html[data-theme='light'] .btn-outline {
  color: #572905 !important;
  border-color: rgba(87,41,5,0.48) !important;
  background: rgba(255,247,232,0.26) !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) .btn-outline:hover,
html:not([data-theme='dark']) .btn-outline:focus-visible,
html[data-theme='light'] .btn-outline:hover,
html[data-theme='light'] .btn-outline:focus-visible {
  color: #160a02 !important;
  background: linear-gradient(135deg, rgba(231,187,88,0.92), rgba(201,134,47,0.88)) !important;
}

/* ============================================================
   FINAL READABILITY LOCK — 2026-05-19
   Purpose: no dark letters on dark panels and no pale letters on
   cream panels. This is a contrast guard only; layout stays intact.
   ============================================================ */

:root {
  --lm-ink-strong: #1b0d03;
  --lm-ink-body: #4b2a0d;
  --lm-ink-muted-readable: #65401a;
  --lm-cream-strong: #fff3dc;
  --lm-cream-body: #f1d6a4;
  --lm-cream-muted-readable: #dfbd7a;
  --lm-gold-readable: #e2b14a;
  --lm-gold-readable-soft: #f0cf82;
}

/* Dark presentation areas: always use cream/gold text, even in light mode. */
html[data-theme='light'] .hero,
html[data-theme='dark'] .hero,
html[data-theme='light'] .results,
html[data-theme='dark'] .results,
html[data-theme='light'] .footer,
html[data-theme='dark'] .footer,
html[data-theme='light'] .call-confirmed-hero,
html[data-theme='dark'] .call-confirmed-hero,
html[data-theme='light'] .welcome-hero,
html[data-theme='dark'] .welcome-hero,
html[data-theme='light'] .checkout-hero,
html[data-theme='dark'] .checkout-hero,
html[data-theme='light'] .story-hero,
html[data-theme='dark'] .story-hero,
html[data-theme='light'] .private-page-hero,
html[data-theme='dark'] .private-page-hero,
html[data-theme='light'] .private-checkout-hero,
html[data-theme='dark'] .private-checkout-hero,
html[data-theme='light'] .founder-story-hero,
html[data-theme='dark'] .founder-story-hero,
html[data-theme='light'] .pricing-card--featured,
html[data-theme='dark'] .pricing-card--featured,
html[data-theme='light'] .private-bundle-card--premium,
html[data-theme='dark'] .private-bundle-card--premium,
html[data-theme='light'] .contact-diagnosis-card,
html[data-theme='dark'] .contact-diagnosis-card,
html[data-theme='light'] .tom-proof-card,
html[data-theme='dark'] .tom-proof-card,
html[data-theme='light'] .system-question-box,
html[data-theme='dark'] .system-question-box,
html[data-theme='light'] .system-closing,
html[data-theme='dark'] .system-closing {
  color: var(--lm-cream-strong) !important;
}

html[data-theme='light'] .hero .hero-heading,
html[data-theme='dark'] .hero .hero-heading,
html[data-theme='light'] .hero .hero-heading > :not(.accent),
html[data-theme='dark'] .hero .hero-heading > :not(.accent),
html[data-theme='light'] .hero :is(h1,h2,h3,h4,.section-heading,.pillar-label),
html[data-theme='dark'] .hero :is(h1,h2,h3,h4,.section-heading,.pillar-label),
html[data-theme='light'] .results :is(h1,h2,h3,h4,.section-heading,.testimonial-author),
html[data-theme='dark'] .results :is(h1,h2,h3,h4,.section-heading,.testimonial-author),
html[data-theme='light'] .call-confirmed-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='dark'] .call-confirmed-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .welcome-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='dark'] .welcome-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .checkout-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='dark'] .checkout-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .story-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='dark'] .story-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .private-page-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='dark'] .private-page-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .private-checkout-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='dark'] .private-checkout-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .founder-story-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='dark'] .founder-story-hero :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .pricing-card--featured :is(h1,h2,h3,h4,.pricing-name,.pricing-price),
html[data-theme='dark'] .pricing-card--featured :is(h1,h2,h3,h4,.pricing-name,.pricing-price),
html[data-theme='light'] .private-bundle-card--premium :is(h1,h2,h3,h4,.bundle-title),
html[data-theme='dark'] .private-bundle-card--premium :is(h1,h2,h3,h4,.bundle-title),
html[data-theme='light'] .contact-diagnosis-card :is(h1,h2,h3,h4),
html[data-theme='dark'] .contact-diagnosis-card :is(h1,h2,h3,h4),
html[data-theme='light'] .tom-proof-card blockquote,
html[data-theme='dark'] .tom-proof-card blockquote,
html[data-theme='light'] .system-question-box :is(h1,h2,h3,h4,.system-question-intro),
html[data-theme='dark'] .system-question-box :is(h1,h2,h3,h4,.system-question-intro),
html[data-theme='light'] .system-closing :is(h1,h2,h3,h4),
html[data-theme='dark'] .system-closing :is(h1,h2,h3,h4) {
  color: var(--lm-cream-strong) !important;
  -webkit-text-fill-color: var(--lm-cream-strong) !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.32) !important;
}

html[data-theme='light'] .hero .hero-heading .accent,
html[data-theme='dark'] .hero .hero-heading .accent,
html[data-theme='light'] .section-heading .accent,
html[data-theme='dark'] .section-heading .accent {
  background: linear-gradient(135deg, #f3d99a 0%, #e0ad42 52%, #b87325 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

html[data-theme='light'] .hero :is(.hero-sub,.hero-cta-microcopy,.hero-text-link,.pillar-desc),
html[data-theme='dark'] .hero :is(.hero-sub,.hero-cta-microcopy,.hero-text-link,.pillar-desc),
html[data-theme='light'] .results :is(p,li,.section-sub),
html[data-theme='dark'] .results :is(p,li,.section-sub),
html[data-theme='light'] .call-confirmed-hero :is(p,li,.section-sub,.call-confirmed-lead),
html[data-theme='dark'] .call-confirmed-hero :is(p,li,.section-sub,.call-confirmed-lead),
html[data-theme='light'] .welcome-hero :is(p,li,.section-sub,.welcome-lead),
html[data-theme='dark'] .welcome-hero :is(p,li,.section-sub,.welcome-lead),
html[data-theme='light'] .checkout-hero :is(p,li,.section-sub,.private-checkout-lead),
html[data-theme='dark'] .checkout-hero :is(p,li,.section-sub,.private-checkout-lead),
html[data-theme='light'] .story-hero :is(p,li,.section-sub),
html[data-theme='dark'] .story-hero :is(p,li,.section-sub),
html[data-theme='light'] .private-page-hero :is(p,li,.section-sub),
html[data-theme='dark'] .private-page-hero :is(p,li,.section-sub),
html[data-theme='light'] .private-checkout-hero :is(p,li,.section-sub),
html[data-theme='dark'] .private-checkout-hero :is(p,li,.section-sub),
html[data-theme='light'] .founder-story-hero :is(p,li,.section-sub),
html[data-theme='dark'] .founder-story-hero :is(p,li,.section-sub),
html[data-theme='light'] .pricing-card--featured :is(p,li,.pricing-desc,.pricing-cta-note,.pricing-best-for,.pricing-features li),
html[data-theme='dark'] .pricing-card--featured :is(p,li,.pricing-desc,.pricing-cta-note,.pricing-best-for,.pricing-features li),
html[data-theme='light'] .private-bundle-card--premium :is(p,li,.bundle-intro,.bundle-body-note,.bundle-trust-note,.bundle-stat),
html[data-theme='dark'] .private-bundle-card--premium :is(p,li,.bundle-intro,.bundle-body-note,.bundle-trust-note,.bundle-stat),
html[data-theme='light'] .contact-diagnosis-card :is(p,li,.contact-card-note),
html[data-theme='dark'] .contact-diagnosis-card :is(p,li,.contact-card-note),
html[data-theme='light'] .tom-proof-card :is(p,li,.testimonial-author),
html[data-theme='dark'] .tom-proof-card :is(p,li,.testimonial-author),
html[data-theme='light'] .system-question-box :is(p,li,.system-questions li),
html[data-theme='dark'] .system-question-box :is(p,li,.system-questions li),
html[data-theme='light'] .system-closing :is(p,li,.system-final-line),
html[data-theme='dark'] .system-closing :is(p,li,.system-final-line) {
  color: var(--lm-cream-body) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html[data-theme='light'] .hero :is(.hero-badge,.section-label,.pillar-icon),
html[data-theme='dark'] .hero :is(.hero-badge,.section-label,.pillar-icon),
html[data-theme='light'] .pricing-card--featured :is(.pricing-tier,.pricing-featured-badge,.pricing-features li::before),
html[data-theme='dark'] .pricing-card--featured :is(.pricing-tier,.pricing-featured-badge,.pricing-features li::before),
html[data-theme='light'] .private-bundle-card--premium :is(.bundle-kicker,.bundle-save-pill),
html[data-theme='dark'] .private-bundle-card--premium :is(.bundle-kicker,.bundle-save-pill),
html[data-theme='light'] .call-confirmed-hero :is(.section-label,.call-confirmed-label),
html[data-theme='dark'] .call-confirmed-hero :is(.section-label,.call-confirmed-label),
html[data-theme='light'] .welcome-hero :is(.section-label,.welcome-status-pill),
html[data-theme='dark'] .welcome-hero :is(.section-label,.welcome-status-pill) {
  color: var(--lm-gold-readable-soft) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

/* Light surfaces: always use strong brown ink, never pale gold on cream. */
html[data-theme='light'] :is(.pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium),.teacher-card,.coach-card,.founder-teaser-card,.story-proof-card,.story-side-card,.story-closing-card,.contact-form,.contact-fit-card,.contact-email-card,.faq-card,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.home-booking-card,.system-card,.proof-artifact-card) {
  color: var(--lm-ink-strong) !important;
}

html[data-theme='light'] :is(.pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium),.teacher-card,.coach-card,.founder-teaser-card,.story-proof-card,.story-side-card,.story-closing-card,.contact-form,.contact-fit-card,.contact-email-card,.faq-card,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.home-booking-card,.system-card,.proof-artifact-card) :is(h1,h2,h3,h4,.pricing-name,.teacher-name,.section-heading,.faq-question) {
  color: var(--lm-ink-strong) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html[data-theme='light'] :is(.pricing-card:not(.pricing-card--featured):not(.private-bundle-card--premium),.teacher-card,.coach-card,.founder-teaser-card,.story-proof-card,.story-side-card,.story-closing-card,.contact-form,.contact-fit-card,.contact-email-card,.faq-card,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.home-booking-card,.system-card,.proof-artifact-card) :is(p,li,span:not(.accent),.pricing-desc,.teacher-bio,.coach-bio,.faq-answer,.form-helper) {
  color: var(--lm-ink-body) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

/* Dark mode regular surfaces: cream text unless a section has its own safe light-card rules. */
html[data-theme='dark'] :is(.pricing-card,.teacher-card,.coach-card,.founder-teaser-card,.story-proof-card,.story-side-card,.story-closing-card,.contact-form,.faq-card,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.home-booking-card,.system-card,.proof-artifact-card) :is(h1,h2,h3,h4,.pricing-name,.teacher-name,.section-heading,.faq-question) {
  color: var(--lm-cream-strong) !important;
  -webkit-text-fill-color: currentColor !important;
}

html[data-theme='dark'] :is(.pricing-card,.teacher-card,.coach-card,.founder-teaser-card,.story-proof-card,.story-side-card,.story-closing-card,.contact-form,.faq-card,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.home-booking-card,.system-card,.proof-artifact-card) :is(p,li,span:not(.accent),.pricing-desc,.teacher-bio,.coach-bio,.faq-answer,.form-helper) {
  color: var(--lm-cream-body) !important;
  -webkit-text-fill-color: currentColor !important;
}

/* ============================================================
   TRUE FINAL CONTRAST LOCK — 2026-05-19
   No dark text on dark bronze panels. No pale text on cream panels.
   This is intentionally last in the file so earlier palette patches
   cannot override readability again.
   ============================================================ */

:root {
  --lm-final-cream-strong: #fff7e8;
  --lm-final-cream-body: #f3d9a8;
  --lm-final-cream-muted: #e3bd73;
  --lm-final-ink-strong: #1f1005;
  --lm-final-ink-body: #4f2f12;
  --lm-final-bronze: #7a3f08;
}

/* DARK PANELS: text must stay light in BOTH themes. */
html :is(
  .hero,
  .first-week-card,
  .tom-proof-card,
  .results,
  .footer,
  .pricing-card--featured,
  .private-bundle-card--premium,
  .contact-diagnosis-card,
  .system-question-box,
  .system-closing,
  .checkout-hero,
  .welcome-hero,
  .call-confirmed-hero,
  .story-hero,
  .founder-story-hero,
  .private-page-hero,
  .private-checkout-hero,
  .payment-flow-block
) {
  color: var(--lm-final-cream-strong) !important;
}

html :is(
  .hero,
  .first-week-card,
  .tom-proof-card,
  .results,
  .footer,
  .pricing-card--featured,
  .private-bundle-card--premium,
  .contact-diagnosis-card,
  .system-question-box,
  .system-closing,
  .checkout-hero,
  .welcome-hero,
  .call-confirmed-hero,
  .story-hero,
  .founder-story-hero,
  .private-page-hero,
  .private-checkout-hero,
  .payment-flow-block
) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.bundle-title,.faq-question,.system-question-intro,.testimonial-author) {
  color: var(--lm-final-cream-strong) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.34) !important;
}

html :is(
  .hero,
  .first-week-card,
  .tom-proof-card,
  .results,
  .footer,
  .pricing-card--featured,
  .private-bundle-card--premium,
  .contact-diagnosis-card,
  .system-question-box,
  .system-closing,
  .checkout-hero,
  .welcome-hero,
  .call-confirmed-hero,
  .story-hero,
  .founder-story-hero,
  .private-page-hero,
  .private-checkout-hero,
  .payment-flow-block
) :is(p,li,small,label,.section-sub,.pricing-desc,.pricing-cta-note,.pricing-best-for,.bundle-intro,.bundle-body-note,.bundle-trust-note,.contact-card-note,.system-final-line,.hero-sub,.hero-cta-microcopy) {
  color: var(--lm-final-cream-body) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html :is(
  .hero,
  .first-week-card,
  .tom-proof-card,
  .results,
  .footer,
  .pricing-card--featured,
  .private-bundle-card--premium,
  .contact-diagnosis-card,
  .system-question-box,
  .system-closing,
  .checkout-hero,
  .welcome-hero,
  .call-confirmed-hero,
  .story-hero,
  .founder-story-hero,
  .private-page-hero,
  .private-checkout-hero,
  .payment-flow-block
) :is(.section-label,.pricing-tier,.bundle-kicker,.pillar-icon,.testimonial-stars,.first-week-list li::before,.pricing-features li::before) {
  color: var(--lm-final-cream-muted) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

/* Preserve intentional gold gradient accent words inside dark heroes. */
html :is(.hero,.story-hero,.founder-story-hero,.checkout-hero,.welcome-hero,.call-confirmed-hero) .accent,
html :is(.hero,.story-hero,.founder-story-hero,.checkout-hero,.welcome-hero,.call-confirmed-hero) .section-heading .accent {
  background: linear-gradient(135deg, #fff0bf 0%, #e0ad42 50%, #b87325 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

/* The first-week diagnostic is a dark card; older light-mode rules were turning it brown-on-brown. */
html .first-week-card {
  background:
    radial-gradient(circle at 82% 0%, rgba(214,169,77,0.13), transparent 18rem),
    linear-gradient(135deg, rgba(18,8,3,0.94), rgba(58,27,8,0.88) 58%, rgba(91,42,11,0.78)) !important;
  border-color: rgba(240,213,154,0.22) !important;
  box-shadow: 0 24px 60px rgba(31,12,2,0.28), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}
html .first-week-card .section-label {
  color: var(--lm-final-cream-muted) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}
html .first-week-card h2 {
  color: var(--lm-final-cream-strong) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.38) !important;
}
html .first-week-card p {
  color: var(--lm-final-cream-body) !important;
  -webkit-text-fill-color: currentColor !important;
}
html .first-week-card .first-week-list li {
  background: rgba(255,247,232,0.075) !important;
  border-color: rgba(240,213,154,0.20) !important;
  color: var(--lm-final-cream-body) !important;
  -webkit-text-fill-color: currentColor !important;
}
html .first-week-card .first-week-list li::before {
  color: var(--lm-final-cream-muted) !important;
  -webkit-text-fill-color: currentColor !important;
}

/* LIGHT/PARCHMENT PANELS: text must stay dark enough to read. */
html[data-theme='light'] :is(
  .home-booking-card,
  .pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.private-bundle-card--premium),
  .teacher-card:not(.coach-card--founder),
  .coach-card,
  .founder-teaser-card,
  .story-proof-card,
  .story-side-card,
  .story-closing-card,
  .contact-form,
  .contact-fit-card,
  .contact-email-card,
  .faq-card,
  .faq-item,
  .legal-card,
  .privacy-wrap,
  .checkout-plan-card,
  .checkout-policy-card,
  .welcome-step-card,
  .call-confirmed-card,
  .system-card,
  .proof-artifact-card,
  .method-proof-card
) {
  color: var(--lm-final-ink-strong) !important;
}

html[data-theme='light'] :is(
  .home-booking-card,
  .pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.private-bundle-card--premium),
  .teacher-card:not(.coach-card--founder),
  .coach-card,
  .founder-teaser-card,
  .story-proof-card,
  .story-side-card,
  .story-closing-card,
  .contact-form,
  .contact-fit-card,
  .contact-email-card,
  .faq-card,
  .faq-item,
  .legal-card,
  .privacy-wrap,
  .checkout-plan-card,
  .checkout-policy-card,
  .welcome-step-card,
  .call-confirmed-card,
  .system-card,
  .proof-artifact-card,
  .method-proof-card
) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.teacher-name,.faq-question) {
  color: var(--lm-final-ink-strong) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html[data-theme='light'] :is(
  .home-booking-card,
  .pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.private-bundle-card--premium),
  .teacher-card:not(.coach-card--founder),
  .coach-card,
  .founder-teaser-card,
  .story-proof-card,
  .story-side-card,
  .story-closing-card,
  .contact-form,
  .contact-fit-card,
  .contact-email-card,
  .faq-card,
  .faq-item,
  .legal-card,
  .privacy-wrap,
  .checkout-plan-card,
  .checkout-policy-card,
  .welcome-step-card,
  .call-confirmed-card,
  .system-card,
  .proof-artifact-card,
  .method-proof-card
) :is(p,li,small,label,.pricing-desc,.teacher-bio,.coach-bio,.faq-answer,.form-helper) {
  color: var(--lm-final-ink-body) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html[data-theme='light'] :is(
  .home-booking-card,
  .pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.private-bundle-card--premium),
  .teacher-card:not(.coach-card--founder),
  .coach-card,
  .founder-teaser-card,
  .story-proof-card,
  .story-side-card,
  .story-closing-card,
  .contact-form,
  .contact-fit-card,
  .contact-email-card,
  .faq-card,
  .faq-item,
  .legal-card,
  .privacy-wrap,
  .checkout-plan-card,
  .checkout-policy-card,
  .welcome-step-card,
  .call-confirmed-card,
  .system-card,
  .proof-artifact-card,
  .method-proof-card
) :is(.section-label,.pricing-tier,.proof-artifact-kicker,.form-eyebrow,.contact-card-kicker,.teacher-role,.coach-role) {
  color: var(--lm-final-bronze) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}


/* ============================================================
   LANGUAGE MONK FINAL CONTRAST SAFETY NET — AUDIT APPLY REFINE x3
   Duplicated from the inline critical lock so deployment, cache, and local previews stay consistent.
   ============================================================ */
/* LANGUAGE MONK CRITICAL CONTRAST LOCK — 2026-05-19 FINAL
   Rule: light text on dark panels, dark text on light panels. Layout untouched. */
:root{
  --lm-contrast-cream-strong:#fff8ec;
  --lm-contrast-cream-body:#f6dfb0;
  --lm-contrast-gold:#f2c76e;
  --lm-contrast-ink-strong:#211005;
  --lm-contrast-ink-body:#4b2a10;
  --lm-contrast-bronze:#74400a;
}
html body :is(.hero,.first-week-card,.homepage-proof-callout,.tom-proof-card,.system-section,.system-path-panel,.system-question-box,.system-closing,.method-proof-card,.pricing-card--featured,.private-bundle-card--premium,.pricing-trust-block,.payment-flow-block,.contact-diagnosis-card,.checkout-hero,.welcome-hero,.welcome-student-hero,.call-confirmed-hero,.founder-story-hero,.story-hero,.private-page-hero,.private-checkout-hero,.story-video-card,.story-closing-card,.footer){color:var(--lm-contrast-cream-strong)!important;}
html body :is(.hero,.first-week-card,.homepage-proof-callout,.tom-proof-card,.system-section,.system-path-panel,.system-question-box,.system-closing,.method-proof-card,.pricing-card--featured,.private-bundle-card--premium,.pricing-trust-block,.payment-flow-block,.contact-diagnosis-card,.checkout-hero,.welcome-hero,.welcome-student-hero,.call-confirmed-hero,.founder-story-hero,.story-hero,.private-page-hero,.private-checkout-hero,.story-video-card,.story-closing-card,.footer) :is(h1,h2,h3,h4,h5,h6,.section-heading,.hero-heading,.pricing-name,.bundle-title,.system-question-intro,.testimonial-author,.story-video-title):not(.btn):not(.btn *){color:var(--lm-contrast-cream-strong)!important;-webkit-text-fill-color:var(--lm-contrast-cream-strong)!important;text-shadow:0 2px 14px rgba(0,0,0,.40)!important;}
html body :is(.hero,.first-week-card,.homepage-proof-callout,.tom-proof-card,.system-section,.system-path-panel,.system-question-box,.system-closing,.method-proof-card,.pricing-card--featured,.private-bundle-card--premium,.pricing-trust-block,.payment-flow-block,.contact-diagnosis-card,.checkout-hero,.welcome-hero,.welcome-student-hero,.call-confirmed-hero,.founder-story-hero,.story-hero,.private-page-hero,.private-checkout-hero,.story-video-card,.story-closing-card,.footer) :is(p,li,small,label,strong,em,.hero-sub,.section-sub,.pricing-desc,.pricing-cta-note,.pricing-best-for,.bundle-intro,.bundle-body-note,.bundle-trust-note,.system-final-line,.contact-card-note,.story-video-copy,.footer-text):not(.btn):not(.btn *){color:var(--lm-contrast-cream-body)!important;-webkit-text-fill-color:var(--lm-contrast-cream-body)!important;text-shadow:none!important;}
html body :is(.hero,.first-week-card,.homepage-proof-callout,.tom-proof-card,.system-section,.system-path-panel,.system-question-box,.system-closing,.method-proof-card,.pricing-card--featured,.private-bundle-card--premium,.pricing-trust-block,.payment-flow-block,.contact-diagnosis-card,.checkout-hero,.welcome-hero,.welcome-student-hero,.call-confirmed-hero,.founder-story-hero,.story-hero,.private-page-hero,.private-checkout-hero,.story-video-card,.story-closing-card,.footer) :is(.section-label,.pricing-tier,.bundle-kicker,.pillar-icon,.testimonial-stars,.first-week-list li::before,.pricing-features li::before,.proof-artifact-kicker):not(.btn):not(.btn *){color:var(--lm-contrast-gold)!important;-webkit-text-fill-color:var(--lm-contrast-gold)!important;text-shadow:none!important;}
html body .first-week-card,html[data-theme='light'] body .first-week-card,html[data-theme='dark'] body .first-week-card{background:radial-gradient(circle at 82% 0%,rgba(242,199,110,.16),transparent 18rem),linear-gradient(135deg,rgba(17,7,2,.97),rgba(55,24,6,.94) 58%,rgba(89,40,10,.84))!important;border-color:rgba(246,223,176,.26)!important;box-shadow:0 24px 64px rgba(26,10,2,.32),inset 0 1px 0 rgba(255,255,255,.06)!important;}
html body .first-week-card :is(h1,h2,h3,h4,h5,h6){color:#fff8ec!important;-webkit-text-fill-color:#fff8ec!important;text-shadow:0 2px 16px rgba(0,0,0,.48)!important;opacity:1!important;mix-blend-mode:normal!important;}
html body .first-week-card :is(p,li,span:not(.accent),strong,em,small){color:#f6dfb0!important;-webkit-text-fill-color:#f6dfb0!important;text-shadow:none!important;opacity:1!important;mix-blend-mode:normal!important;}
html body .first-week-card .section-label,html body .first-week-card .first-week-list li::before{color:#f2c76e!important;-webkit-text-fill-color:#f2c76e!important;text-shadow:none!important;opacity:1!important;mix-blend-mode:normal!important;}
html body .first-week-card .first-week-list li{background:rgba(255,248,236,.085)!important;border-color:rgba(246,223,176,.24)!important;}
html[data-theme='light'] body :is(.nav,.home-booking-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.private-bundle-card--premium),.teacher-card:not(.coach-card--founder),.coach-card:not(.coach-card--founder),.founder-teaser-card,.story-proof-card,.story-side-card,.contact-form,.contact-fit-card,.contact-email-card,.faq-card,.faq-item,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.system-card,.proof-artifact-card){color:var(--lm-contrast-ink-strong)!important;}
html[data-theme='light'] body :is(.nav,.home-booking-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.private-bundle-card--premium),.teacher-card:not(.coach-card--founder),.coach-card:not(.coach-card--founder),.founder-teaser-card,.story-proof-card,.story-side-card,.contact-form,.contact-fit-card,.contact-email-card,.faq-card,.faq-item,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.system-card,.proof-artifact-card) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.teacher-name,.coach-name,.faq-question):not(.btn):not(.btn *){color:var(--lm-contrast-ink-strong)!important;-webkit-text-fill-color:var(--lm-contrast-ink-strong)!important;text-shadow:none!important;}
html[data-theme='light'] body :is(.nav,.home-booking-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.private-bundle-card--premium),.teacher-card:not(.coach-card--founder),.coach-card:not(.coach-card--founder),.founder-teaser-card,.story-proof-card,.story-side-card,.contact-form,.contact-fit-card,.contact-email-card,.faq-card,.faq-item,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.system-card,.proof-artifact-card) :is(p,li,span:not(.accent),small,label,strong,.pricing-desc,.teacher-bio,.coach-bio,.faq-answer,.form-helper):not(.btn):not(.btn *){color:var(--lm-contrast-ink-body)!important;-webkit-text-fill-color:var(--lm-contrast-ink-body)!important;text-shadow:none!important;}
html[data-theme='light'] body :is(.home-booking-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.private-bundle-card--premium),.teacher-card:not(.coach-card--founder),.coach-card:not(.coach-card--founder),.founder-teaser-card,.story-proof-card,.story-side-card,.contact-form,.contact-fit-card,.contact-email-card,.faq-card,.faq-item,.legal-card,.privacy-wrap,.checkout-plan-card,.checkout-policy-card,.welcome-step-card,.call-confirmed-card,.system-card,.proof-artifact-card) :is(.section-label,.pricing-tier,.teacher-role,.coach-role,.proof-artifact-kicker,.form-eyebrow,.contact-card-kicker):not(.btn):not(.btn *){color:var(--lm-contrast-bronze)!important;-webkit-text-fill-color:var(--lm-contrast-bronze)!important;text-shadow:none!important;}
html body :is(.btn,.btn *,button,button *){-webkit-text-fill-color:currentColor;}
html body :is(.hero,.story-hero,.founder-story-hero,.checkout-hero,.welcome-hero,.call-confirmed-hero) .accent{background:linear-gradient(135deg,#fff0bf 0%,#dfad46 50%,#b87325 100%)!important;-webkit-background-clip:text!important;background-clip:text!important;color:transparent!important;-webkit-text-fill-color:transparent!important;text-shadow:none!important;}


/* Emergency specificity override for the First 7 Days diagnostic card. */
html[data-theme='light'] body[data-page='home'] section.hero#home .hero-inner.container .first-week-card.first-week-card :is(h1,h2,h3,h4,h5,h6),
html[data-theme='dark'] body[data-page='home'] section.hero#home .hero-inner.container .first-week-card.first-week-card :is(h1,h2,h3,h4,h5,h6){color:#fff8ec!important;-webkit-text-fill-color:#fff8ec!important;text-shadow:0 2px 16px rgba(0,0,0,.48)!important;}
html[data-theme='light'] body[data-page='home'] section.hero#home .hero-inner.container .first-week-card.first-week-card :is(p,li,span:not(.accent),strong,em,small),
html[data-theme='dark'] body[data-page='home'] section.hero#home .hero-inner.container .first-week-card.first-week-card :is(p,li,span:not(.accent),strong,em,small){color:#f6dfb0!important;-webkit-text-fill-color:#f6dfb0!important;text-shadow:none!important;}
html[data-theme='light'] body[data-page='home'] section.hero#home .hero-inner.container .first-week-card.first-week-card .section-label,
html[data-theme='dark'] body[data-page='home'] section.hero#home .hero-inner.container .first-week-card.first-week-card .section-label,
html[data-theme='light'] body[data-page='home'] section.hero#home .hero-inner.container .first-week-card.first-week-card .first-week-list li::before,
html[data-theme='dark'] body[data-page='home'] section.hero#home .hero-inner.container .first-week-card.first-week-card .first-week-list li::before{color:#f2c76e!important;-webkit-text-fill-color:#f2c76e!important;text-shadow:none!important;}


/* ============================================================
   LANGUAGE MONK — Pricing Refresh 2026-05-19
   Starter Sprint + weekly/monthly packs. Uses existing brand hues only.
   ============================================================ */
.pricing-founding-note {
  max-width: 760px;
  margin: 0 auto var(--space-8);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.65;
}
.pricing-price-note,
.checkout-plan-price span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 700;
}
.pricing-card--featured .pricing-price-note,
.pricing-card--featured .checkout-plan-price span {
  color: rgba(246,223,176,0.82) !important;
}
.bundle-summary-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: var(--space-5) 0 0;
  list-style: none;
}
.bundle-summary-list li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(246,223,176,0.86);
  line-height: 1.55;
}
.bundle-summary-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold-light);
  font-weight: 900;
}
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-price span:not([data-i18n="weekly_price_suffix"]) {
  color: var(--color-gold-light) !important;
  -webkit-text-fill-color: var(--color-gold-light) !important;
}
[data-theme='dark'] .pricing-founding-note,
[data-theme='dark'] .pricing-price-note,
[data-theme='dark'] .checkout-plan-price span {
  color: var(--color-text-muted);
}

/* ============================================================
   EMERGENCY RESTORE + PRICING TEXT-FIT LOCK — 2026-05-19
   Purpose: restore the full site CSS links and only fix oversized
   custom-request text inside the pricing card.
   No global layout, color-system, or Cloudflare/security changes.
   ============================================================ */
.private-bundle-card--premium .bundle-pricing-panel,
.private-bundle-card--premium .bundle-price-large {
  min-width: 0 !important;
  max-width: 100% !important;
}

.private-bundle-card--premium .bundle-price-large {
  overflow: hidden !important;
}

.private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  text-wrap: balance !important;
  color: #e0b44f !important;
  -webkit-text-fill-color: #e0b44f !important;
  background: none !important;
  font-size: clamp(2.05rem, 1.35rem + 1.35vw, 2.95rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
}

html[lang="es"] .private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
  font-size: clamp(1.35rem, 0.95rem + 1.25vw, 2.05rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.018em !important;
}

@media (max-width: 1080px) {
  .private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
    font-size: clamp(2.15rem, 6.5vw, 3rem) !important;
  }
  html[lang="es"] .private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
    font-size: clamp(1.45rem, 5vw, 2.2rem) !important;
  }
}

@media (max-width: 520px) {
  .private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
    font-size: clamp(1.85rem, 10vw, 2.55rem) !important;
    line-height: 1.04 !important;
  }
  html[lang="es"] .private-bundle-card--premium .bundle-price-large span[data-i18n="bundle_price_amount"] {
    font-size: clamp(1.2rem, 7.6vw, 1.8rem) !important;
  }
}


/* ============================================================
   LANGUAGE MONK FINAL CONTRAST + TEXT-FIT REPAIR — AUDIT APPLY REFINE x5
   Scope: pricing payment flow, private checkout hero, welcome hero,
   legal/security links, and recurring light-on-light/dark-on-light mistakes.
   Rule: dark text on light cream surfaces; light text only on true dark espresso panels.
   ============================================================ */
:root {
  --lm-final-ink-strong: #1f1005;
  --lm-final-ink-body: #523313;
  --lm-final-bronze-link: #6f3907;
  --lm-final-bronze-soft: #8a4b12;
  --lm-final-cream: #fff8ec;
  --lm-final-cream-body: #f6dfb0;
  --lm-final-gold: #f2c76e;
}

/* 1) Pricing payment flow: this section is a LIGHT surface in light mode. */
html[data-theme='light'] body[data-page='pricing'] .payment-flow-block,
body[data-page='pricing'] .payment-flow-block {
  color: var(--lm-final-ink-strong) !important;
  -webkit-text-fill-color: var(--lm-final-ink-strong) !important;
}
html[data-theme='light'] body[data-page='pricing'] .payment-flow-block :is(h1,h2,h3,h4,h5,h6,.section-label),
body[data-page='pricing'] .payment-flow-block :is(h1,h2,h3,h4,h5,h6,.section-label) {
  color: var(--lm-final-ink-strong) !important;
  -webkit-text-fill-color: var(--lm-final-ink-strong) !important;
  text-shadow: none !important;
}
html[data-theme='light'] body[data-page='pricing'] .payment-flow-block :is(p,li,span,small,strong,em):not(.payment-step-number):not(.btn):not(.btn *),
body[data-page='pricing'] .payment-flow-block :is(p,li,span,small,strong,em):not(.payment-step-number):not(.btn):not(.btn *) {
  color: var(--lm-final-ink-body) !important;
  -webkit-text-fill-color: var(--lm-final-ink-body) !important;
  text-shadow: none !important;
}
html[data-theme='light'] body[data-page='pricing'] .payment-flow-copy .section-label,
body[data-page='pricing'] .payment-flow-copy .section-label {
  color: var(--lm-final-bronze-link) !important;
  -webkit-text-fill-color: var(--lm-final-bronze-link) !important;
}
html[data-theme='light'] body[data-page='pricing'] .payment-flow-steps li,
body[data-page='pricing'] .payment-flow-steps li {
  background: linear-gradient(145deg, rgba(255,248,236,0.50), rgba(239,213,143,0.18)) !important;
  border-color: rgba(132,69,20,0.22) !important;
  color: var(--lm-final-ink-body) !important;
  -webkit-text-fill-color: var(--lm-final-ink-body) !important;
}
html[data-theme='light'] body[data-page='pricing'] .payment-step-number,
body[data-page='pricing'] .payment-step-number {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  text-shadow: 0 1px 0 rgba(19,8,3,0.35) !important;
}
html[data-theme='light'] body[data-page='pricing'] .payment-flow-note,
body[data-page='pricing'] .payment-flow-note {
  background: linear-gradient(145deg, rgba(132,69,20,0.14), rgba(239,213,143,0.20)) !important;
  border-color: rgba(132,69,20,0.24) !important;
  color: var(--lm-final-ink-strong) !important;
  -webkit-text-fill-color: var(--lm-final-ink-strong) !important;
  text-shadow: none !important;
}

/* 2) Private checkout and welcome student heroes are LIGHT surfaces in light mode. */
html[data-theme='light'] body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero),
body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero),
html[data-theme='light'] body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero),
body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) {
  color: var(--lm-final-ink-strong) !important;
  -webkit-text-fill-color: var(--lm-final-ink-strong) !important;
}
html[data-theme='light'] body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero) :is(h1,h2,h3,h4,h5,h6,.section-label),
body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero) :is(h1,h2,h3,h4,h5,h6,.section-label),
html[data-theme='light'] body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) :is(h1,h2,h3,h4,h5,h6,.section-label),
body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) :is(h1,h2,h3,h4,h5,h6,.section-label) {
  color: var(--lm-final-ink-strong) !important;
  -webkit-text-fill-color: var(--lm-final-ink-strong) !important;
  text-shadow: none !important;
}
html[data-theme='light'] body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero) :is(p,li,span,small,strong,em):not(.btn):not(.btn *):not(.accent),
body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero) :is(p,li,span,small,strong,em):not(.btn):not(.btn *):not(.accent),
html[data-theme='light'] body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) :is(p,li,span,small,strong,em):not(.btn):not(.btn *):not(.accent),
body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) :is(p,li,span,small,strong,em):not(.btn):not(.btn *):not(.accent) {
  color: var(--lm-final-ink-body) !important;
  -webkit-text-fill-color: var(--lm-final-ink-body) !important;
  text-shadow: none !important;
}
html[data-theme='light'] body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero) .section-label,
body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero) .section-label,
html[data-theme='light'] body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) .section-label,
body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) .section-label {
  color: var(--lm-final-bronze-link) !important;
  -webkit-text-fill-color: var(--lm-final-bronze-link) !important;
}
html[data-theme='light'] body[data-page='checkout'] .checkout-clean-list li,
body[data-page='checkout'] .checkout-clean-list li,
html[data-theme='light'] body[data-page='welcome-student'] .welcome-step-card,
body[data-page='welcome-student'] .welcome-step-card {
  color: var(--lm-final-ink-body) !important;
  -webkit-text-fill-color: var(--lm-final-ink-body) !important;
}

/* 3) Legal/security links: darker bronze so policy pages pass contrast. */
html[data-theme='light'] :is(.privacy-wrap,.security-wrap,.legal-card) a,
body :is(.privacy-wrap,.security-wrap,.legal-card) a {
  color: var(--lm-final-bronze-link) !important;
  -webkit-text-fill-color: var(--lm-final-bronze-link) !important;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}
html[data-theme='light'] :is(.privacy-wrap,.security-wrap,.legal-card) a:hover,
body :is(.privacy-wrap,.security-wrap,.legal-card) a:hover {
  color: var(--lm-final-ink-strong) !important;
  -webkit-text-fill-color: var(--lm-final-ink-strong) !important;
}

/* 4) Preserve dark-mode design: true dark surfaces stay light on dark. */
html[data-theme='dark'] body[data-page='pricing'] .payment-flow-block,
html[data-theme='dark'] body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero),
html[data-theme='dark'] body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) {
  color: var(--lm-final-cream) !important;
  -webkit-text-fill-color: var(--lm-final-cream) !important;
}
html[data-theme='dark'] body[data-page='pricing'] .payment-flow-block :is(h1,h2,h3,h4,h5,h6),
html[data-theme='dark'] body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero) :is(h1,h2,h3,h4,h5,h6),
html[data-theme='dark'] body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) :is(h1,h2,h3,h4,h5,h6) {
  color: var(--lm-final-cream) !important;
  -webkit-text-fill-color: var(--lm-final-cream) !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.40) !important;
}
html[data-theme='dark'] body[data-page='pricing'] .payment-flow-block :is(p,li,span,small,strong,em):not(.payment-step-number):not(.btn):not(.btn *),
html[data-theme='dark'] body[data-page='checkout'] :is(.private-page-hero,.private-checkout-hero) :is(p,li,span,small,strong,em):not(.btn):not(.btn *),
html[data-theme='dark'] body[data-page='welcome-student'] :is(.private-page-hero,.welcome-student-hero) :is(p,li,span,small,strong,em):not(.btn):not(.btn *) {
  color: var(--lm-final-cream-body) !important;
  -webkit-text-fill-color: var(--lm-final-cream-body) !important;
}

/* 5) Pricing text-fit lock: no oversized pricing words can spill out of cards. */
.bundle-price-large,
.pricing-price {
  max-width: 100% !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.bundle-price-large span,
.bundle-price-large [data-i18n='bundle_price_amount'] {
  display: block !important;
  max-width: 100% !important;
  font-size: clamp(2.45rem, 5.5vw, 4.75rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.bundle-pricing-panel { overflow: hidden !important; }
@media (max-width: 720px) {
  .bundle-price-large span,
  .bundle-price-large [data-i18n='bundle_price_amount'] {
    font-size: clamp(2.1rem, 14vw, 3.6rem) !important;
    letter-spacing: -0.045em !important;
  }
}

/* ============================================================
   LANGUAGE MONK SENIOR COLOR AUDIT — 2026-05-19 REFINE 1
   Advisor rule: light text only on true espresso panels; dark ink on
   parchment panels. Fixes the pricing terms card shown in screenshot
   and protects similar light-on-light/dark-on-dark sections sitewide.
   ============================================================ */
:root {
  --lm-audit-ink: #1f1005;
  --lm-audit-ink-body: #4b2a10;
  --lm-audit-bronze: #6f3907;
  --lm-audit-bronze-strong: #572905;
  --lm-audit-cream: #fff8ec;
  --lm-audit-cream-body: #f6dfb0;
  --lm-audit-gold-readable: #d29a2f;
}

/* PARCHMENT/LIGHT PANELS — dark readable text. */
html:not([data-theme='dark']) body[data-page='pricing'] :is(.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card),
html[data-theme='light'] body[data-page='pricing'] :is(.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card),
html:not([data-theme='dark']) :is(.method-proof-card,.home-booking-card,.system-card,.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card),
html[data-theme='light'] :is(.method-proof-card,.home-booking-card,.system-card,.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) {
  color: var(--lm-audit-ink) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) body[data-page='pricing'] :is(.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price),
html[data-theme='light'] body[data-page='pricing'] :is(.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price),
html:not([data-theme='dark']) :is(.method-proof-card,.home-booking-card,.system-card,.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price),
html[data-theme='light'] :is(.method-proof-card,.home-booking-card,.system-card,.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price) {
  color: var(--lm-audit-ink) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) body[data-page='pricing'] :is(.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(p,li,span:not(.btn):not(.payment-step-number):not(.accent),small,label,strong,em,.section-sub,.pricing-desc,.pricing-best-for,.pricing-price-note),
html[data-theme='light'] body[data-page='pricing'] :is(.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(p,li,span:not(.btn):not(.payment-step-number):not(.accent),small,label,strong,em,.section-sub,.pricing-desc,.pricing-best-for,.pricing-price-note),
html:not([data-theme='dark']) :is(.method-proof-card,.home-booking-card,.system-card,.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(p,li,span:not(.btn):not(.payment-step-number):not(.accent),small,label,strong,em,.section-sub,.pricing-desc,.pricing-best-for,.pricing-price-note),
html[data-theme='light'] :is(.method-proof-card,.home-booking-card,.system-card,.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(p,li,span:not(.btn):not(.payment-step-number):not(.accent),small,label,strong,em,.section-sub,.pricing-desc,.pricing-best-for,.pricing-price-note) {
  color: var(--lm-audit-ink-body) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

html:not([data-theme='dark']) body[data-page='pricing'] :is(.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(.section-label,.pricing-tier,.proof-artifact-kicker),
html[data-theme='light'] body[data-page='pricing'] :is(.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(.section-label,.pricing-tier,.proof-artifact-kicker),
html:not([data-theme='dark']) :is(.method-proof-card,.home-booking-card,.system-card,.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(.section-label,.pricing-tier,.proof-artifact-kicker),
html[data-theme='light'] :is(.method-proof-card,.home-booking-card,.system-card,.pricing-trust-block,.payment-flow-block,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card) :is(.section-label,.pricing-tier,.proof-artifact-kicker) {
  color: var(--lm-audit-bronze) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

/* Exact screenshot fix: the pricing terms/checklist block is a light card. */
html:not([data-theme='dark']) body[data-page='pricing'] .pricing-trust-block,
html[data-theme='light'] body[data-page='pricing'] .pricing-trust-block,
html:not([data-theme='dark']) .pricing-trust-block,
html[data-theme='light'] .pricing-trust-block {
  background:
    radial-gradient(circle at 80% 8%, rgba(183, 113, 30, 0.10), transparent 28rem),
    linear-gradient(145deg, #f8eddc 0%, #f0dfc7 100%) !important;
  border-color: rgba(111, 57, 7, 0.22) !important;
  box-shadow: 0 18px 44px rgba(61, 26, 5, 0.12), inset 0 1px 0 rgba(255,255,255,0.36) !important;
}
html:not([data-theme='dark']) body[data-page='pricing'] .pricing-trust-list li,
html[data-theme='light'] body[data-page='pricing'] .pricing-trust-list li,
html:not([data-theme='dark']) .pricing-trust-list li,
html[data-theme='light'] .pricing-trust-list li {
  background: linear-gradient(145deg, rgba(255,248,236,0.62), rgba(239,213,143,0.20)) !important;
  border-color: rgba(111,57,7,0.20) !important;
  color: var(--lm-audit-ink-body) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}
html:not([data-theme='dark']) body[data-page='pricing'] .pricing-trust-list li::before,
html[data-theme='light'] body[data-page='pricing'] .pricing-trust-list li::before,
html:not([data-theme='dark']) .pricing-trust-list li::before,
html[data-theme='light'] .pricing-trust-list li::before {
  color: var(--lm-audit-bronze-strong) !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Light homepage/system wrappers: wrapper copy is dark; true espresso cards stay cream. */
html:not([data-theme='dark']) .system-section :is(.system-header,.system-copy) :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .system-section :is(.system-header,.system-copy) :is(h1,h2,h3,h4,.section-heading),
html:not([data-theme='dark']) .homepage-proof-callout .home-booking-card :is(h1,h2,h3,h4,.section-heading),
html[data-theme='light'] .homepage-proof-callout .home-booking-card :is(h1,h2,h3,h4,.section-heading) {
  color: var(--lm-audit-ink) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}
html:not([data-theme='dark']) .system-section :is(.system-header,.system-copy) :is(p,li,.section-sub),
html[data-theme='light'] .system-section :is(.system-header,.system-copy) :is(p,li,.section-sub),
html:not([data-theme='dark']) .homepage-proof-callout .home-booking-card :is(p,li,.section-sub,.booking-mini-note),
html[data-theme='light'] .homepage-proof-callout .home-booking-card :is(p,li,.section-sub,.booking-mini-note) {
  color: var(--lm-audit-ink-body) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}
html:not([data-theme='dark']) .system-section :is(.system-header,.system-copy) .section-label,
html[data-theme='light'] .system-section :is(.system-header,.system-copy) .section-label,
html:not([data-theme='dark']) .homepage-proof-callout .home-booking-card .section-label,
html[data-theme='light'] .homepage-proof-callout .home-booking-card .section-label {
  color: var(--lm-audit-bronze) !important;
  -webkit-text-fill-color: currentColor !important;
}

/* True dark panels protected after the light-panel fixes. */
html:not([data-theme='dark']) :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer),
html[data-theme='light'] :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer),
html[data-theme='dark'] :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer,.pricing-trust-block,.payment-flow-block) {
  color: var(--lm-audit-cream) !important;
}
html:not([data-theme='dark']) :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price,.bundle-title,.system-question-intro),
html[data-theme='light'] :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price,.bundle-title,.system-question-intro),
html[data-theme='dark'] :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer,.pricing-trust-block,.payment-flow-block) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price,.bundle-title,.system-question-intro) {
  color: var(--lm-audit-cream) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.34) !important;
}
html:not([data-theme='dark']) :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer) :is(p,li,small,label,strong,em,.section-sub,.pricing-desc,.pricing-best-for,.pricing-cta-note,.bundle-intro,.bundle-body-note,.bundle-trust-note,.contact-card-note,.system-final-line,.hero-sub),
html[data-theme='light'] :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer) :is(p,li,small,label,strong,em,.section-sub,.pricing-desc,.pricing-best-for,.pricing-cta-note,.bundle-intro,.bundle-body-note,.bundle-trust-note,.contact-card-note,.system-final-line,.hero-sub),
html[data-theme='dark'] :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer,.pricing-trust-block,.payment-flow-block) :is(p,li,small,label,strong,em,.section-sub,.pricing-desc,.pricing-best-for,.pricing-cta-note,.bundle-intro,.bundle-body-note,.bundle-trust-note,.contact-card-note,.system-final-line,.hero-sub) {
  color: var(--lm-audit-cream-body) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}
html:not([data-theme='dark']) :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer) :is(.section-label,.pricing-tier,.bundle-kicker,.testimonial-stars,.first-week-list li::before,.pricing-features li::before),
html[data-theme='light'] :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer) :is(.section-label,.pricing-tier,.bundle-kicker,.testimonial-stars,.first-week-list li::before,.pricing-features li::before),
html[data-theme='dark'] :is(.hero,.first-week-card,.tom-proof-card,.pricing-card--featured,.private-bundle-card--premium,.contact-diagnosis-card,.system-question-box,.system-closing,.footer,.pricing-trust-block,.payment-flow-block) :is(.section-label,.pricing-tier,.bundle-kicker,.testimonial-stars,.first-week-list li::before,.pricing-features li::before) {
  color: var(--lm-audit-gold-readable) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

/* Preserve CTA contrast and the intentional hero accent gradient. */
html body :is(.btn,.btn *,button,button *) { -webkit-text-fill-color: currentColor !important; }
html :is(.hero,.story-hero,.founder-story-hero,.checkout-hero,.welcome-hero,.call-confirmed-hero) .accent {
  background: linear-gradient(135deg, #fff0bf 0%, #e0ad42 50%, #b87325 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

/* === Language Monk consolidated premium patches 2026-05-22 === */

/* --- consolidated from contrast-lock.css --- */
/* ============================================================
   LANGUAGE MONK — THEME-AWARE READABILITY CONTRACT
   Light mode works. Dark mode works.
   Cream/light surfaces = dark espresso text.
   Dark brown/black surfaces = cream text.
   Gold is an accent only on dark surfaces.
   ============================================================ */

:root,
html[data-theme="light"] {
  color-scheme: light;
  --lm-page:#f4ead9; --lm-card:#f8eddc; --lm-card-2:#f0dfc7; --lm-card-3:#e8d3b5;
  --lm-ink:#1e1208; --lm-ink-body:#3d1a05; --lm-ink-soft:#5a2d0c; --lm-bronze:#6f350d;
  --lm-dark:#120803; --lm-dark-2:#1a0b03; --lm-dark-3:#2a1205;
  --lm-cream:#fff8ec; --lm-cream-body:#f6dfb0; --lm-gold-dark:#f0d59a;
  --color-bg:#f4ead9; --color-surface:#f8eddc; --color-surface-2:#f0dfc7; --color-surface-offset:#e8d3b5;
  --color-surface-dynamic:#dfc5a0; --color-divider:#ceb894; --color-border:#bfa681;
  --color-text:#1e1208; --color-text-muted:#5a2d0c; --color-text-faint:#6f350d; --color-text-inverse:#fff8ec;
  --color-primary:#8f5018; --color-primary-hover:#6f350d; --color-primary-active:#4b2108; --color-primary-highlight:#efd5ad;
  --color-brown-deep:#3d1a05; --color-brown-rich:#5a2d0c; --color-brown-mid:#7a4018;
  --color-gold:#c99a3d; --color-gold-light:#f0d59a; --color-orange-bright:#d6a94d;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --lm-page:#120803; --lm-card:#1a0b03; --lm-card-2:#241105; --lm-card-3:#301806;
  --lm-ink:#fff8ec; --lm-ink-body:#f6dfb0; --lm-ink-soft:#e6c789; --lm-bronze:#f0d59a;
  --lm-dark:#120803; --lm-dark-2:#1a0b03; --lm-dark-3:#2a1205;
  --lm-cream:#fff8ec; --lm-cream-body:#f6dfb0; --lm-gold-dark:#f0d59a;
  --color-bg:#120803; --color-surface:#1a0b03; --color-surface-2:#241105; --color-surface-offset:#301806;
  --color-surface-dynamic:#3a1d08; --color-divider:#5c3b1e; --color-border:#6e4724;
  --color-text:#fff8ec; --color-text-muted:#f6dfb0; --color-text-faint:#e6c789; --color-text-inverse:#1e1208;
  --color-primary:#f0d59a; --color-primary-hover:#fff0bf; --color-primary-active:#fff8ec; --color-primary-highlight:#3d2208;
  --color-brown-deep:#fff8ec; --color-brown-rich:#f6dfb0; --color-brown-mid:#e6c789;
  --color-gold:#f0d59a; --color-gold-light:#fff0bf; --color-orange-bright:#f0d59a;
}

html, body { background:var(--color-bg) !important; color:var(--color-text) !important; }
html body * { text-shadow:none; }
html body :is(h1,h2,h3,h4,h5,h6,p,li,a,span,small,strong,em,label,td,th,summary,dt,dd,blockquote,figcaption,legend):not(.btn):not(.btn *) { -webkit-text-fill-color:currentColor; }

/* True dark surfaces: always light text. */
html body :is(.hero,.site-footer,.final-cta,.section-dark,.dark-section,.dark-panel,.system-question-box,.system-closing,.first-week-card,.pricing-card--featured,.pricing-card--coming-soon,.pricing-card--group,.pricing-card--waitlist,.private-bundle-card--premium,.coach-card--founder,.story-letter,.story-closing-card,.call-confirmed-hero,.welcome-student-hero,.private-page-hero) { color:#f6dfb0 !important; }
html body :is(.hero,.site-footer,.final-cta,.section-dark,.dark-section,.dark-panel,.system-question-box,.system-closing,.first-week-card,.pricing-card--featured,.pricing-card--coming-soon,.pricing-card--group,.pricing-card--waitlist,.private-bundle-card--premium,.coach-card--founder,.story-letter,.story-closing-card,.call-confirmed-hero,.welcome-student-hero,.private-page-hero) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price,.bundle-title,.coach-name):not(.btn):not(.btn *) { color:#fff8ec !important; -webkit-text-fill-color:currentColor !important; background:none !important; }
html body :is(.hero,.site-footer,.final-cta,.section-dark,.dark-section,.dark-panel,.system-question-box,.system-closing,.first-week-card,.pricing-card--featured,.pricing-card--coming-soon,.pricing-card--group,.pricing-card--waitlist,.private-bundle-card--premium,.coach-card--founder,.story-letter,.story-closing-card,.call-confirmed-hero,.welcome-student-hero,.private-page-hero) :is(p,li,span,small,dt,dd,blockquote,label):not(.btn):not(.btn *) { color:#f6dfb0 !important; -webkit-text-fill-color:currentColor !important; }
html body :is(.hero,.site-footer,.final-cta,.section-dark,.dark-section,.dark-panel,.system-question-box,.system-closing,.first-week-card,.pricing-card--featured,.pricing-card--coming-soon,.pricing-card--group,.pricing-card--waitlist,.private-bundle-card--premium,.coach-card--founder,.story-letter,.story-closing-card,.call-confirmed-hero,.welcome-student-hero,.private-page-hero) :is(.section-label,.pricing-tier,.bundle-kicker,.teacher-role,.coach-role,.form-eyebrow,.contact-card-kicker,.proof-artifact-kicker,.method-proof-label,.summary-kicker,.testimonial-stars,.accent):not(.btn):not(.btn *) { color:#f0d59a !important; -webkit-text-fill-color:currentColor !important; }

/* Normal cards follow the active theme. */
html[data-theme="light"] body :is(.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),.pricing-value-stack,.pricing-comparison,.comparison-mobile-card,.payment-flow-block,.pricing-trust-block,.pricing-next-steps,.pricing-question-row,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.security-callout,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) { color:#3d1a05 !important; }
html[data-theme="light"] body :is(.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),.pricing-value-stack,.pricing-comparison,.comparison-mobile-card,.payment-flow-block,.pricing-trust-block,.pricing-next-steps,.pricing-question-row,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.security-callout,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price,.teacher-name,.coach-name,.faq-question):not(.btn):not(.btn *) { color:#1e1208 !important; -webkit-text-fill-color:currentColor !important; background:none !important; }
html[data-theme="light"] body :is(.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),.pricing-value-stack,.pricing-comparison,.comparison-mobile-card,.payment-flow-block,.pricing-trust-block,.pricing-next-steps,.pricing-question-row,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.security-callout,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) :is(p,li,span,small,dt,dd,blockquote,label):not(.btn):not(.btn *) { color:#3d1a05 !important; -webkit-text-fill-color:currentColor !important; }

html[data-theme="dark"] body :is(.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),.pricing-value-stack,.pricing-comparison,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) { color:#f6dfb0 !important; }
html[data-theme="dark"] body :is(.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),.pricing-value-stack,.pricing-comparison,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price,.teacher-name,.coach-name,.faq-question):not(.btn):not(.btn *) { color:#fff8ec !important; -webkit-text-fill-color:currentColor !important; background:none !important; }
html[data-theme="dark"] body :is(.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),.pricing-value-stack,.pricing-comparison,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) :is(p,li,span,small,dt,dd,blockquote,label):not(.btn):not(.btn *) { color:#f6dfb0 !important; -webkit-text-fill-color:currentColor !important; }

/* Intentional cream cards even inside dark panels: dark text always. */
html body :is(.pricing-question-row,.comparison-mobile-card,.payment-flow-block,.payment-flow-steps li,.payment-flow-note,.pricing-trust-block,.pricing-trust-list li,.pricing-next-steps,.pricing-next-steps li,.bundle-stat,.bundle-body-note,.bundle-trust-note,.private-bundle-card--premium .bundle-stat,.private-bundle-card--premium .bundle-body-note,.private-bundle-card--premium .bundle-trust-note) { color:#3d1a05 !important; }
html body :is(.pricing-question-row,.comparison-mobile-card,.payment-flow-block,.payment-flow-steps li,.payment-flow-note,.pricing-trust-block,.pricing-trust-list li,.pricing-next-steps,.pricing-next-steps li,.bundle-stat,.bundle-body-note,.bundle-trust-note,.private-bundle-card--premium .bundle-stat,.private-bundle-card--premium .bundle-body-note,.private-bundle-card--premium .bundle-trust-note) :is(h1,h2,h3,h4,h5,h6,.section-heading,.pricing-name,.pricing-price,.bundle-stat-title):not(.btn):not(.btn *) { color:#1e1208 !important; -webkit-text-fill-color:currentColor !important; background:none !important; }
html body :is(.pricing-question-row,.comparison-mobile-card,.payment-flow-block,.payment-flow-steps li,.payment-flow-note,.pricing-trust-block,.pricing-trust-list li,.pricing-next-steps,.pricing-next-steps li,.bundle-stat,.bundle-body-note,.bundle-trust-note,.private-bundle-card--premium .bundle-stat,.private-bundle-card--premium .bundle-body-note,.private-bundle-card--premium .bundle-trust-note) :is(p,li,span,small,dt,dd,blockquote,label,.section-label,.pricing-tier,.bundle-kicker):not(.btn):not(.btn *) { color:#3d1a05 !important; -webkit-text-fill-color:currentColor !important; }

/* Buttons */
.btn-primary, .btn-primary * { background-color:#8f5018; color:#fff8ec !important; -webkit-text-fill-color:#fff8ec !important; }
html[data-theme="dark"] .btn-primary, html[data-theme="dark"] .btn-primary * { background-color:#f0d59a; color:#1e1208 !important; -webkit-text-fill-color:#1e1208 !important; }
.btn-secondary, .btn-secondary * { color:inherit !important; -webkit-text-fill-color:currentColor !important; }
.theme-toggle { color:var(--color-text) !important; border-color:var(--color-border) !important; background:var(--color-surface) !important; }

/* Final button readability patch: outline buttons cannot sit on mid-brown with low contrast. */
.btn-outline, .btn-outline * {
  background-color:#3d1a05 !important;
  color:#fff8ec !important;
  -webkit-text-fill-color:#fff8ec !important;
  border-color:#f0d59a !important;
}
.btn-outline, .btn-outline * {
  background:#3d1a05 !important;
  color:#fff8ec !important;
  -webkit-text-fill-color:#fff8ec !important;
  border-color:#f0d59a !important;
}
html[data-theme="light"] body .btn-outline,
html[data-theme="dark"] body .btn-outline,
html[data-theme="light"] body .btn-outline *,
html[data-theme="dark"] body .btn-outline * {
  background:#3d1a05 !important;
  color:#fff8ec !important;
  -webkit-text-fill-color:#fff8ec !important;
  border-color:#f0d59a !important;
}


/* --- consolidated from pricing-dark-mode-fix.css --- */
/* ============================================================
   LANGUAGE MONK — PRICING PAGE DARK-MODE READABILITY FIX
   Scope: pricing.html only. No other pages load this file.
   Rule: dark pricing surfaces use cream text; accent gold stays only
   on dark surfaces; gold badges keep dark espresso text.
   ============================================================ */

html[data-theme="dark"] body[data-page="pricing"] .pricing {
  background: #120803 !important;
  color: #f6dfb0 !important;
}

/* Dark-mode pricing surfaces: keep them dark and make the text readable. */
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .pricing-card:not(.pricing-card--featured),
  .pricing-value-stack,
  .pricing-comparison,
  .payment-flow-block,
  .pricing-trust-block,
  .pricing-next-steps,
  .comparison-mobile-card,
  .pricing-founding-note,
  .pricing-question-row
) {
  background:
    radial-gradient(circle at top right, rgba(240, 213, 154, 0.10), transparent 34%),
    linear-gradient(145deg, rgba(26, 11, 3, 0.98), rgba(36, 17, 5, 0.98)) !important;
  border-color: rgba(240, 213, 154, 0.24) !important;
  color: #f6dfb0 !important;
  -webkit-text-fill-color: currentColor !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .pricing-card--featured,
  .private-bundle-card--premium
) {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Small cards/pills inside pricing blocks also sit on dark mode surfaces. */
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .pricing-value-list li,
  .pricing-best-for,
  .pricing-trust-list li,
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-next-steps li,
  .comparison-table-wrap,
  .comparison-mobile-points li,
  .bundle-pricing-panel,
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note,
  .private-bundle-card--premium .bundle-stat,
  .private-bundle-card--premium .bundle-body-note,
  .private-bundle-card--premium .bundle-trust-note,
  .private-bundle-card--premium .bundle-cta-block .bundle-trust-note
) {
  background: rgba(255, 248, 236, 0.075) !important;
  border-color: rgba(240, 213, 154, 0.20) !important;
  color: #f6dfb0 !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Headings and money text need the brightest cream on dark mode. */
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  h1,
  h2,
  h3,
  h4,
  .section-heading,
  .pricing-name,
  .pricing-price,
  .bundle-title,
  .comparison-table th,
  .pricing-next-steps h2,
  .payment-flow-copy h2,
  .pricing-trust-copy h2
):not(.btn):not(.btn *) {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background-image: none !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
  text-shadow: none !important;
}

/* Body copy: never dark brown, black, or washed-out gold on dark mode. */
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  p,
  li,
  td,
  small,
  label,
  .pricing-desc,
  .pricing-best-for,
  .pricing-price-note,
  .pricing-cta-note,
  .pricing-main-sub,
  .pricing-founding-note,
  .payment-flow-note,
  .bundle-intro,
  .bundle-summary-list li,
  .bundle-body-note,
  .bundle-trust-note,
  .comparison-table td,
  .comparison-mobile-card p,
  .comparison-mobile-points li,
  .pricing-trust-copy p,
  .pricing-trust-list li,
  .pricing-next-steps p,
  .pricing-next-steps li,
  .payment-flow-steps li,
  .pricing-value-list li
):not(.btn):not(.btn *) {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  text-shadow: none !important;
}

/* Muted text still readable — not low-opacity brown/gold. */
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .pricing-price span,
  .pricing-card--featured .pricing-price span,
  .bundle-price-large small,
  .pricing-price-note,
  .pricing-cta-note--bundle
):not(.btn):not(.btn *) {
  color: #e6c789 !important;
  -webkit-text-fill-color: #e6c789 !important;
}

/* Accent labels can stay gold because the pricing surfaces are dark. */
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .section-label,
  .pricing-tier,
  .bundle-kicker,
  .trust-check
):not(.btn):not(.btn *) {
  color: #f0d59a !important;
  -webkit-text-fill-color: #f0d59a !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .pricing-features li::before,
html[data-theme="dark"] body[data-page="pricing"] .pricing .pricing-value-list li::before,
html[data-theme="dark"] body[data-page="pricing"] .pricing .pricing-trust-list li::before,
html[data-theme="dark"] body[data-page="pricing"] .pricing .bundle-summary-list li::before {
  color: #f0d59a !important;
  -webkit-text-fill-color: #f0d59a !important;
}

/* Table guard: dark background, cream text, readable borders. */
html[data-theme="dark"] body[data-page="pricing"] .pricing .comparison-table-wrap {
  background: rgba(255, 248, 236, 0.055) !important;
  border-color: rgba(240, 213, 154, 0.22) !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .comparison-table th {
  background: rgba(240, 213, 154, 0.11) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .comparison-table td,
html[data-theme="dark"] body[data-page="pricing"] .pricing .comparison-table td:first-child {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  border-color: rgba(240, 213, 154, 0.16) !important;
}

/* Gold badges / step circles are light surfaces, so they keep dark espresso text. */
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .pricing-featured-badge,
  .payment-step-number
),
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .pricing-featured-badge,
  .payment-step-number
) * {
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  text-shadow: none !important;
}

/* Pricing buttons remain readable and untouched by body-copy rules. */
html[data-theme="dark"] body[data-page="pricing"] .pricing .btn-primary,
html[data-theme="dark"] body[data-page="pricing"] .pricing .btn-primary * {
  background: linear-gradient(135deg, #f0d59a, #d6a94d) !important;
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  border-color: rgba(240, 213, 154, 0.65) !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing :is(.btn-outline, .btn-ghost),
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(.btn-outline, .btn-ghost) * {
  background: rgba(18, 8, 3, 0.92) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  border-color: rgba(240, 213, 154, 0.48) !important;
}


/* --- consolidated from premium-sweep.css --- */
/* ============================================================
   LANGUAGE MONK — PREMIUM SWEEP 2026-05-21
   Purpose: restore premium depth/pop without breaking readability.
   Contract stays strict:
   - Light/cream surfaces use espresso/brown text.
   - Dark surfaces use cream text.
   - Gold is visual accent, not low-contrast body text on cream.
   ============================================================ */

:root,
html[data-theme="light"] {
  --lm-premium-glow: rgba(184, 113, 37, 0.18);
  --lm-premium-glow-strong: rgba(214, 169, 77, 0.22);
  --lm-premium-edge: rgba(61, 26, 5, 0.16);
  --lm-premium-card: #fff4e4;
  --lm-premium-card-2: #f4dfc1;
  --lm-premium-shadow: 0 18px 50px rgba(61, 26, 5, 0.16);
  --lm-premium-shadow-soft: 0 10px 30px rgba(61, 26, 5, 0.11);
}

html[data-theme="dark"] {
  --lm-premium-glow: rgba(240, 213, 154, 0.14);
  --lm-premium-glow-strong: rgba(214, 169, 77, 0.20);
  --lm-premium-edge: rgba(240, 213, 154, 0.22);
  --lm-premium-card: #1b0c04;
  --lm-premium-card-2: #2a1406;
  --lm-premium-shadow: 0 22px 60px rgba(0, 0, 0, 0.50);
  --lm-premium-shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.34);
}

body {
  background:
    radial-gradient(circle at 12% 0%, var(--lm-premium-glow), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(143, 80, 24, 0.10), transparent 30rem),
    linear-gradient(180deg, var(--color-bg), var(--color-surface-2)) !important;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 15% 0%, rgba(240, 213, 154, 0.09), transparent 30rem),
    radial-gradient(circle at 85% 10%, rgba(184, 113, 37, 0.11), transparent 34rem),
    linear-gradient(180deg, #120803, #080401 82%) !important;
}

.site-header {
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 72%, transparent) !important;
  box-shadow: 0 12px 34px rgba(61, 26, 5, 0.08) !important;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

html[data-theme="dark"] .site-header {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36) !important;
}

.logo-mark,
.logo-img,
.logo-lockup img,
.brand img {
  filter: drop-shadow(0 10px 18px rgba(61, 26, 5, 0.18));
}

html[data-theme="dark"] :is(.logo-mark,.logo-img,.logo-lockup img,.brand img) {
  filter: drop-shadow(0 10px 22px rgba(240, 213, 154, 0.16));
}

.hero,
.private-page-hero,
.welcome-student-hero,
.call-confirmed-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 213, 154, 0.16);
}

.hero::before,
.private-page-hero::before,
.welcome-student-hero::before,
.call-confirmed-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 213, 154, 0.20), transparent 20rem),
    radial-gradient(circle at 80% 12%, rgba(184, 113, 37, 0.22), transparent 24rem);
  opacity: 0.92;
}

.hero > *,
.private-page-hero > *,
.welcome-student-hero > *,
.call-confirmed-hero > * {
  position: relative;
  z-index: 1;
}

:is(.hero-card,.hero-visual,.hero-proof,.teacher-card,.coach-card,.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card,.pricing-value-stack,.pricing-comparison,.comparison-mobile-card,.payment-flow-block,.pricing-trust-block,.pricing-next-steps,.pricing-question-row,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.security-callout,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) {
  border-width: 1px !important;
  border-style: solid !important;
  box-shadow: var(--lm-premium-shadow-soft) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

html[data-theme="light"] :is(.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),.pricing-value-stack,.pricing-comparison,.comparison-mobile-card,.payment-flow-block,.pricing-trust-block,.pricing-next-steps,.pricing-question-row,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.security-callout,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(244, 223, 193, 0.96)) !important;
  border-color: rgba(61, 26, 5, 0.14) !important;
}

html[data-theme="dark"] :is(.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.teacher-assignment-panel,.teacher-system-strip,.coach-system-strip,.founder-teaser-card,.story-proof-card,.story-side-card,.story-video-card,.pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),.pricing-value-stack,.pricing-comparison,.comparison-mobile-card,.payment-flow-block,.pricing-trust-block,.pricing-next-steps,.pricing-question-row,.contact-form,.contact-application-card,.contact-fit-card,.contact-outcome-card,.faq-card,.faq-item,.legal-card,.security-callout,.checkout-summary-card,.checkout-plan-card,.checkout-policy-card,.checkout-flow-section,.welcome-step-card,.welcome-highlight-card,.welcome-side-card,.call-confirmed-card,.call-confirmed-system-card,.proof-artifact-card,.welcome-help-strip,.booking-next-card) {
  background:
    radial-gradient(circle at top right, rgba(240, 213, 154, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(27, 12, 4, 0.98), rgba(42, 20, 6, 0.97)) !important;
  border-color: rgba(240, 213, 154, 0.18) !important;
}

:is(.teacher-card,.coach-card,.testimonial,.proof-card,.method-proof-card,.home-booking-card,.pricing-card,.contact-form,.faq-card,.faq-item,.legal-card):hover {
  transform: translateY(-2px);
  box-shadow: var(--lm-premium-shadow) !important;
  border-color: color-mix(in srgb, var(--color-primary) 45%, var(--color-border)) !important;
}

:is(.section-label,.pricing-tier,.bundle-kicker,.teacher-role,.coach-role,.form-eyebrow,.contact-card-kicker,.proof-artifact-kicker,.method-proof-label,.summary-kicker) {
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
}

html[data-theme="light"] :is(.section-label,.pricing-tier,.bundle-kicker,.teacher-role,.coach-role,.form-eyebrow,.contact-card-kicker,.proof-artifact-kicker,.method-proof-label,.summary-kicker):not(.hero *):not(.landing-hero *):not(.section-dark *):not(.dark-panel *):not(.site-footer *) {
  color: #6f350d !important;
  -webkit-text-fill-color: #6f350d !important;
}

html[data-theme="dark"] :is(.section-label,.pricing-tier,.bundle-kicker,.teacher-role,.coach-role,.form-eyebrow,.contact-card-kicker,.proof-artifact-kicker,.method-proof-label,.summary-kicker) {
  color: #f0d59a !important;
  -webkit-text-fill-color: #f0d59a !important;
}

h1, h2, .section-heading {
  letter-spacing: -0.035em;
}

html[data-theme="light"] :is(h1,h2,.section-heading):not(.hero *):not(.landing-hero *):not(.section-dark *):not(.dark-panel *):not(.site-footer *) {
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
}

.btn {
  border: 1px solid rgba(255, 248, 236, 0.20);
  box-shadow: 0 10px 26px rgba(61, 26, 5, 0.16) !important;
}

.btn-primary {
  background:
    linear-gradient(135deg, #6f350d 0%, #b87125 45%, #d6a94d 100%) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  border-color: rgba(240, 213, 154, 0.54) !important;
}

html[data-theme="dark"] .btn-primary {
  background:
    linear-gradient(135deg, #f0d59a 0%, #d6a94d 55%, #b87125 100%) !important;
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  border-color: rgba(255, 248, 236, 0.55) !important;
}

.btn-primary:hover,
.btn-outline:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(61, 26, 5, 0.24) !important;
}

html[data-theme="dark"] :is(.btn-primary,.btn-outline,.btn-secondary):hover {
  box-shadow: 0 16px 36px rgba(240, 213, 154, 0.14) !important;
}

:is(.teacher-card img,.coach-card img,.hero-visual img,.story-video-card img,.proof-artifact-card img) {
  border-radius: 1.4rem;
  box-shadow: 0 16px 40px rgba(61, 26, 5, 0.20);
}

html[data-theme="dark"] :is(.teacher-card img,.coach-card img,.hero-visual img,.story-video-card img,.proof-artifact-card img) {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(240, 213, 154, 0.12);
}

:is(.pricing-card--featured,.pricing-card--coming-soon,.pricing-card--group,.pricing-card--waitlist,.private-bundle-card--premium,.coach-card--founder,.first-week-card,.system-question-box,.system-closing,.story-letter,.story-closing-card,.final-cta,.section-dark,.dark-section,.dark-panel) {
  background:
    radial-gradient(circle at top left, rgba(240, 213, 154, 0.15), transparent 18rem),
    radial-gradient(circle at bottom right, rgba(184, 113, 37, 0.18), transparent 20rem),
    linear-gradient(145deg, #120803, #2a1205 65%, #3d1a05) !important;
  border-color: rgba(240, 213, 154, 0.24) !important;
  box-shadow: var(--lm-premium-shadow) !important;
}

/* Decorative lines add premium shine without changing text colors. */
:is(.pricing-card,.teacher-card,.coach-card,.testimonial,.proof-card,.method-proof-card,.legal-card,.faq-card,.contact-form) {
  position: relative;
  overflow: hidden;
}

:is(.pricing-card,.teacher-card,.coach-card,.testimonial,.proof-card,.method-proof-card,.legal-card,.faq-card,.contact-form)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(111,53,13,0), rgba(184,113,37,0.78), rgba(214,169,77,0.82), rgba(111,53,13,0));
  opacity: 0.76;
  pointer-events: none;
}

html[data-theme="dark"] :is(.pricing-card,.teacher-card,.coach-card,.testimonial,.proof-card,.method-proof-card,.legal-card,.faq-card,.contact-form)::before {
  background: linear-gradient(90deg, rgba(240,213,154,0), rgba(240,213,154,0.78), rgba(184,113,37,0.76), rgba(240,213,154,0));
  opacity: 0.88;
}

/* Keep readable nested cream notes in dark premium panels. */
html body :is(.bundle-stat,.bundle-body-note,.bundle-trust-note,.payment-flow-steps li,.payment-flow-note,.pricing-trust-list li,.pricing-next-steps li) {
  border-radius: 1rem;
}

html[data-theme="light"] body :is(.bundle-stat,.bundle-body-note,.bundle-trust-note,.payment-flow-steps li,.payment-flow-note,.pricing-trust-list li,.pricing-next-steps li) {
  background: rgba(255, 248, 236, 0.72) !important;
  border-color: rgba(61, 26, 5, 0.12) !important;
  color: #3d1a05 !important;
  -webkit-text-fill-color: currentColor !important;
}

html[data-theme="dark"] body :is(.bundle-stat,.bundle-body-note,.bundle-trust-note,.payment-flow-steps li,.payment-flow-note,.pricing-trust-list li,.pricing-next-steps li) {
  background: rgba(255, 248, 236, 0.08) !important;
  border-color: rgba(240, 213, 154, 0.18) !important;
  color: #f6dfb0 !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Premium footer depth. */
.site-footer {
  background:
    radial-gradient(circle at 18% 10%, rgba(240, 213, 154, 0.11), transparent 22rem),
    linear-gradient(180deg, #1a0b03, #080401) !important;
  border-top: 1px solid rgba(240, 213, 154, 0.20) !important;
}

@media (max-width: 720px) {
  :is(.teacher-card,.coach-card,.testimonial,.proof-card,.method-proof-card,.home-booking-card,.pricing-card,.contact-form,.faq-card,.faq-item,.legal-card):hover {
    transform: none;
  }
}


/* --- consolidated from site-integrity-polish.css --- */
/* ============================================================
   LANGUAGE MONK — WHOLE SITE INTEGRITY + PREMIUM POLISH PASS
   Purpose: prevent visual cutoffs, preserve premium depth, and keep
   text readable in BOTH light and dark mode without changing content.
   Loaded last on every page.
   ============================================================ */

:root {
  --lm-integrity-espresso: #1e1208;
  --lm-integrity-brown: #3d1a05;
  --lm-integrity-bronze: #6f350d;
  --lm-integrity-cream: #fff8ec;
  --lm-integrity-soft-cream: #f6dfb0;
  --lm-integrity-gold: #f0d59a;
  --lm-integrity-gold-solid: #d6a94d;
  --lm-integrity-shadow-dark: 0 24px 64px rgba(18, 8, 3, 0.34), inset 0 1px 0 rgba(255,255,255,0.08);
  --lm-integrity-shadow-light: 0 18px 48px rgba(61, 26, 5, 0.16), inset 0 1px 0 rgba(255,255,255,0.42);
}

/* Pass 1 — layout safety: cards may contain badges/glows that need breathing room. */
:is(
  .pricing-card,
  .private-bundle-card,
  .pricing-value-stack,
  .pricing-comparison,
  .payment-flow-block,
  .pricing-trust-block,
  .pricing-next-steps,
  .pricing-question-row,
  .teacher-card,
  .coach-card,
  .testimonial,
  .proof-card,
  .method-proof-card,
  .home-booking-card,
  .founder-teaser-card,
  .story-proof-card,
  .story-side-card,
  .story-video-card,
  .story-closing-card,
  .contact-form,
  .contact-application-card,
  .contact-fit-card,
  .contact-outcome-card,
  .faq-card,
  .faq-item,
  .legal-card,
  .security-callout,
  .checkout-summary-card,
  .checkout-plan-card,
  .checkout-policy-card,
  .checkout-flow-section,
  .welcome-step-card,
  .welcome-highlight-card,
  .welcome-side-card,
  .call-confirmed-card,
  .call-confirmed-system-card,
  .proof-artifact-card,
  .welcome-help-strip,
  .booking-next-card
) {
  min-width: 0 !important;
  overflow: visible !important;
}

/* Pass 2 — specifically repair the cut-off top badge on pricing cards. */
.pricing-grid,
.pricing-grid--money-models {
  overflow: visible !important;
  padding-top: clamp(1.6rem, 3vw, 2.35rem) !important;
}

.pricing-card--featured {
  margin-top: 0 !important;
  padding-top: clamp(4.75rem, 7.5vw, 5.65rem) !important;
  overflow: visible !important;
  isolation: isolate;
}

.pricing-card--featured.revealed,
.pricing-card--featured:hover {
  transform: translateY(0) scale(1.01) !important;
}

.pricing-featured-badge {
  position: absolute !important;
  top: clamp(0.82rem, 1.6vw, 1.08rem) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 6 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: calc(100% - 2rem) !important;
  width: auto !important;
  min-height: 2.45rem !important;
  padding: 0.56rem 1.08rem !important;
  border-radius: 999px !important;
  white-space: normal !important;
  text-align: center !important;
  text-wrap: balance !important;
  line-height: 1.14 !important;
  letter-spacing: 0.13em !important;
  font-size: clamp(0.68rem, 0.62rem + 0.22vw, 0.79rem) !important;
  color: var(--lm-integrity-espresso) !important;
  -webkit-text-fill-color: var(--lm-integrity-espresso) !important;
  text-shadow: none !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.30), rgba(255,255,255,0.05)),
    linear-gradient(135deg, #f3d99a 0%, #d6a94d 54%, #b87125 100%) !important;
  border: 1px solid rgba(255, 248, 236, 0.42) !important;
  box-shadow: 0 14px 30px rgba(18, 8, 3, 0.25), inset 0 1px 0 rgba(255,255,255,0.42) !important;
}

/* Pass 3 — stop oversized display text from spilling or clipping on all pages. */
:is(
  h1,
  h2,
  h3,
  .section-heading,
  .pricing-name,
  .pricing-price,
  .bundle-title,
  .bundle-price-large span,
  .hero-heading,
  .story-heading,
  .teacher-name,
  .coach-name,
  .faq-question
) {
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.pricing-price,
.bundle-price-large span {
  max-width: 100% !important;
  line-height: 0.98 !important;
}

.bundle-price-large span {
  display: block !important;
  font-size: clamp(2.65rem, 6.2vw, 4.65rem) !important;
  letter-spacing: -0.055em !important;
}

.bundle-pricing-panel {
  min-width: 0 !important;
  overflow: visible !important;
}

/* Pass 4 — readable nested notes: light mini-cards always get dark text. */
html body :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note,
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-trust-list li,
  .pricing-next-steps li,
  .comparison-mobile-card,
  .pricing-value-list li,
  .pricing-best-for,
  .checkout-policy-card,
  .security-callout
) {
  text-shadow: none !important;
}

html[data-theme="light"] body :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note,
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-trust-list li,
  .pricing-next-steps li,
  .comparison-mobile-card,
  .pricing-value-list li,
  .pricing-best-for,
  .checkout-policy-card,
  .security-callout
),
html[data-theme="light"] body :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note,
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-trust-list li,
  .pricing-next-steps li,
  .comparison-mobile-card,
  .pricing-value-list li,
  .pricing-best-for,
  .checkout-policy-card,
  .security-callout
) *:not(.btn):not(.btn *) {
  color: var(--lm-integrity-brown) !important;
  -webkit-text-fill-color: var(--lm-integrity-brown) !important;
}

html[data-theme="dark"] body :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note,
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-trust-list li,
  .pricing-next-steps li,
  .comparison-mobile-card,
  .pricing-value-list li,
  .pricing-best-for,
  .checkout-policy-card,
  .security-callout
) {
  background: rgba(255, 248, 236, 0.075) !important;
  border-color: rgba(240, 213, 154, 0.20) !important;
  color: var(--lm-integrity-soft-cream) !important;
  -webkit-text-fill-color: var(--lm-integrity-soft-cream) !important;
}

html[data-theme="dark"] body :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note,
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-trust-list li,
  .pricing-next-steps li,
  .comparison-mobile-card,
  .pricing-value-list li,
  .pricing-best-for,
  .checkout-policy-card,
  .security-callout
) *:not(.btn):not(.btn *) {
  color: var(--lm-integrity-soft-cream) !important;
  -webkit-text-fill-color: var(--lm-integrity-soft-cream) !important;
}

/* Pass 5 — premium depth restored without dulling readability. */
html[data-theme="light"] body :is(.pricing-card:not(.pricing-card--featured),.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.faq-card,.legal-card,.contact-form) {
  box-shadow: var(--lm-integrity-shadow-light) !important;
  border-color: rgba(111, 53, 13, 0.20) !important;
}

html[data-theme="dark"] body :is(.pricing-card:not(.pricing-card--featured),.teacher-card,.coach-card:not(.coach-card--founder),.testimonial,.proof-card,.method-proof-card,.home-booking-card,.faq-card,.legal-card,.contact-form) {
  box-shadow: 0 18px 48px rgba(0,0,0,0.36), inset 0 1px 0 rgba(255,255,255,0.045) !important;
  border-color: rgba(240, 213, 154, 0.16) !important;
}

html[data-theme="light"] body :is(.pricing-card--featured,.private-bundle-card,.system-question-box,.system-closing,.first-week-card,.final-cta,.site-footer) {
  box-shadow: var(--lm-integrity-shadow-dark) !important;
}

html[data-theme="dark"] body :is(.pricing-card--featured,.private-bundle-card,.system-question-box,.system-closing,.first-week-card,.final-cta,.site-footer) {
  box-shadow: 0 24px 72px rgba(0,0,0,0.52), 0 0 0 1px rgba(240,213,154,0.08), inset 0 1px 0 rgba(255,255,255,0.055) !important;
}

/* Button readability: gold/light buttons use espresso, dark outline buttons use cream. */
:is(.btn-primary,.bundle-cta-button,.private-plan-card .btn-primary),
:is(.btn-primary,.bundle-cta-button,.private-plan-card .btn-primary) * {
  color: var(--lm-integrity-espresso) !important;
  -webkit-text-fill-color: var(--lm-integrity-espresso) !important;
  text-shadow: none !important;
}

html[data-theme="dark"] :is(.btn-outline,.btn-ghost),
html[data-theme="dark"] :is(.btn-outline,.btn-ghost) * {
  color: var(--lm-integrity-cream) !important;
  -webkit-text-fill-color: var(--lm-integrity-cream) !important;
}

/* Desktop/tablet fit: avoid cropped cards under sticky nav and keep sections breathable. */
@media (min-width: 769px) {
  .pricing-grid--money-models {
    gap: clamp(1.25rem, 2vw, 2.25rem) !important;
  }
  .pricing-card {
    padding-inline: clamp(1.6rem, 2.2vw, 2.2rem) !important;
  }
}

@media (max-width: 768px) {
  .pricing-grid,
  .pricing-grid--money-models {
    padding-top: 1.85rem !important;
  }
  .pricing-card--featured {
    padding-top: 4.85rem !important;
  }
  .pricing-featured-badge {
    max-width: calc(100% - 1.5rem) !important;
  }
  .bundle-price-large span {
    font-size: clamp(2.35rem, 15vw, 3.9rem) !important;
  }
}


/* --- consolidated from pricing-surgical-contrast.css --- */
/* ============================================================
   LANGUAGE MONK — PRICING PAGE SURGICAL CONTRAST REPAIR
   Scope: pricing.html only. Loaded last. Keeps the existing
   premium design and fixes only unreadable text from dark-mode
   contrast conflicts.
   ============================================================ */

/* Dark pricing section: dark surfaces must use cream text. */
html[data-theme="dark"] body[data-page="pricing"] .pricing .private-bundle-card--premium,
html[data-theme="dark"] body[data-page="pricing"] .pricing .bundle-main-copy,
html[data-theme="dark"] body[data-page="pricing"] .pricing .bundle-pricing-panel {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-kicker,
  .bundle-price-large small,
  .trust-check
):not(.btn):not(.btn *) {
  color: #f0d59a !important;
  -webkit-text-fill-color: #f0d59a !important;
  background: none !important;
  text-shadow: none !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-title,
  .bundle-price-large span
):not(.btn):not(.btn *) {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background: none !important;
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28) !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-intro,
  .bundle-summary-list li,
  .pricing-cta-note--bundle
):not(.btn):not(.btn *) {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  background: none !important;
  text-shadow: none !important;
}

/* Cream/tan note cards inside the dark custom request panel need dark espresso text. */
html[data-theme="dark"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note
) {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(232, 214, 188, 0.94)) !important;
  border-color: rgba(255, 248, 236, 0.28) !important;
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  text-shadow: none !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note
) *:not(.btn):not(.btn *) {
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  background: none !important;
  text-shadow: none !important;
}

/* Final FAQ strip in pricing dark mode is a dark panel, so its text must be cream. */
html[data-theme="dark"] body[data-page="pricing"] .pricing .pricing-question-row {
  background:
    radial-gradient(circle at top right, rgba(240, 213, 154, 0.10), transparent 34%),
    linear-gradient(145deg, rgba(26, 11, 3, 0.98), rgba(36, 17, 5, 0.98)) !important;
  border-color: rgba(240, 213, 154, 0.22) !important;
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  text-shadow: none !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .pricing-question-row :is(
  p,
  span,
  strong
):not(.btn):not(.btn *) {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  background: none !important;
  text-shadow: none !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .pricing-question-row .btn,
html[data-theme="dark"] body[data-page="pricing"] .pricing .pricing-question-row .btn * {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  text-shadow: none !important;
}

/* Light mode safety: keep the same sections readable if the user toggles back. */
html[data-theme="light"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-title,
  .bundle-intro,
  .bundle-summary-list li,
  .bundle-price-large span,
  .bundle-price-large small,
  .pricing-cta-note--bundle
):not(.btn):not(.btn *) {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background: none !important;
  text-shadow: none !important;
}

html[data-theme="light"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-kicker,
  .trust-check
):not(.btn):not(.btn *) {
  color: #f0d59a !important;
  -webkit-text-fill-color: #f0d59a !important;
  text-shadow: none !important;
}

html[data-theme="light"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note
),
html[data-theme="light"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note
) *:not(.btn):not(.btn *) {
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  text-shadow: none !important;
}


/* --- consolidated from language-monk-hue-tune.css --- */
/* ============================================================
   LANGUAGE MONK — PREMIUM HUE TUNE
   Scope: color hue/background polish only. No copy/layout changes.
   Goal: warmer premium espresso + parchment tones in light/dark mode.
   ============================================================ */

:root {
  --lm-hue-espresso-900: #100501;
  --lm-hue-espresso-850: #170802;
  --lm-hue-espresso-800: #210b02;
  --lm-hue-espresso-700: #2d1003;
  --lm-hue-espresso-600: #431805;
  --lm-hue-bronze-700: #7b360b;
  --lm-hue-bronze-600: #9a4f12;
  --lm-hue-bronze-500: #b86b20;
  --lm-hue-gold-500: #d39a37;
  --lm-hue-gold-300: #efd08b;
  --lm-hue-cream-100: #fff7ea;
  --lm-hue-cream-200: #f6e4c8;
  --lm-hue-parchment: #e7c99e;
}

/* Page wash: less flat black, more warm Language Monk espresso. */
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 107, 32, 0.11), transparent 31rem),
    radial-gradient(circle at 88% 6%, rgba(211, 154, 55, 0.055), transparent 29rem),
    linear-gradient(180deg, var(--lm-hue-espresso-850) 0%, #080301 82%) !important;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 10% 0%, rgba(184, 107, 32, 0.10), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(211, 154, 55, 0.12), transparent 31rem),
    linear-gradient(180deg, #f7ecdb 0%, #efe0c9 100%) !important;
}

/* Light surfaces: warmer parchment, not washed yellow/gray. */
html[data-theme="light"] body :is(
  .teacher-card,
  .coach-card:not(.coach-card--founder),
  .testimonial,
  .proof-card,
  .method-proof-card,
  .home-booking-card,
  .teacher-assignment-panel,
  .teacher-system-strip,
  .coach-system-strip,
  .founder-teaser-card,
  .story-proof-card,
  .story-side-card,
  .story-video-card,
  .pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),
  .pricing-value-stack,
  .pricing-comparison,
  .comparison-mobile-card,
  .payment-flow-block,
  .pricing-trust-block,
  .pricing-next-steps,
  .pricing-question-row,
  .contact-form,
  .contact-application-card,
  .contact-fit-card,
  .contact-outcome-card,
  .faq-card,
  .faq-item,
  .legal-card,
  .security-callout,
  .checkout-summary-card,
  .checkout-plan-card,
  .checkout-policy-card,
  .checkout-flow-section,
  .welcome-step-card,
  .welcome-highlight-card,
  .welcome-side-card,
  .call-confirmed-card,
  .call-confirmed-system-card,
  .proof-artifact-card,
  .welcome-help-strip,
  .booking-next-card
) {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 247, 234, 0.62), transparent 15rem),
    linear-gradient(180deg, #fff4e3 0%, #efd8b6 100%) !important;
  border-color: rgba(123, 54, 11, 0.20) !important;
  box-shadow: 0 20px 54px rgba(61, 26, 5, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

/* Dark normal cards: replace muddy/greenish shading with warm espresso + bronze. */
html[data-theme="dark"] body :is(
  .teacher-card,
  .coach-card:not(.coach-card--founder),
  .testimonial,
  .proof-card,
  .method-proof-card,
  .home-booking-card,
  .teacher-assignment-panel,
  .teacher-system-strip,
  .coach-system-strip,
  .founder-teaser-card,
  .story-proof-card,
  .story-side-card,
  .story-video-card,
  .pricing-card:not(.pricing-card--featured):not(.pricing-card--coming-soon):not(.pricing-card--group):not(.pricing-card--waitlist),
  .pricing-value-stack,
  .pricing-comparison,
  .comparison-mobile-card,
  .payment-flow-block,
  .pricing-trust-block,
  .pricing-next-steps,
  .pricing-question-row,
  .contact-form,
  .contact-application-card,
  .contact-fit-card,
  .contact-outcome-card,
  .faq-card,
  .faq-item,
  .legal-card,
  .security-callout,
  .checkout-summary-card,
  .checkout-plan-card,
  .checkout-policy-card,
  .checkout-flow-section,
  .welcome-step-card,
  .welcome-highlight-card,
  .welcome-side-card,
  .call-confirmed-card,
  .call-confirmed-system-card,
  .proof-artifact-card,
  .welcome-help-strip,
  .booking-next-card
) {
  background:
    radial-gradient(circle at 12% 0%, rgba(154, 79, 18, 0.18), transparent 16rem),
    radial-gradient(circle at 100% 100%, rgba(67, 24, 5, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(24, 8, 2, 0.995) 0%, rgba(43, 16, 4, 0.985) 100%) !important;
  border-color: rgba(239, 208, 139, 0.20) !important;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.40), inset 0 1px 0 rgba(255, 247, 234, 0.055) !important;
}

/* Premium/dark statement panels: richer chocolate espresso, no dull olive cast. */
:is(
  .pricing-card--featured,
  .pricing-card--coming-soon,
  .pricing-card--group,
  .pricing-card--waitlist,
  .private-bundle-card--premium,
  .coach-card--founder,
  .first-week-card,
  .system-question-box,
  .system-closing,
  .story-letter,
  .story-closing-card,
  .final-cta,
  .section-dark,
  .dark-section,
  .dark-panel
) {
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 107, 32, 0.22), transparent 18rem),
    radial-gradient(circle at 98% 96%, rgba(67, 24, 5, 0.36), transparent 22rem),
    linear-gradient(145deg, var(--lm-hue-espresso-900) 0%, var(--lm-hue-espresso-700) 62%, var(--lm-hue-espresso-600) 100%) !important;
  border-color: rgba(239, 208, 139, 0.26) !important;
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 247, 234, 0.055) !important;
}

/* Pricing dark mode gets the same warm system, loaded after earlier fixes. */
html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .pricing-card:not(.pricing-card--featured),
  .pricing-value-stack,
  .pricing-comparison,
  .payment-flow-block,
  .pricing-trust-block,
  .pricing-next-steps,
  .comparison-mobile-card,
  .pricing-founding-note,
  .pricing-question-row
) {
  background:
    radial-gradient(circle at 12% 0%, rgba(154, 79, 18, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(24, 8, 2, 0.995), rgba(43, 16, 4, 0.985)) !important;
  border-color: rgba(239, 208, 139, 0.22) !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing :is(
  .pricing-card--featured,
  .private-bundle-card--premium
) {
  background:
    radial-gradient(circle at 14% 0%, rgba(184, 107, 32, 0.24), transparent 18rem),
    radial-gradient(circle at 94% 92%, rgba(67, 24, 5, 0.38), transparent 22rem),
    linear-gradient(145deg, #100501 0%, #260d03 60%, #431805 100%) !important;
  border-color: rgba(239, 208, 139, 0.28) !important;
}

/* Small inner note cards: warmer parchment instead of gray/tan. */
html body :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note,
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-trust-list li,
  .pricing-next-steps li,
  .comparison-mobile-card,
  .pricing-value-list li,
  .pricing-best-for,
  .checkout-policy-card,
  .security-callout
) {
  border-color: rgba(123, 54, 11, 0.20) !important;
}

html[data-theme="light"] body :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note,
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-trust-list li,
  .pricing-next-steps li,
  .comparison-mobile-card,
  .pricing-value-list li,
  .pricing-best-for,
  .checkout-policy-card,
  .security-callout
) {
  background: linear-gradient(180deg, #fff4e3 0%, #e7c99e 100%) !important;
}

html[data-theme="dark"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note
),
html[data-theme="light"] body[data-page="pricing"] .pricing .private-bundle-card--premium :is(
  .bundle-stat,
  .bundle-body-note,
  .bundle-trust-note
) {
  background: linear-gradient(180deg, #f7e7cc 0%, #dfbf8f 100%) !important;
  border-color: rgba(123, 54, 11, 0.22) !important;
}

html[data-theme="dark"] body :is(
  .payment-flow-steps li,
  .payment-flow-note,
  .pricing-trust-list li,
  .pricing-next-steps li,
  .comparison-mobile-card,
  .pricing-value-list li,
  .pricing-best-for,
  .checkout-policy-card,
  .security-callout
) {
  background:
    radial-gradient(circle at 12% 0%, rgba(154, 79, 18, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(36, 13, 3, 0.96), rgba(55, 21, 5, 0.92)) !important;
  border-color: rgba(239, 208, 139, 0.18) !important;
}

/* Badges and buttons: refined bronze-gold, less cheap yellow. */
.pricing-featured-badge,
.payment-step-number {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.04)),
    linear-gradient(135deg, #f0d48c 0%, #d39a37 52%, #a65c18 100%) !important;
  border-color: rgba(255, 247, 234, 0.46) !important;
  box-shadow: 0 14px 30px rgba(18, 5, 1, 0.25), inset 0 1px 0 rgba(255,255,255,0.38) !important;
}

.btn-primary,
.bundle-cta-button,
.private-plan-card .btn-primary {
  background:
    linear-gradient(135deg, #efd08b 0%, #d39a37 48%, #9a4f12 100%) !important;
  border-color: rgba(239, 208, 139, 0.58) !important;
  box-shadow: 0 15px 34px rgba(67, 24, 5, 0.26), inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

html[data-theme="light"] .btn-primary,
html[data-theme="light"] .bundle-cta-button,
html[data-theme="light"] .private-plan-card .btn-primary {
  background:
    linear-gradient(135deg, #6c2d08 0%, #9a4f12 48%, #d39a37 100%) !important;
  border-color: rgba(239, 208, 139, 0.55) !important;
}

/* Decorative top shine: keep premium without green/yellow cast. */
:is(.pricing-card,.teacher-card,.coach-card,.testimonial,.proof-card,.method-proof-card,.legal-card,.faq-card,.contact-form)::before {
  background: linear-gradient(90deg, rgba(123,54,11,0), rgba(184,107,32,0.70), rgba(239,208,139,0.70), rgba(123,54,11,0)) !important;
  opacity: 0.72 !important;
}

html[data-theme="dark"] :is(.pricing-card,.teacher-card,.coach-card,.testimonial,.proof-card,.method-proof-card,.legal-card,.faq-card,.contact-form)::before {
  background: linear-gradient(90deg, rgba(239,208,139,0), rgba(184,107,32,0.78), rgba(239,208,139,0.62), rgba(239,208,139,0)) !important;
  opacity: 0.82 !important;
}

/* Header/footer depth matched to the same palette. */
html[data-theme="dark"] .site-header {
  background: rgba(16, 5, 1, 0.94) !important;
  border-bottom-color: rgba(239, 208, 139, 0.14) !important;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 10%, rgba(184, 107, 32, 0.14), transparent 22rem),
    linear-gradient(180deg, #170802, #080301) !important;
  border-top-color: rgba(239, 208, 139, 0.18) !important;
}


/* --- consolidated from pricing-stripe-button.css --- */
/* Language Monk Starter Sprint Stripe buy button — pricing page only. */
body[data-page="pricing"] .starter-sprint-buy-button {
  margin-top: 1rem;
  margin-bottom: 0.9rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button {
  width: 100%;
  max-width: 300px;
  display: block;
}

@media (max-width: 640px) {
  body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button {
    max-width: 100%;
  }
}


/* --- consolidated from pricing-public-buy-button-fix.css --- */
/* Language Monk pricing page public Starter Sprint button + light-mode contrast repair.
   Scope: pricing.html only. No copy/layout changes outside this page. */

body[data-page="pricing"] .pricing-card--featured {
  overflow: visible !important;
}

/* The $30 Starter Sprint card is a dark premium card in both modes, so all core text stays cream. */
html body[data-page="pricing"] .pricing .pricing-card--featured :is(.pricing-name,.pricing-price):not(.btn):not(.btn *) {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background: none !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.28) !important;
}

html body[data-page="pricing"] .pricing .pricing-card--featured :is(.pricing-desc,.pricing-price-note,.pricing-cta-note,.pricing-features li):not(.btn):not(.btn *) {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  background: none !important;
  text-shadow: none !important;
}

html body[data-page="pricing"] .pricing .pricing-card--featured :is(.pricing-tier,.pricing-features li::before):not(.btn):not(.btn *) {
  color: #f0d59a !important;
  -webkit-text-fill-color: #f0d59a !important;
}

/* Gold badge = dark text. This fixes the light-mode badge contrast on the $30 card. */
html body[data-page="pricing"] .pricing .pricing-card--featured .pricing-featured-badge {
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  text-shadow: none !important;
}

/* The small best-for note is a cream/parchment chip inside the dark card, so it needs dark espresso text. */
html body[data-page="pricing"] .pricing .pricing-card--featured .pricing-best-for {
  background: linear-gradient(180deg, #fff4e3 0%, #e7c99e 100%) !important;
  border-color: rgba(123,54,11,.24) !important;
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  text-shadow: none !important;
}

html body[data-page="pricing"] .pricing .pricing-card--featured .pricing-best-for * {
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  text-shadow: none !important;
}

/* Keep the public Stripe button easy to find near the $30 price. */
body[data-page="pricing"] .starter-sprint-buy-button {
  margin: .95rem 0 1.1rem !important;
  padding: .85rem !important;
  width: 100% !important;
  min-height: 84px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 1.05rem !important;
  background: rgba(255,248,236,.10) !important;
  border: 1px solid rgba(240,213,154,.22) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,.08) !important;
  overflow: visible !important;
}

body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button {
  width: 100% !important;
  max-width: 330px !important;
  min-height: 48px !important;
  display: block !important;
  visibility: visible !important;
}

@media (max-width: 640px) {
  body[data-page="pricing"] .starter-sprint-buy-button {
    padding: .7rem !important;
    min-height: 78px !important;
  }
  body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button {
    max-width: 100% !important;
  }
}


/* --- consolidated from pricing-weekly-buy-buttons.css --- */
/* Language Monk pricing page weekly Stripe buttons.
   Scope: pricing.html only. Adds public buy buttons for the three weekly packs without changing other pages. */

body[data-page="pricing"] .weekly-pack-buy-buttons {
  margin: 1.05rem 0 1.1rem;
  display: grid;
  gap: .85rem;
}

body[data-page="pricing"] .weekly-pack-buy-option {
  padding: .85rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(240, 213, 154, .22);
  background: linear-gradient(145deg, rgba(255, 248, 236, .095), rgba(111, 52, 18, .18));
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, .08), 0 12px 28px rgba(20, 9, 3, .18);
  overflow: visible;
}

body[data-page="pricing"] .weekly-pack-buy-label {
  margin: 0 0 .65rem;
  color: #fff3d8 !important;
  -webkit-text-fill-color: #fff3d8 !important;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

body[data-page="pricing"] .weekly-pack-buy-option stripe-buy-button {
  width: 100%;
  max-width: 330px;
  min-height: 48px;
  display: block;
  visibility: visible;
}

html[data-theme="light"] body[data-page="pricing"] .weekly-pack-buy-option,
body[data-theme="light"][data-page="pricing"] .weekly-pack-buy-option {
  background: linear-gradient(145deg, rgba(255, 248, 236, .13), rgba(129, 66, 22, .16));
}

@media (max-width: 640px) {
  body[data-page="pricing"] .weekly-pack-buy-buttons {
    gap: .75rem;
  }
  body[data-page="pricing"] .weekly-pack-buy-option {
    padding: .75rem;
  }
  body[data-page="pricing"] .weekly-pack-buy-option stripe-buy-button {
    max-width: 100%;
  }
}


/* --- consolidated from checkout-monthly-buy-buttons.css --- */
/* Language Monk confirmed monthly pack checkout buttons
   Scope: start-spanish-plan page only. No text/content changes elsewhere. */
body[data-page="checkout"] .checkout-monthly-buy-buttons {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.25rem;
}

body[data-page="checkout"] .checkout-monthly-approval-note {
  border: 1px solid rgba(90, 45, 12, 0.26);
  border-radius: 1rem;
  padding: 0.78rem 0.9rem;
  background: linear-gradient(135deg, #fff4df 0%, #ead2aa 100%);
  color: #2a1507 !important;
  -webkit-text-fill-color: #2a1507 !important;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.74), 0 10px 24px rgba(61, 26, 5, 0.10);
}

body[data-page="checkout"] .checkout-monthly-option {
  overflow: visible;
  border: 1px solid rgba(90, 45, 12, 0.24);
  border-radius: 1.25rem;
  padding: 1rem;
  background: linear-gradient(145deg, #f9ead3 0%, #e8cfaa 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 12px 28px rgba(61, 26, 5, 0.12);
}

body[data-page="checkout"] .checkout-monthly-option-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.82rem;
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
}

body[data-page="checkout"] .checkout-monthly-option-label strong {
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

body[data-page="checkout"] .checkout-monthly-option-label span {
  color: #5a2d0c !important;
  -webkit-text-fill-color: #5a2d0c !important;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

body[data-page="checkout"] .checkout-monthly-option stripe-buy-button {
  display: block;
  width: 100%;
  min-height: 48px;
}

html[data-theme="dark"] body[data-page="checkout"] .checkout-monthly-approval-note {
  border-color: rgba(240, 213, 154, 0.30);
  background: linear-gradient(135deg, #2b1909 0%, #4a2a0c 100%);
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  box-shadow: inset 0 1px 0 rgba(255, 244, 223, 0.10), 0 16px 36px rgba(0,0,0,0.34);
}

html[data-theme="dark"] body[data-page="checkout"] .checkout-monthly-option {
  border-color: rgba(240, 213, 154, 0.24);
  background: linear-gradient(145deg, #1a0f05 0%, #2a1707 100%);
  box-shadow: inset 0 1px 0 rgba(255, 244, 223, 0.09), 0 18px 40px rgba(0,0,0,0.42);
}

html[data-theme="dark"] body[data-page="checkout"] .checkout-monthly-option-label,
html[data-theme="dark"] body[data-page="checkout"] .checkout-monthly-option-label strong {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
}

html[data-theme="dark"] body[data-page="checkout"] .checkout-monthly-option-label span {
  color: #f0d59a !important;
  -webkit-text-fill-color: #f0d59a !important;
}

@media (max-width: 560px) {
  body[data-page="checkout"] .checkout-monthly-option {
    padding: 0.86rem;
  }

  body[data-page="checkout"] .checkout-monthly-option-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  body[data-page="checkout"] .checkout-monthly-option-label span {
    white-space: normal;
  }
}


/* --- consolidated from stripe-buy-button-fit.css --- */
/* Language Monk Stripe buy button fit polish
   Scope: Stripe buy button containers only. No copy, theme, or layout sections changed. */

:root {
  --lm-stripe-radius: 1.05rem;
  --lm-stripe-shell-pad: clamp(0.62rem, 1.4vw, 0.92rem);
  --lm-stripe-max: 318px;
}

/* General safety: Stripe buttons should never spill outside a card. */
body[data-page="pricing"] :is(.starter-sprint-buy-button, .weekly-pack-buy-buttons, .weekly-pack-buy-option),
body[data-page="checkout"] :is(.checkout-monthly-buy-buttons, .checkout-monthly-option) {
  box-sizing: border-box !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body[data-page="pricing"] :is(.starter-sprint-buy-button, .weekly-pack-buy-option),
body[data-page="checkout"] .checkout-monthly-option {
  display: grid !important;
  justify-items: center !important;
  align-items: center !important;
  overflow: hidden !important;
}

/* Starter Sprint button shelf inside the featured card. */
body[data-page="pricing"] .starter-sprint-buy-button {
  margin: 1rem 0 1.05rem !important;
  padding: var(--lm-stripe-shell-pad) !important;
  width: 100% !important;
  min-height: 76px !important;
  border-radius: var(--lm-stripe-radius) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.12), rgba(240, 213, 154, 0.06)) !important;
  border: 1px solid rgba(240, 213, 154, 0.26) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.12), 0 14px 30px rgba(20,9,3,0.18) !important;
}

/* Weekly pack button shelves inside the weekly card. */
body[data-page="pricing"] .weekly-pack-buy-buttons {
  width: 100% !important;
  margin: 1.05rem 0 1.15rem !important;
  gap: clamp(0.72rem, 1.4vw, 0.9rem) !important;
}

body[data-page="pricing"] .weekly-pack-buy-option {
  width: 100% !important;
  padding: var(--lm-stripe-shell-pad) !important;
  border-radius: var(--lm-stripe-radius) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.12), rgba(129, 66, 22, 0.12)) !important;
  border: 1px solid rgba(240, 213, 154, 0.24) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.10), 0 14px 30px rgba(20,9,3,0.16) !important;
}

body[data-page="pricing"] .weekly-pack-buy-label {
  width: 100% !important;
  text-align: center !important;
  margin: 0 0 0.62rem !important;
}

/* Confirmed monthly pack checkout button shelves. */
body[data-page="checkout"] .checkout-monthly-buy-buttons {
  width: 100% !important;
  margin-top: 1.15rem !important;
  gap: clamp(0.72rem, 1.4vw, 0.95rem) !important;
}

body[data-page="checkout"] .checkout-monthly-option {
  width: 100% !important;
  padding: var(--lm-stripe-shell-pad) !important;
  border-radius: 1.15rem !important;
}

body[data-page="checkout"] .checkout-monthly-option-label {
  width: 100% !important;
  max-width: var(--lm-stripe-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

/* Stripe custom element sizing. */
body :is(.starter-sprint-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button {
  display: block !important;
  width: 100% !important;
  max-width: var(--lm-stripe-max) !important;
  min-width: 0 !important;
  min-height: 48px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  border-radius: 0.92rem !important;
}

body :is(.starter-sprint-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border-radius: 0.92rem !important;
}

/* Light mode: keep shelves warm and premium without changing the site theme. */
html[data-theme="light"] body[data-page="pricing"] .weekly-pack-buy-option,
html:not([data-theme="dark"]) body[data-page="pricing"] .weekly-pack-buy-option,
html[data-theme="light"] body[data-page="checkout"] .checkout-monthly-option,
html:not([data-theme="dark"]) body[data-page="checkout"] .checkout-monthly-option {
  border-color: rgba(90, 45, 12, 0.22) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.96), rgba(232, 207, 170, 0.82)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 14px 30px rgba(61,26,5,0.10) !important;
}

html[data-theme="light"] body[data-page="pricing"] .weekly-pack-buy-label,
html:not([data-theme="dark"]) body[data-page="pricing"] .weekly-pack-buy-label {
  color: #2a1507 !important;
  -webkit-text-fill-color: #2a1507 !important;
  text-shadow: none !important;
}

/* Dark mode: keep buttons framed on dark surfaces with readable cream labels. */
html[data-theme="dark"] body[data-page="pricing"] :is(.starter-sprint-buy-button, .weekly-pack-buy-option),
html[data-theme="dark"] body[data-page="checkout"] .checkout-monthly-option {
  border-color: rgba(240, 213, 154, 0.26) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.08), rgba(111, 52, 18, 0.18)) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.09), 0 18px 38px rgba(0,0,0,0.34) !important;
}

html[data-theme="dark"] body[data-page="pricing"] .weekly-pack-buy-label {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.24) !important;
}

/* Tight mobile guard: no clipping, no horizontal overflow. */
@media (max-width: 520px) {
  :root {
    --lm-stripe-shell-pad: 0.62rem;
    --lm-stripe-max: 100%;
  }

  body[data-page="pricing"] :is(.starter-sprint-buy-button, .weekly-pack-buy-option),
  body[data-page="checkout"] .checkout-monthly-option {
    padding: 0.62rem !important;
    border-radius: 0.95rem !important;
  }

  body[data-page="checkout"] .checkout-monthly-option-label {
    max-width: 100% !important;
  }

  body :is(.starter-sprint-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button {
    max-width: 100% !important;
  }
}


/* --- consolidated from checkout-private-monthly-polish.css --- */
/* Language Monk private checkout monthly polish
   Scope: private checkout only. Removes empty placeholder behavior and makes confirmed monthly buttons fit premium cards. */

body[data-page="checkout"] .checkout-plan-grid--monthly-only {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 1040px !important;
  margin-inline: auto !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private {
  max-width: 1040px !important;
  width: 100% !important;
  margin-inline: auto !important;
  overflow: hidden !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-buy-buttons {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(0.85rem, 1.6vw, 1.15rem) !important;
  margin-top: clamp(1rem, 2vw, 1.35rem) !important;
  width: 100% !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-approval-note {
  grid-column: 1 / -1 !important;
  text-align: center !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-option {
  min-width: 0 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 0.76rem !important;
  overflow: hidden !important;
  padding: clamp(0.85rem, 1.45vw, 1.05rem) !important;
  border-radius: 1.18rem !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-option-label {
  max-width: 100% !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
  gap: 0.24rem !important;
  margin: 0 0 0.35rem !important;
  text-align: center !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-option-label strong,
body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-option-label span {
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  text-align: center !important;
  line-height: 1.22 !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-option-label strong {
  font-size: clamp(1rem, 1.25vw, 1.12rem) !important;
  letter-spacing: -0.01em !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-option-label span {
  font-size: clamp(0.86rem, 1vw, 0.95rem) !important;
  font-weight: 900 !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private stripe-buy-button {
  width: 100% !important;
  max-width: 292px !important;
  min-height: 48px !important;
  margin: 0 auto !important;
  border-radius: 999px !important;
  overflow: hidden !important;
}

/* Premium dark-mode shelf: monthly cards remain readable and warmer than default Stripe blue. */
html[data-theme="dark"] body[data-page="checkout"] .checkout-plan-card--monthly-private {
  border-color: rgba(240, 213, 154, 0.26) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(186, 118, 36, 0.22), transparent 34%),
    linear-gradient(145deg, #160903 0%, #2b1106 46%, #421b08 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.08), 0 26px 62px rgba(0,0,0,0.42) !important;
}

html[data-theme="dark"] body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-option {
  border-color: rgba(240, 213, 154, 0.22) !important;
  background: linear-gradient(145deg, rgba(255,248,236,0.10), rgba(111,52,18,0.22)) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.08), 0 18px 36px rgba(0,0,0,0.32) !important;
}

html[data-theme="light"] body[data-page="checkout"] .checkout-plan-card--monthly-private,
html:not([data-theme="dark"]) body[data-page="checkout"] .checkout-plan-card--monthly-private {
  border-color: rgba(90,45,12,0.18) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 177, 77, 0.20), transparent 34%),
    linear-gradient(145deg, #fffaf0 0%, #f1dfc2 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.80), 0 20px 52px rgba(90,45,12,0.13) !important;
}

@media (max-width: 980px) {
  body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-buy-buttons {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
    margin-inline: auto !important;
  }

  body[data-page="checkout"] .checkout-plan-card--monthly-private stripe-buy-button {
    max-width: 330px !important;
  }
}

@media (max-width: 520px) {
  body[data-page="checkout"] .checkout-plan-card--monthly-private {
    padding-inline: clamp(1rem, 5vw, 1.25rem) !important;
  }

  body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-buy-buttons {
    max-width: 100% !important;
  }
}


/* --- consolidated from stripe-buy-button-theme-polish.css --- */
/* Language Monk Stripe buy button theme polish
   Scope: Stripe buy-button elements only. Keeps IDs/functionality intact while reducing default blue mismatch. */

body :is(.starter-sprint-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button,
body :is(.starter-sprint-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button iframe {
  border-radius: 999px !important;
  overflow: hidden !important;
}

/* Stripe buy buttons are rendered cross-origin, so this safely color-tunes only the embedded button surface. */
body :is(.starter-sprint-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button iframe {
  filter: hue-rotate(178deg) saturate(0.76) brightness(0.96) contrast(1.06) !important;
}

html[data-theme="dark"] body :is(.starter-sprint-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button iframe {
  filter: hue-rotate(178deg) saturate(0.70) brightness(0.92) contrast(1.10) !important;
}

body :is(.starter-sprint-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button {
  box-shadow: 0 10px 24px rgba(20, 9, 3, 0.18) !important;
}


/* Coach-call scope cards: uses existing premium Language Monk palette only */
.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.booking-choice-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.booking-choice-card h3 {
  margin: 0 0 var(--space-3);
  color: var(--color-brown-deep);
  font-family: var(--font-display);
  font-size: var(--text-lg);
}

.booking-choice-card p {
  margin: 0 0 var(--space-5);
  color: var(--color-text-muted);
}

.booking-choice-card .btn {
  width: 100%;
}


/* Single lesson Stripe button polish — matches the Starter Sprint button shelf without changing Stripe IDs. */
body[data-page="pricing"] .pricing-card--single-lesson {
  overflow: visible !important;
}

body[data-page="pricing"] .single-lesson-buy-button {
  box-sizing: border-box !important;
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 1rem 0 1.05rem !important;
  padding: var(--lm-stripe-shell-pad) !important;
  min-height: 76px !important;
  display: grid !important;
  justify-items: center !important;
  align-items: center !important;
  overflow: hidden !important;
  border-radius: var(--lm-stripe-radius) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.12), rgba(240, 213, 154, 0.06)) !important;
  border: 1px solid rgba(240, 213, 154, 0.26) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.12), 0 14px 30px rgba(20,9,3,0.18) !important;
}

body[data-page="pricing"] .single-lesson-buy-button stripe-buy-button {
  display: block !important;
  width: 100% !important;
  max-width: var(--lm-stripe-max) !important;
  min-width: 0 !important;
  min-height: 48px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 24px rgba(20, 9, 3, 0.18) !important;
}

body[data-page="pricing"] .single-lesson-buy-button stripe-buy-button iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  filter: hue-rotate(178deg) saturate(0.76) brightness(0.96) contrast(1.06) !important;
}

html[data-theme="dark"] body[data-page="pricing"] .single-lesson-buy-button {
  border-color: rgba(240, 213, 154, 0.26) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.08), rgba(111, 52, 18, 0.18)) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.09), 0 18px 38px rgba(0,0,0,0.34) !important;
}

html[data-theme="dark"] body[data-page="pricing"] .single-lesson-buy-button stripe-buy-button iframe {
  filter: hue-rotate(178deg) saturate(0.70) brightness(0.92) contrast(1.10) !important;
}

@media (max-width: 520px) {
  body[data-page="pricing"] .single-lesson-buy-button {
    padding: 0.62rem !important;
    border-radius: 0.95rem !important;
  }

  body[data-page="pricing"] .single-lesson-buy-button stripe-buy-button {
    max-width: 100% !important;
  }
}

@media (min-width: 1180px) {
  .pricing-grid--money-models {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* ============================================================
   Pricing button refinement — audit/apply/refine
   Keeps the Language Monk premium palette while giving Stripe buttons
   enough room on desktop, tablet, and mobile.
   ============================================================ */
body[data-page="pricing"] .pricing-grid--money-models {
  width: min(100%, 1120px) !important;
  margin-inline: auto !important;
  grid-template-columns: repeat(2, minmax(320px, 1fr)) !important;
  align-items: stretch !important;
}

body[data-page="pricing"] .pricing-grid--money-models .pricing-card {
  min-width: 0 !important;
  overflow: visible !important;
}

body[data-page="pricing"] .weekly-pack-buy-buttons {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(0.75rem, 1.2vw, 0.95rem) !important;
  align-items: stretch !important;
  margin-top: 1.15rem !important;
}

body[data-page="pricing"] .weekly-pack-buy-option {
  display: grid !important;
  grid-template-rows: auto minmax(48px, auto) !important;
  justify-items: center !important;
  align-items: end !important;
  min-width: 0 !important;
  min-height: 132px !important;
  padding: clamp(0.75rem, 1.15vw, 0.92rem) !important;
  overflow: hidden !important;
}

body[data-page="pricing"] .weekly-pack-buy-label {
  width: 100% !important;
  max-width: 12rem !important;
  margin: 0 auto 0.72rem !important;
  text-align: center !important;
  line-height: 1.18 !important;
  font-size: clamp(0.92rem, 0.82rem + 0.25vw, 1rem) !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body[data-page="pricing"] .weekly-pack-buy-option stripe-buy-button {
  position: relative !important;
  width: 100% !important;
  max-width: 220px !important;
  min-width: 0 !important;
  height: 48px !important;
  min-height: 48px !important;
  display: block !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 999px !important;
}

body[data-page="pricing"] .weekly-pack-buy-option stripe-buy-button iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  display: block !important;
  border-radius: 999px !important;
}

/* Stripe is inside a cross-origin iframe. This overlay protects against
   the occasional clipped/missing button text while leaving the iframe clickable. */
body[data-page="pricing"] .weekly-pack-buy-option stripe-buy-button::after {
  content: "Buy";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff8ec;
  -webkit-text-fill-color: #fff8ec;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 5px rgba(20, 9, 3, 0.24);
}

body[data-page="pricing"] .pricing-card > .btn {
  min-height: 52px !important;
  border-radius: 999px !important;
  padding-inline: clamp(1.05rem, 2vw, 1.5rem) !important;
  line-height: 1.15 !important;
  white-space: normal !important;
}

@media (max-width: 1040px) {
  body[data-page="pricing"] .pricing-grid--money-models {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }

  body[data-page="pricing"] .weekly-pack-buy-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body[data-page="pricing"] .pricing-grid--money-models {
    max-width: 100% !important;
  }

  body[data-page="pricing"] .weekly-pack-buy-buttons {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
    margin-inline: auto !important;
  }

  body[data-page="pricing"] .weekly-pack-buy-option {
    min-height: 112px !important;
  }

  body[data-page="pricing"] .weekly-pack-buy-label {
    max-width: 100% !important;
  }

  body[data-page="pricing"] .weekly-pack-buy-option stripe-buy-button {
    max-width: 300px !important;
  }
}

/* ============================================================
   Premium Stripe mask — removes the default blue visual while
   preserving the real Stripe buy-button click target underneath.
   ============================================================ */
body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button {
  position: relative !important;
  isolation: isolate !important;
  cursor: pointer !important;
  background: transparent !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a3a10 0%, #b87125 48%, #d6a94d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.34), 0 12px 22px rgba(20, 9, 3, 0.22);
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::after {
  content: "Buy";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1208;
  -webkit-text-fill-color: #1e1208;
  font-weight: 900;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 248, 236, 0.28);
}

html[lang="es"] body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::after {
  content: "Comprar";
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button:hover::before,
body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button:focus-within::before {
  background: linear-gradient(135deg, #8f4716 0%, #c47a2b 48%, #e0b95e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.42), 0 15px 28px rgba(20, 9, 3, 0.28);
}

html[data-theme="dark"] body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::before {
  background: linear-gradient(135deg, #6f3412 0%, #b87125 50%, #d6a94d 100%);
}


/* ============================================================
   PRICING SIMPLIFICATION PASS — 2026-05-27
   Keeps the main nav pricing page simple and moves weekly checkout
   into its own page. Uses the existing premium brown/gold system.
   ============================================================ */
body[data-page="pricing"] .pricing-simple-page .container,
body[data-page="weekly-plans"] .weekly-plans-page .container {
  max-width: 1120px;
}

body[data-page="pricing"] .pricing-grid--simple-main {
  width: min(100%, 1080px) !important;
  margin: var(--space-12) auto 0 !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, 0.95fr) !important;
  gap: clamp(1rem, 2.4vw, 1.6rem) !important;
  align-items: stretch !important;
}

body[data-page="pricing"] .pricing-simple-side-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.25rem);
  min-width: 0;
}

body[data-page="pricing"] .pricing-card--starter-main,
body[data-page="pricing"] .pricing-card--compact-choice {
  min-width: 0 !important;
  overflow: visible !important;
}

body[data-page="pricing"] .pricing-card--compact-choice {
  padding: clamp(1.35rem, 2.2vw, 1.85rem) !important;
}

body[data-page="pricing"] .pricing-card--compact-choice .pricing-desc {
  margin-bottom: var(--space-4);
}

body[data-page="pricing"] .pricing-card--compact-choice .pricing-features {
  margin-bottom: var(--space-5);
}

body[data-page="pricing"] .pricing-card--compact-choice .btn,
body[data-page="weekly-plans"] .pricing-card .btn,
body[data-page="pricing"] .pricing-mini-contact .btn,
body[data-page="weekly-plans"] .pricing-mini-contact .btn {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 52px !important;
  border-radius: 999px !important;
}

body[data-page="pricing"] .pricing-mini-contact,
body[data-page="weekly-plans"] .pricing-mini-contact {
  margin: var(--space-10) auto 0;
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(214,169,77,0.18);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 92% 18%, rgba(214,169,77,0.16), transparent 32%),
    linear-gradient(145deg, rgba(255,251,244,0.90), rgba(232,211,181,0.72));
  box-shadow: 0 14px 36px rgba(61, 26, 5, 0.10);
}

body[data-page="pricing"] .pricing-mini-contact p,
body[data-page="weekly-plans"] .pricing-mini-contact p {
  margin: 0.35rem 0 0;
  max-width: 720px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

html[data-theme="dark"] body[data-page="pricing"] .pricing-mini-contact,
html[data-theme="dark"] body[data-page="weekly-plans"] .pricing-mini-contact {
  background:
    radial-gradient(circle at 92% 18%, rgba(214,169,77,0.10), transparent 32%),
    linear-gradient(145deg, rgba(33,20,8,0.96), rgba(18,10,3,0.96));
  border-color: rgba(240,213,154,0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

body[data-page="weekly-plans"] .weekly-plan-strip {
  width: min(100%, 1000px);
  margin: var(--space-8) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

body[data-page="weekly-plans"] .weekly-plan-strip span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(214,169,77,0.18);
  background: rgba(214,169,77,0.08);
  color: var(--color-text);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 850;
  line-height: 1.25;
}

body[data-page="weekly-plans"] .weekly-options-grid {
  width: min(100%, 1120px) !important;
  margin: var(--space-12) auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
  gap: clamp(1rem, 2vw, 1.35rem) !important;
  align-items: stretch !important;
}

body[data-page="weekly-plans"] .weekly-option-card {
  min-width: 0 !important;
  overflow: visible !important;
}

body[data-page="weekly-plans"] .weekly-pack-buy-option,
body[data-page="weekly-plans"] .single-lesson-buy-button {
  box-sizing: border-box !important;
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 1rem !important;
  padding: var(--lm-stripe-shell-pad, 0.65rem) !important;
  min-height: 82px !important;
  display: grid !important;
  justify-items: center !important;
  align-items: center !important;
  overflow: hidden !important;
  border-radius: var(--lm-stripe-radius, 1.15rem) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.12), rgba(240, 213, 154, 0.06)) !important;
  border: 1px solid rgba(240, 213, 154, 0.26) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.12), 0 14px 30px rgba(20,9,3,0.16) !important;
}

body[data-page="weekly-plans"] .weekly-pack-buy-label {
  width: 100% !important;
  max-width: 16rem !important;
  margin: 0 auto 0.7rem !important;
  text-align: center !important;
  line-height: 1.18 !important;
  font-size: clamp(0.95rem, 0.88rem + 0.2vw, 1.02rem) !important;
  font-weight: 850 !important;
}

body[data-page="weekly-plans"] :is(.weekly-pack-buy-option, .single-lesson-buy-button) stripe-buy-button {
  position: relative !important;
  width: 100% !important;
  max-width: 260px !important;
  min-width: 0 !important;
  height: 48px !important;
  min-height: 48px !important;
  display: block !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 999px !important;
}

body[data-page="weekly-plans"] :is(.weekly-pack-buy-option, .single-lesson-buy-button) stripe-buy-button iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  border-radius: 999px !important;
  overflow: hidden !important;
}

body[data-page="weekly-plans"] .weekly-mini-contact {
  margin-top: var(--space-8);
}

body[data-page="weekly-plans"] .weekly-mini-contact .single-lesson-buy-button {
  max-width: 330px !important;
  margin-top: 0 !important;
}

@media (max-width: 1060px) {
  body[data-page="pricing"] .pricing-grid--simple-main,
  body[data-page="weekly-plans"] .weekly-options-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }

  body[data-page="weekly-plans"] .weekly-plan-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body[data-page="pricing"] .pricing-mini-contact,
  body[data-page="weekly-plans"] .pricing-mini-contact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body[data-page="weekly-plans"] .weekly-plan-strip {
    grid-template-columns: 1fr;
  }

  body[data-page="weekly-plans"] .weekly-mini-contact .single-lesson-buy-button {
    max-width: 100% !important;
  }
}


/* Pricing touchup — simple weekly/monthly choice cards */
body[data-page="pricing"] .pricing-card--simple-choice {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: var(--space-5) !important;
  min-height: 190px !important;
}

body[data-page="pricing"] .pricing-card--simple-choice .pricing-name {
  margin-bottom: var(--space-2) !important;
}


/* ============================================================
   PRICING SENIOR REFINE — 2026-05-27
   Goal: less text, less dead space, premium simple choices.
   ============================================================ */
body[data-page="pricing"] .pricing-grid--simple-main {
  margin-top: clamp(2rem, 4vw, 3rem) !important;
  grid-template-columns: minmax(360px, 1.02fr) minmax(290px, 0.64fr) !important;
  align-items: start !important;
}

body[data-page="pricing"] .pricing-simple-side-cards {
  align-self: start !important;
  gap: clamp(0.9rem, 2vw, 1.15rem) !important;
}

body[data-page="pricing"] .pricing-card--starter-main {
  gap: clamp(0.8rem, 1.6vw, 1.05rem) !important;
  padding: clamp(1.55rem, 3vw, 2.25rem) !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-desc {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem) !important;
  line-height: 1.45 !important;
  margin: 0.15rem 0 !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-features,
body[data-page="weekly-plans"] .weekly-option-card .pricing-features {
  flex: 0 0 auto !important;
  margin-top: 0.25rem !important;
  gap: 0.7rem !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-features li,
body[data-page="weekly-plans"] .weekly-option-card .pricing-features li {
  line-height: 1.35 !important;
}

body[data-page="pricing"] .pricing-cta-note {
  margin: 0.35rem 0 0 !important;
  font-size: var(--text-sm) !important;
  line-height: 1.45 !important;
  color: rgba(250,247,242,0.82) !important;
  font-weight: 750 !important;
}

body[data-page="pricing"] .pricing-card--simple-choice {
  min-height: 0 !important;
  padding: clamp(1.2rem, 2vw, 1.55rem) !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  text-align: left !important;
  gap: clamp(0.85rem, 1.8vw, 1.05rem) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,169,77,0.13), transparent 36%),
    linear-gradient(145deg, var(--color-surface), var(--color-surface-2)) !important;
}

body[data-page="pricing"] .pricing-choice-heading {
  margin: 0 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.55rem, 1.2rem + 1.15vw, 2.25rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0.015em !important;
  color: var(--color-text) !important;
  text-wrap: balance !important;
}

body[data-page="pricing"] .pricing-card--simple-choice .btn {
  margin-top: 0 !important;
  min-height: 50px !important;
}

body[data-page="pricing"] .pricing-mini-contact,
body[data-page="weekly-plans"] .pricing-mini-contact {
  margin-top: clamp(1.4rem, 3vw, 2.2rem) !important;
  padding: clamp(0.95rem, 2vw, 1.25rem) !important;
}

body[data-page="pricing"] .pricing-mini-contact .section-label,
body[data-page="weekly-plans"] .pricing-mini-contact .section-label {
  margin-bottom: 0 !important;
}

body[data-page="pricing"] .pricing-mini-contact p,
body[data-page="weekly-plans"] .pricing-mini-contact p {
  font-size: var(--text-sm) !important;
  line-height: 1.4 !important;
  max-width: 540px !important;
}

body[data-page="weekly-plans"] .weekly-options-grid {
  margin-top: clamp(2rem, 4vw, 3rem) !important;
  align-items: start !important;
}

body[data-page="weekly-plans"] .weekly-option-card {
  padding: clamp(1.35rem, 2.5vw, 1.8rem) !important;
  gap: 0.85rem !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-desc {
  margin: 0 !important;
  line-height: 1.45 !important;
}

body[data-page="weekly-plans"] .weekly-plan-strip {
  margin-top: clamp(1.35rem, 3vw, 2rem) !important;
}

body[data-page="weekly-plans"] .weekly-pack-buy-option,
body[data-page="weekly-plans"] .single-lesson-buy-button {
  margin-top: 0.45rem !important;
}

@media (max-width: 1060px) {
  body[data-page="pricing"] .pricing-grid--simple-main {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }
  body[data-page="pricing"] .pricing-card--simple-choice {
    text-align: center !important;
  }
}


/* ============================================================
   PRICING BADGE + CTA SENIOR REFINE — 2026-05-27
   Fixes the Starter Sprint badge overlap, makes the $30 path clearer,
   and keeps the page simple, premium, and easy to understand.
   ============================================================ */
body[data-page="pricing"] .pricing-grid--simple-main {
  width: min(100%, 1040px) !important;
  grid-template-columns: minmax(390px, 1.04fr) minmax(300px, 0.62fr) !important;
  gap: clamp(1.25rem, 2.8vw, 2rem) !important;
  align-items: start !important;
}

body[data-page="pricing"] .pricing-card--starter-main {
  overflow: visible !important;
  padding: clamp(1.65rem, 3vw, 2.35rem) !important;
  gap: clamp(0.78rem, 1.3vw, 1rem) !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-featured-badge {
  position: static !important;
  transform: none !important;
  align-self: flex-start !important;
  margin: 0 0 0.55rem 0 !important;
  padding: 0.74rem 1.35rem !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #efd08b 0%, #d6a94d 48%, #b87125 100%) !important;
  border: 1px solid rgba(255,248,236,0.46) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.48), 0 12px 30px rgba(20, 9, 3, 0.24) !important;
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  font-size: clamp(0.82rem, 0.78rem + 0.18vw, 0.94rem) !important;
  font-weight: 950 !important;
  letter-spacing: 0.13em !important;
  line-height: 1.1 !important;
  text-align: center !important;
  white-space: nowrap !important;
  text-shadow: 0 1px 0 rgba(255,248,236,0.28) !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-tier {
  margin-top: 0 !important;
  font-size: clamp(0.78rem, 0.74rem + 0.12vw, 0.86rem) !important;
  letter-spacing: 0.16em !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-name {
  font-size: clamp(1.38rem, 1.16rem + 0.85vw, 2rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-price {
  margin-top: 0.25rem !important;
  font-size: clamp(2.1rem, 1.75rem + 1.45vw, 3.1rem) !important;
  line-height: 0.95 !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-price-note {
  margin-top: -0.2rem !important;
  font-size: clamp(0.86rem, 0.8rem + 0.16vw, 0.98rem) !important;
  letter-spacing: 0.13em !important;
}

body[data-page="pricing"] .starter-sprint-buy-button {
  margin: 0.65rem 0 0.85rem !important;
  padding: clamp(0.72rem, 1.5vw, 0.96rem) !important;
  min-height: 92px !important;
  border-radius: 1.25rem !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,248,236,0.18), transparent 62%),
    linear-gradient(145deg, rgba(255,248,236,0.13), rgba(111,52,18,0.20)) !important;
  border: 1px solid rgba(240,213,154,0.30) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.14), 0 16px 34px rgba(20, 9, 3, 0.20) !important;
}

body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button {
  width: 100% !important;
  max-width: 360px !important;
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
}

body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button iframe {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
}

body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button::after {
  font-size: clamp(1.02rem, 0.96rem + 0.18vw, 1.14rem) !important;
  letter-spacing: 0.02em !important;
}

body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button::before {
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.38), 0 14px 28px rgba(20, 9, 3, 0.30) !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-desc,
body[data-page="pricing"] .pricing-card--starter-main .pricing-features li,
body[data-page="pricing"] .pricing-card--starter-main .pricing-cta-note {
  font-size: clamp(0.98rem, 0.94rem + 0.12vw, 1.06rem) !important;
  line-height: 1.38 !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-features {
  gap: 0.62rem !important;
}

body[data-page="pricing"] .pricing-simple-side-cards {
  gap: clamp(1rem, 2vw, 1.25rem) !important;
}

body[data-page="pricing"] .pricing-card--simple-choice {
  padding: clamp(1.35rem, 2.5vw, 1.9rem) !important;
  min-height: clamp(150px, 16vw, 190px) !important;
  justify-content: center !important;
}

body[data-page="pricing"] .pricing-choice-heading {
  font-size: clamp(1.9rem, 1.45rem + 1.7vw, 3rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.01em !important;
}

body[data-page="pricing"] .pricing-card--simple-choice .btn {
  min-height: 54px !important;
  font-size: clamp(0.98rem, 0.92rem + 0.22vw, 1.08rem) !important;
  font-weight: 900 !important;
}

body[data-page="pricing"] .pricing-mini-contact {
  max-width: 1040px !important;
}

@media (max-width: 1060px) {
  body[data-page="pricing"] .pricing-grid--simple-main {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }
  body[data-page="pricing"] .pricing-simple-side-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body[data-page="pricing"] .pricing-simple-side-cards {
    grid-template-columns: 1fr !important;
  }
  body[data-page="pricing"] .pricing-card--starter-main .pricing-featured-badge {
    width: 100% !important;
    white-space: normal !important;
  }
  body[data-page="pricing"] .starter-sprint-buy-button {
    min-height: 86px !important;
  }
  body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button,
  body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button iframe {
    max-width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;
  }
}


/* ============================================================
   PRICING READABILITY REPAIR — audit apply refine 2026-05-27
   Fixes card headline wraps, makes Starter Sprint price obvious,
   and restores the full simple Starter Sprint details.
   ============================================================ */
body[data-page="pricing"] .pricing-grid--simple-main {
  width: min(100%, 1080px) !important;
  grid-template-columns: minmax(390px, 1.04fr) minmax(340px, 0.72fr) !important;
  gap: clamp(1.35rem, 2.8vw, 2.1rem) !important;
}

body[data-page="pricing"] .pricing-card--starter-main {
  gap: clamp(0.72rem, 1.25vw, 0.95rem) !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-price--starter-main {
  margin: 0.2rem 0 0 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2.65rem, 2.15rem + 1.7vw, 4.05rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.045em !important;
  color: #f2d98f !important;
  -webkit-text-fill-color: #f2d98f !important;
  text-shadow: 0 1px 0 rgba(255,248,236,0.18), 0 16px 34px rgba(20,9,3,0.28) !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-price-note {
  margin-top: 0.05rem !important;
  color: rgba(250,247,242,0.82) !important;
  -webkit-text-fill-color: rgba(250,247,242,0.82) !important;
  font-size: clamp(0.82rem, 0.78rem + 0.16vw, 0.95rem) !important;
  letter-spacing: 0.11em !important;
}

body[data-page="pricing"] .starter-sprint-buy-button {
  margin-top: 0.45rem !important;
  margin-bottom: 0.55rem !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-desc {
  max-width: 34rem !important;
  margin-top: 0.25rem !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-features {
  margin-top: 0.2rem !important;
  gap: 0.52rem !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-features li {
  font-size: clamp(0.95rem, 0.91rem + 0.14vw, 1.04rem) !important;
  line-height: 1.34 !important;
}

body[data-page="pricing"] .pricing-simple-side-cards {
  gap: clamp(1rem, 2.1vw, 1.3rem) !important;
}

body[data-page="pricing"] .pricing-card--simple-choice {
  min-height: clamp(142px, 13vw, 168px) !important;
  padding: clamp(1.25rem, 2.25vw, 1.65rem) !important;
  justify-content: center !important;
}

body[data-page="pricing"] .pricing-choice-heading {
  width: 100% !important;
  font-size: clamp(1.75rem, 1.34rem + 1.25vw, 2.42rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0.015em !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  text-wrap: nowrap !important;
}

body[data-page="pricing"] .pricing-card--simple-choice .btn {
  max-width: 18rem !important;
  margin-inline: auto !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.35rem !important;
  flex-wrap: wrap !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-price span:first-child {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 1.65rem + 1vw, 2.75rem) !important;
  font-weight: 900 !important;
  color: var(--color-text) !important;
  -webkit-text-fill-color: var(--color-text) !important;
}

body[data-page="weekly-plans"] .weekly-option-card.pricing-card--featured .pricing-price span:first-child {
  color: #f2d98f !important;
  -webkit-text-fill-color: #f2d98f !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-price span:last-child {
  font-size: clamp(0.95rem, 0.9rem + 0.14vw, 1.05rem) !important;
  font-weight: 750 !important;
}

@media (max-width: 1060px) {
  body[data-page="pricing"] .pricing-grid--simple-main {
    grid-template-columns: 1fr !important;
    max-width: 740px !important;
  }
  body[data-page="pricing"] .pricing-simple-side-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body[data-page="pricing"] .pricing-simple-side-cards {
    grid-template-columns: 1fr !important;
  }
  body[data-page="pricing"] .pricing-choice-heading {
    white-space: normal !important;
    text-wrap: balance !important;
    font-size: clamp(2rem, 11vw, 2.65rem) !important;
  }
  body[data-page="pricing"] .pricing-card--starter-main .pricing-price--starter-main {
    font-size: clamp(2.55rem, 12vw, 3.35rem) !important;
  }
}

/* ============================================================
   PRICING FINAL CLEANUP — audit apply refine x2 — 2026-05-27
   Keeps pack headlines clean: Weekly / Packs and Monthly / Packs.
   Prevents ugly word splitting in pricing headings and buttons.
   ============================================================ */
body[data-page="pricing"] .pricing-card--simple-choice {
  overflow: hidden !important;
  min-height: 0 !important;
  padding: clamp(1.35rem, 2.4vw, 1.75rem) !important;
  justify-content: center !important;
  gap: clamp(0.9rem, 1.8vw, 1.15rem) !important;
}

body[data-page="pricing"] .pricing-choice-heading {
  display: grid !important;
  gap: 0.02em !important;
  margin: 0 !important;
  font-size: clamp(2.1rem, 1.45rem + 1.7vw, 3.15rem) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.01em !important;
  text-wrap: normal !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body[data-page="pricing"] .pricing-choice-heading .pack-title-line {
  display: block !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body[data-page="pricing"] .pricing-card--simple-choice .btn {
  width: min(100%, 17rem) !important;
  margin-inline: auto !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body[data-page="pricing"] .pricing-card--starter-main .pricing-name,
body[data-page="pricing"] .pricing-card--starter-main .pricing-price--starter-main,
body[data-page="pricing"] .pricing-card--starter-main .pricing-price-note,
body[data-page="pricing"] .pricing-card--starter-main .pricing-featured-badge,
body[data-page="weekly-plans"] .weekly-option-card .pricing-name,
body[data-page="weekly-plans"] .weekly-option-card .pricing-price,
body[data-page="weekly-plans"] .weekly-pack-buy-label,
body[data-page="weekly-plans"] .weekly-plan-strip span {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body[data-page="weekly-plans"] .weekly-plan-strip {
  width: min(100%, 820px) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body[data-page="weekly-plans"] .weekly-option-card.pricing-card--featured {
  transform: none !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-desc {
  font-size: clamp(1rem, 0.95rem + 0.16vw, 1.08rem) !important;
  font-weight: 750 !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-features {
  gap: 0.5rem !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-features li {
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem) !important;
  line-height: 1.3 !important;
}

@media (max-width: 720px) {
  body[data-page="weekly-plans"] .weekly-plan-strip {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   PRICING OVERSPILL REPAIR — audit apply refine x2 — 2026-05-27
   Goal: pack cards read as Weekly / Packs and Monthly / Packs,
   never split words, never spill outside the cards.
   ============================================================ */
body[data-page="pricing"] .pricing-simple-side-cards {
  width: 100% !important;
  min-width: 0 !important;
}

body[data-page="pricing"] .pricing-card--simple-choice {
  container-type: inline-size !important;
  overflow: hidden !important;
  min-height: clamp(220px, 24vw, 270px) !important;
  padding: clamp(1.45rem, 2.4vw, 2rem) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

body[data-page="pricing"] .pricing-choice-heading {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.08em !important;
  margin: 0 auto clamp(0.9rem, 2vw, 1.25rem) !important;
  font-size: clamp(2.15rem, 11cqw, 2.75rem) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.005em !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body[data-page="pricing"] .pricing-choice-heading .pack-title-line {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-align: center !important;
}

body[data-page="pricing"] .pricing-card--simple-choice .btn {
  width: min(100%, 18rem) !important;
  max-width: 100% !important;
  min-height: 56px !important;
  margin: 0 auto !important;
  padding-inline: clamp(1.1rem, 5cqw, 1.6rem) !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body[data-page="pricing"] .pricing-card--simple-choice .btn,
body[data-page="pricing"] .pricing-card--starter-main :is(.pricing-tier, .pricing-name, .pricing-price, .pricing-price-note, .pricing-desc, .pricing-features li, .pricing-cta-note),
body[data-page="weekly-plans"] :is(.section-heading, .pricing-name, .pricing-price, .pricing-price span, .pricing-tier, .pricing-desc, .pricing-features li, .weekly-pack-buy-label, .weekly-plan-strip span, .btn) {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

@media (max-width: 1060px) {
  body[data-page="pricing"] .pricing-card--simple-choice {
    min-height: 210px !important;
  }
  body[data-page="pricing"] .pricing-choice-heading {
    font-size: clamp(2.05rem, 10cqw, 2.55rem) !important;
  }
}

@media (max-width: 680px) {
  body[data-page="pricing"] .pricing-card--simple-choice {
    min-height: 190px !important;
  }
  body[data-page="pricing"] .pricing-choice-heading {
    font-size: clamp(2.05rem, 13cqw, 2.55rem) !important;
  }
}


/* ============================================================
   BOOKING PROOF SECTION CLEANUP — remove redundant side card
   ============================================================ */
.homepage-proof-callout {
  padding-block: clamp(2.75rem, 5vw, 4.75rem);
}

.proof-callout-grid {
  grid-template-columns: minmax(0, 820px) !important;
  justify-content: center;
  align-items: center;
  max-width: 960px;
}

.tom-proof-card {
  width: 100%;
  min-height: auto;
  padding: clamp(1.75rem, 3.4vw, 3rem);
}

.tom-proof-card blockquote {
  max-width: 760px;
}

@media (min-width: 901px) {
  .tom-proof-card {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .proof-callout-grid {
    max-width: 100%;
  }
}

/* Homepage Starter Sprint flow refinement: keeps the main landing page focused on one clean first step. */
.booking--starter-only {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.booking-starter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.booking-starter-copy .section-heading {
  max-width: 780px;
}

.booking-starter-copy .section-sub {
  max-width: 640px;
  margin-left: 0;
  margin-right: 0;
}

.booking-starter-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 213, 154, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(61, 26, 5, 0.94), rgba(30, 18, 8, 0.96));
  box-shadow: var(--shadow-xl);
  padding: clamp(1.45rem, 4vw, 2.25rem);
  color: var(--color-cream);
}

.booking-starter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.12);
}

.booking-starter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: var(--color-ink);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(20, 9, 3, 0.22);
}

.booking-starter-card h3 {
  margin: 1rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.25rem);
  line-height: 0.92;
  color: var(--color-cream);
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.booking-starter-card p {
  margin: 0 0 1.15rem;
  color: var(--color-gold-soft);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  max-width: 28ch;
}

.booking-starter-list {
  display: grid;
  gap: 0.72rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.booking-starter-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--color-cream);
  font-weight: 750;
  line-height: 1.35;
  max-width: none;
}

.booking-starter-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 900;
}

.booking-starter-card .btn {
  width: 100%;
  min-height: 58px;
}

html[data-theme="light"] .booking-starter-card {
  color: var(--color-cream);
}

html[data-theme="light"] .booking-starter-card :is(h3, p, li) {
  -webkit-text-fill-color: currentColor !important;
}

html[data-theme="light"] .booking-starter-card h3,
html[data-theme="dark"] .booking-starter-card h3 {
  color: var(--color-cream) !important;
}

@media (max-width: 820px) {
  .booking-starter-layout {
    grid-template-columns: 1fr;
  }

  .booking-starter-card {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .booking-starter-card h3 {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }
}


/* Lesson use-window policy notes — 20260527-use-windows */
.pricing-policy-note {
  border-color: color-mix(in srgb, var(--color-gold-light) 42%, var(--color-border));
  background: linear-gradient(135deg, rgba(240, 213, 154, 0.12), rgba(90, 45, 12, 0.16));
}
.pricing-policy-note p {
  max-width: 62ch;
}
body[data-page="pricing"] .pricing-card--starter-main .pricing-features li:last-child,
body[data-page="weekly-plans"] .weekly-option-card .pricing-features li:first-child,
.checkout-monthly-approval-note {
  font-weight: 700;
}


/* ============================================================
   STRIPE BUTTON RESTORE — audit apply refine 2026-05-27
   Restores the clean premium gold Stripe button look.
   Keeps the real Stripe iframe clickable, but hides the raw blue
   iframe so all Stripe buttons match the Language Monk brand.
   ============================================================ */
:root {
  --lm-stripe-restore-radius: 999px;
  --lm-stripe-restore-height: 54px;
  --lm-stripe-restore-width: 310px;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button {
  position: relative !important;
  isolation: isolate !important;
  display: block !important;
  width: 100% !important;
  max-width: var(--lm-stripe-restore-width) !important;
  height: var(--lm-stripe-restore-height) !important;
  min-height: var(--lm-stripe-restore-height) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: var(--lm-stripe-restore-radius) !important;
  background: transparent !important;
  box-shadow: 0 14px 28px rgba(20, 9, 3, 0.24) !important;
  cursor: pointer !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button iframe {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  border-radius: var(--lm-stripe-restore-radius) !important;
  opacity: 0.01 !important;
  filter: none !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  border-radius: var(--lm-stripe-restore-radius) !important;
  background:
    linear-gradient(135deg, #8a4514 0%, #bd7829 48%, #e2b958 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 236, 0.44),
    inset 0 -10px 20px rgba(90, 45, 12, 0.14) !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::after {
  content: "Buy" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1e1208 !important;
  -webkit-text-fill-color: #1e1208 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.12rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-shadow: 0 1px 0 rgba(255, 248, 236, 0.32) !important;
  white-space: nowrap !important;
}

html[lang="es"] body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::after {
  content: "Comprar" !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button:hover::before,
body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button:focus-within::before {
  background:
    linear-gradient(135deg, #9b531c 0%, #cc8734 48%, #edc76d 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 236, 0.52),
    inset 0 -10px 20px rgba(90, 45, 12, 0.12),
    0 16px 32px rgba(20, 9, 3, 0.26) !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) {
  overflow: visible !important;
}

body[data-page="pricing"] .starter-sprint-buy-button,
body[data-page="weekly-plans"] :is(.weekly-pack-buy-option, .single-lesson-buy-button),
body[data-page="checkout"] .checkout-monthly-option {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body[data-page="pricing"] .starter-sprint-buy-button {
  min-height: 88px !important;
  padding: clamp(0.72rem, 1.5vw, 0.95rem) !important;
}

body[data-page="pricing"] .starter-sprint-buy-button stripe-buy-button {
  --lm-stripe-restore-width: 360px;
  --lm-stripe-restore-height: 56px;
}

body[data-page="weekly-plans"] :is(.weekly-pack-buy-option, .single-lesson-buy-button) stripe-buy-button,
body[data-page="checkout"] .checkout-monthly-option stripe-buy-button {
  --lm-stripe-restore-width: 300px;
  --lm-stripe-restore-height: 52px;
}

body[data-page="weekly-plans"] .weekly-pack-buy-label,
body[data-page="checkout"] .checkout-monthly-option-label {
  position: relative !important;
  z-index: 4 !important;
}

@media (max-width: 560px) {
  body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button {
    --lm-stripe-restore-width: 100%;
  }
  body[data-page="pricing"] .starter-sprint-buy-button {
    min-height: 82px !important;
  }
}


/* ============================================================
   HOUR PACK STRIPE UPDATE — audit apply refine 2026-05-27
   Weekly and monthly pack cards stay simple, premium, and easy to read.
   ============================================================ */
body[data-page="weekly-plans"] .weekly-plan-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 900px !important;
}

body[data-page="weekly-plans"] .weekly-option-card,
body[data-page="checkout"] .checkout-plan-card--monthly-private {
  overflow: hidden !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-name {
  font-size: clamp(1.55rem, 1.25rem + 1vw, 2.15rem) !important;
  line-height: 1.04 !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-price {
  margin-top: 0.15rem !important;
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  flex-wrap: wrap !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-price span:first-child {
  font-size: clamp(2.6rem, 6vw, 4.1rem) !important;
  letter-spacing: -0.045em !important;
}

.pack-value-line,
body[data-page="checkout"] .checkout-monthly-option-label small.pack-value-line {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0.25rem auto 0 !important;
  padding: 0.32rem 0.72rem !important;
  border-radius: 999px !important;
  background: rgba(214, 169, 77, 0.16) !important;
  border: 1px solid rgba(214, 169, 77, 0.22) !important;
  color: var(--color-gold-soft) !important;
  -webkit-text-fill-color: var(--color-gold-soft) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

html[data-theme="light"] .pack-value-line,
html[data-theme="light"] body[data-page="checkout"] .checkout-monthly-option-label small.pack-value-line {
  color: #7a3f12 !important;
  -webkit-text-fill-color: #7a3f12 !important;
  background: rgba(214, 169, 77, 0.18) !important;
  border-color: rgba(184, 113, 37, 0.22) !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-desc {
  font-size: clamp(0.98rem, 0.94rem + 0.18vw, 1.08rem) !important;
  font-weight: 750 !important;
  text-align: center !important;
}

body[data-page="weekly-plans"] .weekly-option-card .pricing-features {
  max-width: 260px !important;
  margin-inline: auto !important;
}

body[data-page="weekly-plans"] .weekly-pack-buy-label {
  max-width: 18rem !important;
  font-size: clamp(1rem, 0.94rem + 0.22vw, 1.08rem) !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-plan-price {
  font-size: clamp(2.8rem, 7vw, 4.6rem) !important;
  letter-spacing: -0.055em !important;
}

body[data-page="checkout"] .checkout-monthly-option-label {
  gap: 0.28rem !important;
  text-align: center !important;
}

body[data-page="checkout"] .checkout-monthly-option-label strong {
  font-size: clamp(1.08rem, 0.98rem + 0.36vw, 1.25rem) !important;
}

body[data-page="checkout"] .checkout-monthly-option-label span {
  font-size: clamp(0.96rem, 0.9rem + 0.25vw, 1.08rem) !important;
  font-weight: 850 !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button {
  --lm-stripe-restore-height: 54px;
}

body[data-page="weekly-plans"] :is(.weekly-pack-buy-option, .single-lesson-buy-button) stripe-buy-button,
body[data-page="checkout"] .checkout-monthly-option stripe-buy-button {
  --lm-stripe-restore-width: 300px;
  --lm-stripe-restore-height: 54px;
}

@media (max-width: 1060px) {
  body[data-page="weekly-plans"] .weekly-plan-strip {
    grid-template-columns: 1fr !important;
    max-width: 540px !important;
  }
}


/* --- 2026-05-27 ADD BACK 30-MIN PACKS + BUTTON MATCH FIX --- */
body[data-page="weekly-plans"] .pricing-pack-section,
body[data-page="checkout"] .checkout-pack-section {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

body[data-page="weekly-plans"] .pricing-pack-section-head,
body[data-page="checkout"] .checkout-pack-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(0.9rem, 2vw, 1.15rem);
}

body[data-page="weekly-plans"] .pricing-pack-section-head h2,
body[data-page="checkout"] .checkout-pack-section-head h4 {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

body[data-page="weekly-plans"] .pricing-pack-section-head h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

body[data-page="checkout"] .checkout-pack-section-head h4 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

body[data-page="weekly-plans"] .pricing-pack-section-head p,
body[data-page="checkout"] .checkout-pack-section-head span {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
}

body[data-page="weekly-plans"] .weekly-options-grid {
  align-items: stretch;
}

body[data-page="weekly-plans"] .weekly-option-card {
  display: flex;
  flex-direction: column;
}

body[data-page="weekly-plans"] .weekly-pack-buy-option {
  width: 100% !important;
  margin-top: auto;
  padding: var(--lm-stripe-shell-pad, 0.78rem) !important;
  border-radius: var(--lm-stripe-radius, 1.05rem) !important;
  border: 1px solid rgba(90, 45, 12, 0.22) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.96), rgba(232, 207, 170, 0.82)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 14px 30px rgba(61,26,5,0.10) !important;
  display: grid !important;
  justify-items: center !important;
  align-items: center !important;
  gap: clamp(0.72rem, 1.4vw, 0.95rem) !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

html[data-theme="dark"] body[data-page="weekly-plans"] .weekly-pack-buy-option {
  border-color: rgba(240, 213, 154, 0.26) !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.08), rgba(111, 52, 18, 0.18)) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,236,0.09), 0 18px 38px rgba(0,0,0,0.34) !important;
}

body[data-page="weekly-plans"] .weekly-pack-buy-label,
body[data-page="checkout"] .checkout-monthly-option-label small.pack-value-line {
  color: var(--text-primary);
  font-weight: 900;
  text-align: center;
}

body[data-page="weekly-plans"] .weekly-pack-buy-option stripe-buy-button,
body[data-page="weekly-plans"] .single-lesson-buy-button stripe-buy-button,
body[data-page="checkout"] .checkout-monthly-option stripe-buy-button {
  display: block !important;
  width: 100% !important;
  max-width: var(--lm-stripe-max, 330px) !important;
  min-width: 0 !important;
  min-height: 48px !important;
  border-radius: 0.92rem !important;
  overflow: hidden !important;
}

body[data-page="weekly-plans"] .weekly-pack-buy-option stripe-buy-button iframe,
body[data-page="checkout"] .checkout-monthly-option stripe-buy-button iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body[data-page="checkout"] .checkout-pack-section {
  border-top: 1px solid rgba(90, 45, 12, 0.16);
  padding-top: clamp(1rem, 2vw, 1.3rem);
}

body[data-page="checkout"] .checkout-pack-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

body[data-page="checkout"] .checkout-monthly-option-label small.pack-value-line {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #7a4a12 !important;
  -webkit-text-fill-color: #7a4a12 !important;
  white-space: normal;
}

@media (max-width: 720px) {
  body[data-page="weekly-plans"] .pricing-pack-section-head,
  body[data-page="checkout"] .checkout-pack-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============================================================
   PAYMENT BUTTON + MONTHLY CHECKOUT ALIGNMENT REPAIR
   Audit apply refine — 2026-05-27
   Goal: remove Stripe blue corner bleed, center pack columns, keep premium theme.
   ============================================================ */
:root {
  --lm-pay-button-width: min(100%, 300px);
  --lm-pay-button-height: 54px;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button {
  position: relative !important;
  isolation: isolate !important;
  display: block !important;
  width: var(--lm-pay-button-width) !important;
  max-width: 300px !important;
  height: var(--lm-pay-button-height) !important;
  min-height: var(--lm-pay-button-height) !important;
  margin-inline: auto !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #8a4514 0%, #bd7829 48%, #e2b958 100%) !important;
  box-shadow: 0 14px 28px rgba(20, 9, 3, 0.24) !important;
  transform: translateZ(0) !important;
  clip-path: inset(0 round 999px) !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button iframe {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  outline: 0 !important;
  opacity: 0 !important;
  filter: none !important;
  border-radius: 999px !important;
  clip-path: inset(0 round 999px) !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(138, 69, 20, 0.98) 0%, rgba(189, 120, 41, 0.98) 48%, rgba(226, 185, 88, 0.98) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 236, 0.38),
    inset 0 -12px 22px rgba(87, 40, 10, 0.18) !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::after {
  content: "Buy" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  display: grid !important;
  place-items: center !important;
  pointer-events: none !important;
  color: #1f1208 !important;
  -webkit-text-fill-color: #1f1208 !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(1.02rem, 1vw, 1.16rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
  text-shadow: 0 1px 0 rgba(255, 248, 236, 0.30) !important;
}

body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button:hover::before,
body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button:focus-within::before {
  background: linear-gradient(135deg, rgba(165, 83, 21, 0.98) 0%, rgba(211, 141, 49, 0.98) 50%, rgba(238, 201, 111, 0.98) 100%) !important;
}

html[lang="es"] body :is(.starter-sprint-buy-button, .single-lesson-buy-button, .weekly-pack-buy-option, .checkout-monthly-option) stripe-buy-button::after {
  content: "Comprar" !important;
}

/* Center the private monthly checkout columns. Earlier grid used 3 columns for 2 sections, leaving an empty right column. */
body[data-page="checkout"] .checkout-plan-card--monthly-private {
  max-width: 980px !important;
  margin-inline: auto !important;
  padding-inline: clamp(1.15rem, 3vw, 2rem) !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-buy-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 420px)) !important;
  justify-content: center !important;
  align-items: start !important;
  gap: clamp(1rem, 2vw, 1.45rem) !important;
  width: 100% !important;
  max-width: 900px !important;
  margin: clamp(1.15rem, 2vw, 1.55rem) auto 0 !important;
}

body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-approval-note {
  grid-column: 1 / -1 !important;
  max-width: 700px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

body[data-page="checkout"] .checkout-pack-section {
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 0 !important;
  padding: clamp(1rem, 1.6vw, 1.2rem) !important;
  border: 1px solid rgba(240, 213, 154, 0.16) !important;
  border-radius: 1.45rem !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.05), rgba(111, 52, 18, 0.14)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.06), 0 14px 34px rgba(0, 0, 0, 0.16) !important;
  display: grid !important;
  gap: clamp(0.82rem, 1.3vw, 1rem) !important;
  align-content: start !important;
}

body[data-page="checkout"] .checkout-pack-section:first-of-type {
  border-top: 1px solid rgba(240, 213, 154, 0.16) !important;
  padding-top: clamp(1rem, 1.6vw, 1.2rem) !important;
}

body[data-page="checkout"] .checkout-pack-section-head {
  display: grid !important;
  gap: 0.35rem !important;
  justify-items: center !important;
  text-align: center !important;
  margin-bottom: 0.15rem !important;
}

body[data-page="checkout"] .checkout-pack-section-head span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  margin-inline: auto !important;
  padding: 0.34rem 0.78rem !important;
  border-radius: 999px !important;
  background: rgba(214, 169, 77, 0.15) !important;
  border: 1px solid rgba(214, 169, 77, 0.22) !important;
  color: var(--color-gold-soft) !important;
  -webkit-text-fill-color: var(--color-gold-soft) !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

body[data-page="checkout"] .checkout-monthly-option {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: clamp(0.9rem, 1.25vw, 1.05rem) !important;
  display: grid !important;
  justify-items: center !important;
  gap: 0.78rem !important;
  overflow: hidden !important;
  border-radius: 1.12rem !important;
}

body[data-page="checkout"] .checkout-monthly-option-label {
  max-width: 100% !important;
  text-align: center !important;
  margin: 0 !important;
}

body[data-page="checkout"] .checkout-monthly-option-label strong,
body[data-page="checkout"] .checkout-monthly-option-label span {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

@media (max-width: 900px) {
  body[data-page="checkout"] .checkout-plan-card--monthly-private .checkout-monthly-buy-buttons {
    grid-template-columns: minmax(0, 460px) !important;
  }
}

@media (max-width: 520px) {
  :root {
    --lm-pay-button-width: 100%;
    --lm-pay-button-height: 52px;
  }

  body[data-page="checkout"] .checkout-plan-card--monthly-private {
    padding-inline: clamp(0.9rem, 4vw, 1.1rem) !important;
  }

  body[data-page="checkout"] .checkout-pack-section {
    padding: 0.88rem !important;
    border-radius: 1.18rem !important;
  }

  body[data-page="checkout"] .checkout-monthly-option {
    padding: 0.82rem !important;
  }
}

/* Weekly plans aligned with monthly checkout page — audit/apply/refine pass 2 */
body[data-page="weekly-plans"] .weekly-pack-checkout-grid {
  width: min(100%, 980px);
  margin: clamp(28px, 5vw, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(22px, 4vw, 34px);
  align-items: start;
}

body[data-page="weekly-plans"] .weekly-pack-section {
  padding: clamp(22px, 3vw, 30px);
  border-radius: 30px;
  border: 1px solid rgba(228, 180, 93, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(227, 169, 73, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(78, 35, 14, 0.74), rgba(28, 12, 6, 0.9));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
}

body[data-page="weekly-plans"] .weekly-pack-section .checkout-pack-section-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(228, 180, 93, 0.16);
}

body[data-page="weekly-plans"] .weekly-pack-section .checkout-pack-section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

body[data-page="weekly-plans"] .weekly-pack-section .checkout-pack-section-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(227, 169, 73, 0.14);
  color: var(--color-gold-light);
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

body[data-page="weekly-plans"] .weekly-checkout-option {
  width: 100%;
  min-height: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: 14px;
  align-items: center;
  justify-items: stretch;
  padding: 17px;
  border-radius: 24px;
  border: 1px solid rgba(228, 180, 93, 0.18);
  background: rgba(255, 244, 216, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 246, 225, 0.06);
  overflow: hidden;
}

body[data-page="weekly-plans"] .weekly-checkout-option:last-child {
  margin-bottom: 0;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label {
  min-width: 0;
  display: grid;
  gap: 4px;
  text-align: left;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.25;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label small.pack-value-line {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  margin-top: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(227, 169, 73, 0.16);
  color: var(--color-gold-light);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

body[data-page="weekly-plans"] .weekly-checkout-option stripe-buy-button {
  position: relative;
  z-index: 1;
  justify-self: stretch;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 220px !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  margin: 0 auto;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: transparent !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option stripe-buy-button iframe {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 54px !important;
  opacity: 0.01 !important;
  transform: scale(1.08) !important;
  transform-origin: center !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option stripe-buy-button::before,
body[data-page="weekly-plans"] .single-lesson-buy-button stripe-buy-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold-light));
  box-shadow: inset 0 1px 0 rgba(255, 247, 226, 0.22), 0 12px 26px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

body[data-page="weekly-plans"] .weekly-checkout-option stripe-buy-button::after,
body[data-page="weekly-plans"] .single-lesson-buy-button stripe-buy-button::after {
  content: "Buy";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--color-text-inverse);
  font-weight: 950;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
  pointer-events: none;
}

body[data-page="weekly-plans"] .single-lesson-buy-button stripe-buy-button {
  max-width: 220px !important;
}

@media (max-width: 900px) {
  body[data-page="weekly-plans"] .weekly-pack-checkout-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  body[data-page="weekly-plans"] .weekly-checkout-option {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  body[data-page="weekly-plans"] .weekly-checkout-option stripe-buy-button {
    max-width: 100% !important;
  }

  body[data-page="weekly-plans"] .weekly-pack-section .checkout-pack-section-head {
    display: grid;
    gap: 10px;
  }
}

/* ============================================================
   Weekly checkout polish — match monthly payment page layout
   Audit apply refine — 2026-05-27
   Goal: same premium monthly layout, centered buttons, no repeated value pills.
   ============================================================ */
body[data-page="weekly-plans"] .weekly-pack-checkout-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 420px)) !important;
  justify-content: center !important;
  align-items: start !important;
  gap: clamp(1rem, 2vw, 1.45rem) !important;
  width: 100% !important;
  max-width: 900px !important;
  margin: clamp(1.15rem, 2vw, 1.55rem) auto 0 !important;
}

body[data-page="weekly-plans"] .weekly-pack-section {
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 0 !important;
  padding: clamp(1rem, 1.6vw, 1.2rem) !important;
  border: 1px solid rgba(240, 213, 154, 0.16) !important;
  border-radius: 1.45rem !important;
  background: linear-gradient(145deg, rgba(255, 248, 236, 0.05), rgba(111, 52, 18, 0.14)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.06), 0 14px 34px rgba(0, 0, 0, 0.16) !important;
  display: grid !important;
  gap: clamp(0.82rem, 1.3vw, 1rem) !important;
  align-content: start !important;
}

body[data-page="weekly-plans"] .weekly-pack-section .checkout-pack-section-head {
  display: grid !important;
  gap: 0.35rem !important;
  justify-items: center !important;
  text-align: center !important;
  margin: 0 0 0.15rem !important;
  padding: 0 !important;
  border: 0 !important;
}

body[data-page="weekly-plans"] .weekly-pack-section .checkout-pack-section-head h2 {
  margin: 0.25rem 0 0 !important;
  font-size: clamp(1.18rem, 2vw, 1.55rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.01em !important;
  color: var(--color-text) !important;
  -webkit-text-fill-color: var(--color-text) !important;
}

body[data-page="weekly-plans"] .weekly-pack-section .checkout-pack-section-head span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-inline: auto !important;
  padding: 0.34rem 0.78rem !important;
  border-radius: 999px !important;
  background: rgba(214, 169, 77, 0.15) !important;
  border: 1px solid rgba(214, 169, 77, 0.22) !important;
  color: var(--color-gold-soft) !important;
  -webkit-text-fill-color: var(--color-gold-soft) !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  letter-spacing: 0.02em !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: clamp(0.9rem, 1.25vw, 1.05rem) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
  gap: 0.78rem !important;
  overflow: hidden !important;
  border-radius: 1.12rem !important;
  border: 1px solid rgba(228, 180, 93, 0.18) !important;
  background: rgba(255, 244, 216, 0.06) !important;
  box-shadow: inset 0 1px 0 rgba(255, 246, 225, 0.06) !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label {
  max-width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  justify-items: center !important;
  gap: 0.18rem !important;
  text-align: center !important;
  margin: 0 !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label strong,
body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label span {
  display: block !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  text-align: center !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label strong {
  color: var(--color-text) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.16rem) !important;
  line-height: 1.16 !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label span {
  color: var(--color-text-muted) !important;
  font-size: 0.94rem !important;
  line-height: 1.25 !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option .checkout-monthly-option-label small.pack-value-line,
body[data-page="checkout"] .checkout-monthly-option-label small.pack-value-line {
  display: none !important;
}

body[data-page="weekly-plans"] .weekly-checkout-option stripe-buy-button,
body[data-page="weekly-plans"] .single-lesson-buy-button stripe-buy-button {
  justify-self: center !important;
  width: var(--lm-pay-button-width) !important;
  max-width: 300px !important;
  height: var(--lm-pay-button-height) !important;
  min-height: var(--lm-pay-button-height) !important;
  margin: 0 auto !important;
}

body[data-page="weekly-plans"] .weekly-plan-strip {
  max-width: 620px !important;
  margin-inline: auto !important;
  justify-content: center !important;
}

@media (max-width: 900px) {
  body[data-page="weekly-plans"] .weekly-pack-checkout-grid {
    grid-template-columns: minmax(0, 460px) !important;
  }
}

@media (max-width: 520px) {
  body[data-page="weekly-plans"] .weekly-pack-section {
    padding: 0.88rem !important;
    border-radius: 1.18rem !important;
  }

  body[data-page="weekly-plans"] .weekly-checkout-option {
    padding: 0.82rem !important;
  }
}


/* ============================================================
   CAMPAIGN LANDING PAGES — construction, start, still-not-speaking
   Added 20260615-landing-pages-v1. Uses existing luxury brown/gold system.
   ============================================================ */

body[data-page="landing"] {
  background: var(--color-bg);
}

.landing-hero {
  position: relative;
  min-height: 82dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--space-24) + 60px);
  padding-bottom: var(--space-16);
  background:
    radial-gradient(circle at 18% 26%, rgba(214,169,77,0.12), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(122,64,24,0.34), transparent 36%),
    linear-gradient(160deg, #140701 0%, #2d0f02 48%, #4a1b05 100%);
}

.landing-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,213,154,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,213,154,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}

.landing-copy {
  max-width: 780px;
}

.landing-heading {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 2.0rem + 4.2vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #faf7f2;
  margin: var(--space-4) 0 var(--space-6);
  text-wrap: balance;
}

.landing-sub {
  font-size: clamp(1.08rem, 0.96rem + 0.48vw, 1.38rem);
  line-height: 1.65;
  color: rgba(240,213,154,0.78);
  max-width: 680px;
  margin-bottom: var(--space-8);
}

.landing-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.landing-side-card,
.landing-copy-card,
.landing-note-card,
.landing-testimonial,
.landing-stat-card,
.landing-mini-grid article {
  border: 1px solid color-mix(in srgb, var(--color-border) 76%, var(--color-primary));
  background:
    radial-gradient(circle at 20% 0%, rgba(214,169,77,0.15), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--color-surface-2) 86%, #4a1b05), var(--color-surface));
  box-shadow: var(--shadow-md);
}

.landing-side-card {
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
}

.landing-card-kicker {
  display: inline-flex;
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-4);
}

.landing-side-card h2,
.landing-copy-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.25rem + 1.6vw, 3rem);
  line-height: 1.06;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  text-wrap: balance;
}

.landing-check-list,
.landing-plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.landing-check-list li,
.landing-plain-list li {
  position: relative;
  padding-left: var(--space-7);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.landing-check-list li::before,
.landing-plain-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 900;
}

.landing-section {
  padding-block: clamp(var(--space-14), 7vw, var(--space-24));
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.landing-stat-grid,
.landing-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.landing-stat-card,
.landing-mini-grid article {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  min-width: 0;
}

.landing-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.7rem + 2vw, 4rem);
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.landing-stat-card span,
.landing-mini-grid p,
.landing-copy-card p,
.landing-note-card p,
.landing-testimonial p {
  color: var(--color-text-muted);
  line-height: 1.68;
}

.landing-mini-grid h3,
.landing-note-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.5vw, 1.65rem);
  line-height: 1.16;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.landing-fineprint {
  max-width: 860px;
  margin: var(--space-6) auto 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.landing-section--split {
  background: linear-gradient(180deg, var(--color-bg), var(--color-surface));
}

.landing-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-6);
  align-items: stretch;
}

.landing-copy-card,
.landing-note-card {
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
}

.landing-proof {
  background:
    radial-gradient(circle at 50% 0%, rgba(214,169,77,0.10), transparent 35%),
    var(--color-bg);
}

.landing-testimonial {
  max-width: 920px;
  margin-inline: auto;
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-7), 5vw, var(--space-12));
  text-align: center;
}

.landing-stars {
  color: var(--color-primary);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-5);
}

.landing-testimonial p {
  font-size: clamp(1.16rem, 1rem + 0.65vw, 1.55rem);
  color: var(--color-text);
  font-weight: 650;
}

.landing-testimonial footer {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.landing-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: var(--space-6);
  align-items: stretch;
  max-width: 1040px;
}

.landing-offer-grid--solo {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.landing-offer-card {
  max-width: none;
}

.landing-buy-button {
  margin-top: var(--space-6);
}

body[data-page="landing"] .starter-sprint-buy-button stripe-buy-button {
  width: min(100%, 340px) !important;
}

.landing-note-card {
  align-self: center;
}

.landing-note-card .btn {
  margin-top: var(--space-5);
}

.landing-faq-lite {
  padding-top: 0;
}

@media (max-width: 980px) {
  .landing-hero-inner,
  .landing-split,
  .landing-offer-grid {
    grid-template-columns: 1fr;
  }
  .landing-side-card {
    max-width: 720px;
  }
  .landing-stat-grid,
  .landing-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .landing-hero {
    min-height: auto;
    padding-top: calc(var(--space-20) + 76px);
  }
  .landing-heading {
    font-size: clamp(2.45rem, 14vw, 4.3rem);
  }
  .landing-ctas .btn {
    width: 100%;
  }
  .landing-side-card,
  .landing-copy-card,
  .landing-note-card,
  .landing-testimonial,
  .landing-stat-card,
  .landing-mini-grid article {
    padding: var(--space-5);
  }
}


/* ============================================================
   LANDING ROUTE + LIGHT MODE CONTRAST REPAIR — 20260615-v2
   Purpose: keep new campaign pages premium and readable in light/dark mode,
   expose all landing paths, and prevent checkmark/text overlap.
   ============================================================ */

/* Hero route buttons: all audience paths must look intentional, not like pale links. */
.hero-ctas .btn,
.landing-ctas .btn,
.landing-note-card .btn {
  min-height: 3.35rem !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
}

html[data-theme='light'] .btn-outline,
html[data-theme='light'] .btn-ghost {
  background: linear-gradient(135deg, #3d1a05 0%, #5a2d0c 62%, #7a4018 100%) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  border-color: rgba(143, 80, 24, 0.78) !important;
  box-shadow: 0 14px 34px rgba(61, 26, 5, 0.20) !important;
}

html[data-theme='light'] .btn-outline:hover,
html[data-theme='light'] .btn-ghost:hover {
  background: linear-gradient(135deg, #5a2d0c 0%, #8f5018 60%, #b87125 100%) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
}

html[data-theme='light'] .hero-ctas .btn-primary,
html[data-theme='light'] .landing-ctas .btn-primary,
html[data-theme='light'] .landing-note-card .btn-primary {
  background: linear-gradient(135deg, #6f350d 0%, #b87125 50%, #d6a94d 100%) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  border-color: rgba(240, 213, 154, 0.55) !important;
}

/* Landing page hero sections are dark/premium panels even when the site is in light mode. */
body[data-page='landing'] .landing-hero {
  color: #fff8ec !important;
  background:
    radial-gradient(circle at 18% 26%, rgba(240, 213, 154, 0.16), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(122, 64, 24, 0.40), transparent 36%),
    linear-gradient(160deg, #120803 0%, #2a0f03 50%, #4a1b05 100%) !important;
}

body[data-page='landing'] .landing-hero :is(.section-label,.landing-card-kicker) {
  color: #f0d59a !important;
  -webkit-text-fill-color: #f0d59a !important;
}

body[data-page='landing'] .landing-hero :is(.landing-heading,h1,h2,h3) {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

body[data-page='landing'] .landing-hero :is(.landing-sub,.cta-microcopy,p,li,span):not(.btn):not(.btn *) {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
}

body[data-page='landing'] .landing-hero .landing-side-card {
  background:
    radial-gradient(circle at 15% 0%, rgba(240, 213, 154, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(18, 8, 3, 0.96), rgba(42, 18, 5, 0.98) 70%, rgba(61, 26, 5, 0.98)) !important;
  border-color: rgba(240, 213, 154, 0.28) !important;
  box-shadow: 0 24px 64px rgba(18, 8, 3, 0.36), inset 0 1px 0 rgba(255, 248, 236, 0.08) !important;
  max-width: 100% !important;
}

body[data-page='landing'] .landing-hero .landing-side-card h2 {
  font-size: clamp(1.65rem, 1.12rem + 1.55vw, 2.65rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}

/* Stop checkmarks from colliding with words on narrow cards/mobile. */
body[data-page='landing'] :is(.landing-check-list,.landing-plain-list) {
  gap: 0.85rem !important;
}

body[data-page='landing'] :is(.landing-check-list li,.landing-plain-list li) {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.7rem !important;
  padding-left: 0 !important;
  max-width: none !important;
}

body[data-page='landing'] :is(.landing-check-list li::before,.landing-plain-list li::before) {
  position: static !important;
  flex: 0 0 1.05rem !important;
  width: 1.05rem !important;
  line-height: 1.55 !important;
  transform: none !important;
  margin: 0 !important;
}

/* Make the two extra SEO landing pages findable from the homepage without adding cheap colors. */
.hero-ctas {
  align-items: center !important;
}

.hero-ctas .btn {
  white-space: normal !important;
  text-align: center !important;
}

@media (min-width: 900px) {
  .hero-ctas {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  body[data-page='landing'] .landing-hero-inner {
    grid-template-columns: 1fr !important;
  }
  body[data-page='landing'] .landing-side-card {
    width: min(100%, 720px) !important;
  }
}

@media (max-width: 620px) {
  body[data-page='landing'] .landing-hero {
    padding-top: calc(var(--space-20) + 68px) !important;
  }
  body[data-page='landing'] .landing-heading {
    font-size: clamp(2.35rem, 12vw, 4.05rem) !important;
    line-height: 1.02 !important;
  }
  body[data-page='landing'] .landing-side-card h2 {
    font-size: clamp(1.55rem, 9vw, 2.35rem) !important;
  }
  .hero-ctas .btn,
  .landing-ctas .btn {
    width: 100% !important;
  }
}


/* ============================================================
   LANDING HERO TRUE CONTRAST LOCK — 20260615-v3
   Fix: construction/start/still-not-speaking heroes must stay readable in light mode.
   No palette change: cream text on dark bronze panels, gold labels, premium CTAs.
   ============================================================ */
html body[data-page='landing'] section.landing-hero,
html[data-theme='light'] body[data-page='landing'] section.landing-hero,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero {
  background:
    radial-gradient(circle at 18% 26%, rgba(240, 213, 154, 0.18), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(122, 64, 24, 0.46), transparent 36%),
    linear-gradient(160deg, #100602 0%, #281003 50%, #4b1b05 100%) !important;
  color: #fff8ec !important;
  isolation: isolate !important;
}

html body[data-page='landing'] section.landing-hero .landing-bg-pattern {
  opacity: 0.55 !important;
  mix-blend-mode: normal !important;
}

html body[data-page='landing'] section.landing-hero .landing-heading,
html body[data-page='landing'] section.landing-hero .landing-side-card h2,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .landing-heading,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .landing-side-card h2,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .landing-heading,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .landing-side-card h2 {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  text-shadow: 0 3px 18px rgba(0,0,0,0.58) !important;
}

html body[data-page='landing'] section.landing-hero .section-label,
html body[data-page='landing'] section.landing-hero .landing-card-kicker,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .section-label,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .landing-card-kicker,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .section-label,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .landing-card-kicker {
  color: #f2c76e !important;
  -webkit-text-fill-color: #f2c76e !important;
  background: none !important;
  opacity: 1 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.34) !important;
}

html body[data-page='landing'] section.landing-hero .landing-sub,
html body[data-page='landing'] section.landing-hero .cta-microcopy,
html body[data-page='landing'] section.landing-hero .landing-check-list li,
html body[data-page='landing'] section.landing-hero .landing-plain-list li,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .landing-sub,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .cta-microcopy,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .landing-check-list li,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .landing-plain-list li,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .landing-sub,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .cta-microcopy,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .landing-check-list li,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .landing-plain-list li {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  background: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  text-shadow: none !important;
}

html body[data-page='landing'] section.landing-hero .landing-side-card,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .landing-side-card,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .landing-side-card {
  background:
    radial-gradient(circle at 15% 0%, rgba(240, 213, 154, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(17, 8, 3, 0.98), rgba(38, 17, 5, 0.98) 68%, rgba(58, 25, 6, 0.98)) !important;
  color: #fff8ec !important;
  border-color: rgba(240, 213, 154, 0.34) !important;
  box-shadow: 0 24px 64px rgba(18, 8, 3, 0.44), inset 0 1px 0 rgba(255, 248, 236, 0.09) !important;
}

html body[data-page='landing'] section.landing-hero .landing-check-list li::before,
html body[data-page='landing'] section.landing-hero .landing-plain-list li::before {
  color: #f2c76e !important;
  -webkit-text-fill-color: #f2c76e !important;
  display: inline-block !important;
  flex: 0 0 1.15rem !important;
  width: 1.15rem !important;
  min-width: 1.15rem !important;
  text-align: left !important;
  line-height: 1.55 !important;
}

html body[data-page='landing'] section.landing-hero .btn-primary,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .btn-primary,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .btn-primary {
  background: linear-gradient(135deg, #f5dea1 0%, #dca43a 52%, #a75d16 100%) !important;
  color: #160902 !important;
  -webkit-text-fill-color: #160902 !important;
  border-color: rgba(255, 240, 191, 0.58) !important;
  box-shadow: 0 16px 34px rgba(17, 7, 2, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

html body[data-page='landing'] section.landing-hero .btn-outline,
html[data-theme='light'] body[data-page='landing'] section.landing-hero .btn-outline,
html[data-theme='dark'] body[data-page='landing'] section.landing-hero .btn-outline {
  background: rgba(17, 7, 2, 0.48) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  border-color: rgba(240, 213, 154, 0.55) !important;
  box-shadow: 0 14px 30px rgba(17, 7, 2, 0.22) !important;
}


/* ============================================================
   LANDING HERO LEGIBILITY HARD LOCK — 20260615-v4
   Purpose: keep campaign hero text readable in both light and dark modes.
   Uses the existing premium cream/gold/brown palette.
   ============================================================ */
html[data-theme="light"] body[data-page="landing"] main section.landing-hero.landing-hero,
html[data-theme="dark"] body[data-page="landing"] main section.landing-hero.landing-hero,
body[data-page="landing"] main section.landing-hero.landing-hero {
  color: #fff8ec !important;
}

html[data-theme="light"] body[data-page="landing"] main section.landing-hero.landing-hero h1.landing-heading,
html[data-theme="light"] body[data-page="landing"] main section.landing-hero.landing-hero .landing-side-card h2,
html[data-theme="dark"] body[data-page="landing"] main section.landing-hero.landing-hero h1.landing-heading,
html[data-theme="dark"] body[data-page="landing"] main section.landing-hero.landing-hero .landing-side-card h2,
body[data-page="landing"] main section.landing-hero.landing-hero h1.landing-heading,
body[data-page="landing"] main section.landing-hero.landing-hero .landing-side-card h2 {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  text-shadow: 0 4px 22px rgba(0,0,0,0.62) !important;
}

html[data-theme="light"] body[data-page="landing"] main section.landing-hero.landing-hero .landing-sub,
html[data-theme="light"] body[data-page="landing"] main section.landing-hero.landing-hero .cta-microcopy,
html[data-theme="light"] body[data-page="landing"] main section.landing-hero.landing-hero .landing-check-list li,
html[data-theme="light"] body[data-page="landing"] main section.landing-hero.landing-hero .landing-plain-list li,
html[data-theme="dark"] body[data-page="landing"] main section.landing-hero.landing-hero .landing-sub,
html[data-theme="dark"] body[data-page="landing"] main section.landing-hero.landing-hero .cta-microcopy,
html[data-theme="dark"] body[data-page="landing"] main section.landing-hero.landing-hero .landing-check-list li,
html[data-theme="dark"] body[data-page="landing"] main section.landing-hero.landing-hero .landing-plain-list li,
body[data-page="landing"] main section.landing-hero.landing-hero .landing-sub,
body[data-page="landing"] main section.landing-hero.landing-hero .cta-microcopy,
body[data-page="landing"] main section.landing-hero.landing-hero .landing-check-list li,
body[data-page="landing"] main section.landing-hero.landing-hero .landing-plain-list li {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  opacity: 1 !important;
}

html[data-theme="light"] body[data-page="landing"] main section.landing-hero.landing-hero :is(.section-label,.landing-card-kicker),
html[data-theme="dark"] body[data-page="landing"] main section.landing-hero.landing-hero :is(.section-label,.landing-card-kicker),
body[data-page="landing"] main section.landing-hero.landing-hero :is(.section-label,.landing-card-kicker) {
  color: #f2c76e !important;
  -webkit-text-fill-color: #f2c76e !important;
  opacity: 1 !important;
}

body[data-page="landing"] main section.landing-hero.landing-hero .landing-check-list li,
body[data-page="landing"] main section.landing-hero.landing-hero .landing-plain-list li {
  gap: 1rem !important;
}

body[data-page="landing"] main section.landing-hero.landing-hero .landing-check-list li::before,
body[data-page="landing"] main section.landing-hero.landing-hero .landing-plain-list li::before {
  color: #f2c76e !important;
  -webkit-text-fill-color: #f2c76e !important;
  flex: 0 0 1.45rem !important;
  width: 1.45rem !important;
  min-width: 1.45rem !important;
  text-align: center !important;
}


/* FINAL LANDING READABILITY REPAIR — no dark-on-dark text, no overlapping checkmarks. */
html body[data-page='landing'] .landing-hero .landing-heading,
html body[data-page='landing'] .landing-hero .landing-side-card h2,
html[data-theme='light'] body[data-page='landing'] .landing-hero .landing-heading,
html[data-theme='light'] body[data-page='landing'] .landing-hero .landing-side-card h2,
html[data-theme='dark'] body[data-page='landing'] .landing-hero .landing-heading,
html[data-theme='dark'] body[data-page='landing'] .landing-hero .landing-side-card h2 {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  text-shadow: 0 4px 24px rgba(0,0,0,.72) !important;
}
html body[data-page='landing'] .landing-hero .landing-side-card {
  background: radial-gradient(circle at 15% 0%, rgba(240,213,154,.13), transparent 18rem), linear-gradient(145deg, rgba(17,8,3,.99), rgba(38,17,5,.99) 68%, rgba(58,25,6,.99)) !important;
  color: #fff8ec !important;
  border-color: rgba(240,213,154,.36) !important;
}
html body[data-page='landing'] .landing-hero :is(.landing-check-list li,.landing-plain-list li) {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  display: block !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
html body[data-page='landing'] .landing-hero :is(.landing-check-list li::before,.landing-plain-list li::before) {
  content: none !important;
  display: none !important;
}
html body[data-page='landing'] .landing-hero :is(.section-label,.landing-card-kicker) {
  color: #f2c76e !important;
  -webkit-text-fill-color: #f2c76e !important;
  opacity: 1 !important;
}
html body[data-page='landing'] .landing-offer-card .pricing-featured-badge {
  background: linear-gradient(135deg, #7a350b 0%, #b66b20 55%, #d89b35 100%) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.45) !important;
  border-color: rgba(255,248,236,.28) !important;
  opacity: 1 !important;
}
html body[data-page='landing'] .landing-offer-card :is(.pricing-tier,.pricing-name) {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  opacity: 1 !important;
}
html body[data-page='landing'] .landing-offer-card :is(.pricing-desc,.pricing-features li) {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
}


/* FINAL LANDING READABILITY REPAIR V2 — remove side-card checks and lock offer-card labels. */
body[data-page='landing'] .landing-hero .landing-no-check-list {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.05rem !important;
  margin: 1.4rem 0 0 !important;
  padding: 0 !important;
}
body[data-page='landing'] .landing-hero .landing-no-check-list li {
  color: #f6dfb0 !important;
  -webkit-text-fill-color: #f6dfb0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}
body[data-page='landing'] .landing-hero .landing-no-check-list li::before,
body[data-page='landing'] .landing-hero .landing-check-list li::before,
body[data-page='landing'] .landing-hero .landing-plain-list li::before {
  content: '' !important;
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  flex: 0 0 0 !important;
}
html body[data-page='landing'] .landing-offer-card .pricing-featured-badge,
html[data-theme='light'] body[data-page='landing'] .landing-offer-card .pricing-featured-badge,
html[data-theme='dark'] body[data-page='landing'] .landing-offer-card .pricing-featured-badge {
  background: linear-gradient(135deg, #7a350b 0%, #b66b20 55%, #d89b35 100%) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.45) !important;
  border-color: rgba(255,248,236,.28) !important;
  opacity: 1 !important;
}
html body[data-page='landing'] .landing-offer-card .pricing-tier,
html body[data-page='landing'] .landing-offer-card .pricing-name,
html[data-theme='light'] body[data-page='landing'] .landing-offer-card .pricing-tier,
html[data-theme='light'] body[data-page='landing'] .landing-offer-card .pricing-name,
html[data-theme='dark'] body[data-page='landing'] .landing-offer-card .pricing-tier,
html[data-theme='dark'] body[data-page='landing'] .landing-offer-card .pricing-name {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  opacity: 1 !important;
}

/* ============================================================
   WORD-SPLIT + LIGHT-MODE PILL CONTRAST REPAIR — 20260615-v9
   Purpose: stop premium cards from splitting single words into chopped lines,
   and make light-mode system pills read as intentional brown/gold UI.
   ============================================================ */

/* Never chop words in headings, pills, buttons, or card labels. Let cards reflow instead. */
html body :is(
  h1,h2,h3,h4,h5,h6,
  .section-heading,.landing-heading,.pricing-name,.pricing-price,.teacher-name,.coach-name,
  .teacher-system-strip span,.teacher-assignment-list li,.teacher-tags li,
  .landing-mini-grid h3,.landing-stat-card strong,.landing-card-kicker,
  .btn,.pricing-featured-badge,.bundle-title,.bundle-price-large,.bundle-card-title
) {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: balance;
}

/* Body copy can wrap, but should not split normal words unless a long URL/code forces it. */
html body :is(.landing-mini-grid p,.landing-copy-card p,.teacher-assignment-panel p,.section-sub,.pricing-desc,.teacher-bio) {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

/* Construction/start/still landing solution cards: use wider cards and smaller clean headings. */
body[data-page='landing'] .landing-section--split .landing-split {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 1080px !important;
  margin-inline: auto !important;
  gap: clamp(1.25rem, 3vw, 2rem) !important;
}

body[data-page='landing'] .landing-section--split .landing-copy-card {
  max-width: 840px !important;
  margin-inline: auto !important;
  text-align: left !important;
}

body[data-page='landing'] .landing-section--split .landing-mini-grid {
  width: 100% !important;
  grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
  gap: clamp(1rem, 2vw, 1.35rem) !important;
  align-items: stretch !important;
}

body[data-page='landing'] .landing-mini-grid article {
  min-width: 0 !important;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) !important;
}

body[data-page='landing'] .landing-mini-grid h3 {
  font-family: var(--font-body) !important;
  font-size: clamp(1.05rem, 0.92rem + 0.45vw, 1.32rem) !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: #1e1208 !important;
  -webkit-text-fill-color: currentColor !important;
}

body[data-page='landing'] .landing-mini-grid p {
  font-size: clamp(0.98rem, 0.93rem + 0.2vw, 1.08rem) !important;
  line-height: 1.6 !important;
}

html[data-theme='dark'] body[data-page='landing'] .landing-mini-grid h3 {
  color: #fff8ec !important;
}

html[data-theme='dark'] body[data-page='landing'] .landing-mini-grid p {
  color: #f6dfb0 !important;
}

/* Homepage system pills: stronger light-mode contrast inside existing palette. */
html:not([data-theme='dark']) .teacher-system-strip,
html[data-theme='light'] .teacher-system-strip {
  background: linear-gradient(135deg, rgba(94, 43, 10, 0.08), rgba(214, 169, 77, 0.12)) !important;
  border-color: rgba(94, 43, 10, 0.24) !important;
}

html:not([data-theme='dark']) .teacher-system-strip span,
html[data-theme='light'] .teacher-system-strip span {
  background: linear-gradient(135deg, #3d1a05 0%, #5a2d0c 62%, #7a4018 100%) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  border-color: rgba(214,169,77,0.58) !important;
  box-shadow: 0 10px 24px rgba(61,26,5,0.16), inset 0 1px 0 rgba(255,248,236,0.10) !important;
}

html[data-theme='dark'] .teacher-system-strip span {
  background: linear-gradient(135deg, rgba(61,26,5,0.92), rgba(122,64,24,0.82)) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  border-color: rgba(240,213,154,0.34) !important;
}

/* Teacher assignment chips: no chopped words; full-width card flow instead of tiny boxes. */
.teacher-assignment-panel {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 1040px !important;
}
.teacher-assignment-list {
  grid-template-columns: repeat(4, minmax(150px, 1fr)) !important;
  width: 100% !important;
}
.teacher-assignment-list li {
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 4.1rem !important;
  padding: 0.85rem 1rem !important;
}

html:not([data-theme='dark']) .teacher-assignment-list li,
html[data-theme='light'] .teacher-assignment-list li {
  background: linear-gradient(135deg, rgba(61,26,5,0.10), rgba(214,169,77,0.18)) !important;
  color: #2b1407 !important;
  -webkit-text-fill-color: currentColor !important;
  border-color: rgba(94,43,10,0.30) !important;
}

/* Responsive: stack before cards get narrow enough to split words. */
@media (max-width: 900px) {
  body[data-page='landing'] .landing-section--split .landing-mini-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
    margin-inline: auto !important;
  }
  .teacher-assignment-list {
    grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .teacher-assignment-list {
    grid-template-columns: 1fr !important;
  }
  .teacher-system-strip {
    padding: 0.85rem !important;
  }
  .teacher-system-strip span {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}


/* ============================================================
   DARK-ONLY LANDING PAGE PALETTE LOCK — 20260617-darkonly-v1
   Campaign landing pages now stay in the core dark Language Monk look.
   No light-mode audit path, no dark-on-dark text, no pale cards.
   ============================================================ */
html body[data-page='landing'],
html[data-theme='light'] body[data-page='landing'],
html[data-theme='dark'] body[data-page='landing'] {
  background: #120a03 !important;
  color: #f0e4d0 !important;
}

html body[data-page='landing'] .nav,
html[data-theme='light'] body[data-page='landing'] .nav,
html[data-theme='dark'] body[data-page='landing'] .nav {
  background: rgba(18, 10, 3, 0.96) !important;
  border-bottom: 1px solid rgba(240, 213, 154, 0.14) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,0.32) !important;
}

html body[data-page='landing'] .nav :is(a,button),
html body[data-page='landing'] .nav-links a,
html body[data-page='landing'] .nav-mobile a {
  color: #d6a94d !important;
  -webkit-text-fill-color: #d6a94d !important;
}

html body[data-page='landing'] .nav-logo-img {
  box-shadow: 0 12px 30px rgba(0,0,0,0.36) !important;
}

html body[data-page='landing'] main,
html body[data-page='landing'] .landing-section,
html body[data-page='landing'] .landing-proof,
html body[data-page='landing'] .landing-faq-lite,
html body[data-page='landing'] .landing-section--split {
  background:
    radial-gradient(circle at 18% 0%, rgba(214,169,77,0.055), transparent 28rem),
    linear-gradient(180deg, #120a03 0%, #170b03 48%, #0f0702 100%) !important;
  color: #f0e4d0 !important;
}

html body[data-page='landing'] .landing-hero,
html[data-theme='light'] body[data-page='landing'] .landing-hero,
html[data-theme='dark'] body[data-page='landing'] .landing-hero {
  background:
    radial-gradient(circle at 18% 26%, rgba(214,169,77,0.13), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(122,64,24,0.24), transparent 36%),
    linear-gradient(160deg, #100602 0%, #1a0a02 48%, #2b1004 100%) !important;
  color: #fff8ec !important;
}

html body[data-page='landing'] :is(.landing-heading,.section-heading,.landing-side-card h2,.landing-copy-card h2,.landing-note-card h3,.landing-testimonial p,.landing-mini-grid h3),
html[data-theme='light'] body[data-page='landing'] :is(.landing-heading,.section-heading,.landing-side-card h2,.landing-copy-card h2,.landing-note-card h3,.landing-testimonial p,.landing-mini-grid h3),
html[data-theme='dark'] body[data-page='landing'] :is(.landing-heading,.section-heading,.landing-side-card h2,.landing-copy-card h2,.landing-note-card h3,.landing-testimonial p,.landing-mini-grid h3) {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  background: none !important;
  background-image: none !important;
  opacity: 1 !important;
  text-shadow: 0 3px 22px rgba(0,0,0,0.58) !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

html body[data-page='landing'] :is(.landing-sub,.cta-microcopy,.landing-fineprint,.landing-stat-card span,.landing-mini-grid p,.landing-copy-card p,.landing-note-card p,.landing-testimonial footer,.landing-check-list li,.landing-plain-list li,.landing-no-check-list li,.pricing-desc,.pricing-features li),
html[data-theme='light'] body[data-page='landing'] :is(.landing-sub,.cta-microcopy,.landing-fineprint,.landing-stat-card span,.landing-mini-grid p,.landing-copy-card p,.landing-note-card p,.landing-testimonial footer,.landing-check-list li,.landing-plain-list li,.landing-no-check-list li,.pricing-desc,.pricing-features li),
html[data-theme='dark'] body[data-page='landing'] :is(.landing-sub,.cta-microcopy,.landing-fineprint,.landing-stat-card span,.landing-mini-grid p,.landing-copy-card p,.landing-note-card p,.landing-testimonial footer,.landing-check-list li,.landing-plain-list li,.landing-no-check-list li,.pricing-desc,.pricing-features li) {
  color: #f0e4d0 !important;
  -webkit-text-fill-color: #f0e4d0 !important;
  background: none !important;
  opacity: 1 !important;
}

html body[data-page='landing'] :is(.section-label,.landing-card-kicker,.landing-stars),
html[data-theme='light'] body[data-page='landing'] :is(.section-label,.landing-card-kicker,.landing-stars),
html[data-theme='dark'] body[data-page='landing'] :is(.section-label,.landing-card-kicker,.landing-stars) {
  color: #d6a94d !important;
  -webkit-text-fill-color: #d6a94d !important;
  background: none !important;
  opacity: 1 !important;
}

html body[data-page='landing'] :is(.landing-side-card,.landing-copy-card,.landing-note-card,.landing-testimonial,.landing-stat-card,.landing-mini-grid article,.faq-item,.landing-offer-card),
html[data-theme='light'] body[data-page='landing'] :is(.landing-side-card,.landing-copy-card,.landing-note-card,.landing-testimonial,.landing-stat-card,.landing-mini-grid article,.faq-item,.landing-offer-card),
html[data-theme='dark'] body[data-page='landing'] :is(.landing-side-card,.landing-copy-card,.landing-note-card,.landing-testimonial,.landing-stat-card,.landing-mini-grid article,.faq-item,.landing-offer-card) {
  background:
    radial-gradient(circle at 20% 0%, rgba(214,169,77,0.10), transparent 17rem),
    linear-gradient(145deg, rgba(26,15,5,0.99), rgba(18,10,3,0.99) 64%, rgba(45,20,6,0.99)) !important;
  color: #f0e4d0 !important;
  border-color: rgba(214,169,77,0.24) !important;
  box-shadow: 0 22px 58px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,248,236,0.06) !important;
}

html body[data-page='landing'] .landing-stat-card strong,
html[data-theme='light'] body[data-page='landing'] .landing-stat-card strong,
html[data-theme='dark'] body[data-page='landing'] .landing-stat-card strong {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  text-shadow: 0 4px 22px rgba(0,0,0,0.56) !important;
}

html body[data-page='landing'] .landing-stat-card::before,
html body[data-page='landing'] .landing-mini-grid article::before {
  content: '';
  display: block;
  width: 2.75rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d6a94d, rgba(214,169,77,0.12));
  margin-bottom: 1.1rem;
}

html body[data-page='landing'] .landing-mini-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
}

html body[data-page='landing'] .landing-mini-grid article {
  min-width: 0 !important;
  overflow: hidden !important;
}

html body[data-page='landing'] .landing-hero :is(.landing-check-list li::before,.landing-plain-list li::before,.landing-no-check-list li::before) {
  content: none !important;
  display: none !important;
}

html body[data-page='landing'] :is(.landing-check-list li,.landing-plain-list li,.landing-no-check-list li) {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

html body[data-page='landing'] :is(.btn-primary,.landing-ctas .btn-primary,.landing-note-card .btn-primary),
html[data-theme='light'] body[data-page='landing'] :is(.btn-primary,.landing-ctas .btn-primary,.landing-note-card .btn-primary),
html[data-theme='dark'] body[data-page='landing'] :is(.btn-primary,.landing-ctas .btn-primary,.landing-note-card .btn-primary) {
  background: linear-gradient(135deg, #f0d59a 0%, #d6a94d 52%, #b87125 100%) !important;
  color: #160902 !important;
  -webkit-text-fill-color: #160902 !important;
  border-color: rgba(240,213,154,0.58) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,248,236,0.22) !important;
}

html body[data-page='landing'] :is(.btn-outline,.btn-ghost),
html[data-theme='light'] body[data-page='landing'] :is(.btn-outline,.btn-ghost),
html[data-theme='dark'] body[data-page='landing'] :is(.btn-outline,.btn-ghost) {
  background: rgba(18,10,3,0.78) !important;
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
  border-color: rgba(240,213,154,0.44) !important;
}

html body[data-page='landing'] .pricing-featured-badge,
html[data-theme='light'] body[data-page='landing'] .pricing-featured-badge,
html[data-theme='dark'] body[data-page='landing'] .pricing-featured-badge {
  background: linear-gradient(135deg, #f0d59a 0%, #d6a94d 52%, #b87125 100%) !important;
  color: #160902 !important;
  -webkit-text-fill-color: #160902 !important;
  border-color: rgba(240,213,154,0.42) !important;
  text-shadow: none !important;
}

html body[data-page='landing'] .landing-offer-card :is(.pricing-tier,.pricing-name,.pricing-price),
html[data-theme='light'] body[data-page='landing'] .landing-offer-card :is(.pricing-tier,.pricing-name,.pricing-price),
html[data-theme='dark'] body[data-page='landing'] .landing-offer-card :is(.pricing-tier,.pricing-name,.pricing-price) {
  color: #fff8ec !important;
  -webkit-text-fill-color: #fff8ec !important;
}

@media (max-width: 980px) {
  html body[data-page='landing'] .landing-mini-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Cloudflare preview safety: live checkout widgets are intentionally disabled. */
.lm-preview-checkout-disabled {
  display: block;
  width: 100%;
  margin: 0.75rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(245, 179, 72, 0.45);
  border-radius: 14px;
  background: rgba(24, 13, 7, 0.72);
  color: #f8e9d1;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}
