/* ============ THE MINDFUL CRNA — DRAFT SITE STYLES ============
   Plum Lavender + Dusty Blue palette (Amanda's pick)
   This is a draft preview, not the production site.
   ============================================================ */

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

:root {
  --plum: #7B5A8F;
  --plum-dark: #5A3F73;
  --plum-light: #EDE6F2;
  --plum-pale: #F8F6FA;
  --blue: #6B8CB8;
  --blue-light: #E2EAF5;
  --blue-bg: #F2F6FB;
  --text-dark: #1F2937;
  --text-mid: #4B5563;
  --text-light: #6B7280;
  --cream: #FCFBFD;
  /* Warm beige accent — for buttons ONLY (never page backgrounds) */
  --beige: #E8D9B8;
  --beige-dark: #C9B591;
  --lavender-tint: #F5F0F9;
  --blue-tint: #EEF3F9;
  --soft-white: #FBFAFC;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --gold: #C9A227;
  --gold-bg: #FBF6E2;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 18px;
}

.sans { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

/* ============ NAV BAR (shared across all pages) ============ */
.topbar {
  background: var(--plum-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.brand { cursor: pointer; display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 48px; height: 48px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-items {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.nav-link {
  display: block;
  padding: 9px 18px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  background: transparent;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.nav-link:hover {
  color: var(--beige);
  background: rgba(232,217,184,0.08);
}
.nav-link.active {
  color: var(--beige);
  border-color: var(--beige);
}
.nav-link.cta {
  background: var(--beige);
  color: var(--plum-dark);
  border-color: var(--beige);
  font-weight: 700;
  margin-left: 6px;
}
.nav-link.cta:hover {
  background: var(--beige-dark);
  border-color: var(--beige-dark);
  color: var(--plum-dark);
}

/* ============ DRAFT BANNER ============ */
.draft-banner {
  background: var(--plum-light);
  color: var(--plum-dark);
  padding: 12px 40px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  border-bottom: 1px solid var(--plum);
}
.draft-banner strong { font-weight: 600; }

/* ============ MAIN CONTAINERS ============ */
.main {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.main-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

/* ============ TYPOGRAPHY ============ */
h1 {
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 1.15;
  color: var(--plum-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
h2 {
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--plum-dark);
  margin-top: 56px;
  margin-bottom: 22px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--plum-dark);
  margin-bottom: 14px;
  font-weight: 700;
}
p {
  margin-bottom: 24px;
  color: var(--text-dark);
}
p.lead {
  font-size: 21px;
  line-height: 1.6;
  color: var(--text-dark);
}
em { font-style: italic; }
strong { font-weight: 700; color: var(--plum-dark); }

/* ============ HERO COMPONENTS ============ */
.hero-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 21px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.5;
  max-width: 600px;
}
.hero-center { text-align: center; }
.hero-center .hero-subtitle { margin-left: auto; margin-right: auto; }

/* ============ HERO WITH IMAGE (Home page) ============ */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-split .hero-text h1 {
  font-size: 48px;
  margin-bottom: 24px;
}
.hero-image {
  border-radius: 14px;
  overflow: hidden;
  background: var(--plum-light);
  aspect-ratio: 4/5;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ PULLQUOTE ============ */
.pullquote {
  border-left: 4px solid var(--plum);
  padding: 20px 0 20px 28px;
  margin: 36px 0;
  font-size: 24px;
  line-height: 1.5;
  color: var(--plum-dark);
  font-style: italic;
}

/* ============ SCENE / CALLOUT BOX ============ */
.scene {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 40px;
  margin: 40px 0;
  border-left: 4px solid var(--blue);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.scene-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.scene p { margin-bottom: 18px; font-size: 17px; line-height: 1.7; }
.scene p:last-child { margin-bottom: 0; }

/* ============ AS FEATURED ON STRIP ============ */
.featured-on {
  background: var(--plum-pale);
  padding: 40px 40px;
  margin: 60px 0;
  border-radius: 14px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.featured-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 20px;
}
.featured-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
}
.featured-logo {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-mid);
  font-family: Georgia, serif;
  font-style: italic;
  padding: 6px 16px;
  border: 1px solid var(--plum-light);
  border-radius: 6px;
  background: white;
}

/* ============ TWO LANES (Home page) ============ */
.lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 60px 0;
}
.lane {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 32px;
  border-top: 5px solid var(--plum);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lane:nth-child(2) { border-top-color: var(--blue); }
.lane:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 63, 115, 0.10);
}
.lane-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 12px;
}
.lane:nth-child(2) .lane-eyebrow { color: var(--blue); }
.lane h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
}
.lane p {
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--text-mid);
}
.lane-cta {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--plum-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--plum);
  padding-bottom: 2px;
}
.lane:nth-child(2) .lane-cta { color: var(--blue); border-bottom-color: var(--blue); }

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.stat {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--plum-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ CREDIBILITY BOX ============ */
.creds {
  background: var(--plum-pale);
  border-radius: 14px;
  padding: 36px 40px;
  margin: 50px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.creds-title {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--plum-dark);
  font-weight: 700;
  margin-bottom: 18px;
}
.creds ul { list-style: none; }
.creds li {
  padding: 10px 0;
  border-bottom: 1px solid var(--plum-light);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}
.creds li:last-child { border-bottom: none; }
.creds li strong { color: var(--plum-dark); }

/* ============ TESTIMONIAL BAND ============ */
.testimonials {
  margin: 80px 0;
}
.testimonials-title {
  text-align: center;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 40px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}
.testimonial-author {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  color: var(--plum);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============ THE 4 P's BOX (Method page) ============ */
.p-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.p-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 28px;
  border-left: 4px solid var(--plum);
}
.p-letter {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 10px;
}
.p-name {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 10px;
}
.p-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============ THE 3 TIERS ============ */
.tier-list {
  margin: 36px 0;
}
.tier {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
  border-left: 4px solid var(--plum);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.tier-num {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}
.tier-content h4 {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--plum-dark);
  margin-bottom: 8px;
  font-weight: 700;
}
.tier-content p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ============ CRNA ACRONYM (Method page) ============ */
.acronym-block {
  background: var(--blue-bg);
  border-radius: 14px;
  padding: 36px 40px;
  margin: 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.acronym-title {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--plum-dark);
  font-weight: 700;
  margin-bottom: 24px;
}
.acronym-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(107, 140, 184, 0.2);
}
.acronym-row:last-child { border-bottom: none; }
.acronym-letter {
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  min-width: 56px;
}
.acronym-meaning {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}
.acronym-meaning strong { color: var(--plum-dark); }

/* ============ QUIZ ============ */
.quiz-step {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 40px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.quiz-step.hidden { display: none; }
.quiz-progress {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.quiz-question {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--plum-dark);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  display: block;
  background: var(--plum-pale);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 17px;
  color: var(--text-dark);
  text-align: left;
  transition: all 0.15s;
  width: 100%;
}
.quiz-option:hover {
  border-color: var(--plum);
  background: var(--plum-light);
}
.quiz-option.selected {
  border-color: var(--plum);
  background: var(--plum-light);
  color: var(--plum-dark);
}

.quiz-result {
  background: var(--plum-pale);
  border-radius: 14px;
  padding: 50px 40px;
  text-align: center;
}
.quiz-result-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 16px;
}
.quiz-result h3 {
  font-size: 30px;
  margin-bottom: 18px;
}
.quiz-result-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ FORM (Contact page) ============ */
.form-group {
  margin-bottom: 22px;
}
.form-label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--plum);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--plum);
  color: var(--white);
}
.btn-primary:hover { background: var(--plum-dark); }
.btn-secondary {
  background: transparent;
  color: var(--plum-dark);
  border: 1.5px solid var(--plum);
}
.btn-secondary:hover { background: var(--plum-light); }
.btn-large {
  font-size: 15px;
  padding: 16px 32px;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--plum-dark);
  color: var(--white);
  border-radius: 14px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 80px;
}
.cta-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.cta-section h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 28px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: var(--white);
  color: var(--plum-dark);
}
.cta-section .btn-primary:hover { background: var(--plum-light); }
.cta-section .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.cta-section .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ============ EMAIL OPT-IN ============ */
.optin {
  background: var(--gold-bg);
  border-radius: 14px;
  padding: 40px 40px;
  margin: 60px 0;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.optin h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--plum-dark);
  margin-bottom: 12px;
}
.optin p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.optin-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.optin-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid var(--plum-light);
  border-radius: 8px;
  font-size: 15px;
  font-family: Georgia, serif;
}
.optin-form button {
  background: var(--plum);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.optin-form button:hover { background: var(--plum-dark); }

/* ============ NOTES PANEL (for Amanda) ============ */
.notes-panel {
  margin-top: 80px;
  background: #FFF8E7;
  border: 1px solid #E5B800;
  border-radius: 12px;
  padding: 28px 32px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.notes-panel h4 {
  color: #7A6300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.notes-panel ul { padding-left: 20px; }
.notes-panel li { margin-bottom: 8px; color: #5F4A00; }
.notes-panel strong { color: #5F4A00; }

/* ============ FOOTER ============ */
.footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 40px 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--beige);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--beige);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--beige); }
.footer-bottom {
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-split .hero-text h1 { font-size: 36px; }
  .lanes { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .p-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 40px; }
}

/* Hamburger button (hidden on desktop) */
.nav-hamburger { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; padding: 9px; flex-direction: column; justify-content: space-between; }
.nav-hamburger span { display: block; height: 3px; width: 100%; background: #fff; border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 700px) {
  .topbar-inner { padding: 14px 22px; position: relative; }
  .nav-hamburger { display: flex; }
  .nav-items {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--plum-dark); gap: 0;
    padding: 8px 0 14px; margin: 0;
    box-shadow: 0 12px 28px rgba(0,0,0,.22); z-index: 300;
  }
  .nav-items.open { display: flex; }
  .nav-items > li { width: 100%; }
  .nav-items .nav-link { display: block; padding: 13px 24px; color: #fff; }
  .nav-items .nav-link:active, .nav-items .nav-link.active { background: var(--plum-dark) !important; color: var(--plum-light) !important; }
  .nav-items .nav-link { -webkit-tap-highlight-color: transparent; }
  .nav-dropdown-menu a:active { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
  .nav-dropdown-menu a { -webkit-tap-highlight-color: transparent; }
  .nav-items .nav-link.cta, .nav-items .nav-startfree { margin: 10px 24px 0; text-align: center; border-radius: 8px; }
  /* dropdowns become inline-expand on mobile */
  .nav-dropdown-menu { position: static; display: none; box-shadow: none; background: rgba(255,255,255,.06); border: 0; border-radius: 0; padding: 4px 0; min-width: 0; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown.open > .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { color: #f0e9f5; padding: 11px 36px; }
  .nav-dropdown-menu a strong { color: #fff; }
  .nav-submenu .nav-subtoggle { color: #fff; padding: 11px 36px; }

  /* Mobile: nested RN/NAR fly-outs expand inline, not as side boxes */
  .nav-items .nav-flyout {
    position: static !important; opacity: 1 !important; visibility: visible !important;
    transform: none !important; box-shadow: none !important; border: 0 !important;
    background: rgba(0,0,0,.14) !important; border-radius: 0 !important;
    min-width: 0 !important; padding: 2px 0 !important; display: none;
  }
  .nav-items .nav-submenu.open > .nav-flyout { display: block !important; }
  .nav-items .nav-flyout a { color: #f0e9f5 !important; padding: 10px 48px !important; }
  .nav-items .nav-flyout a.flyout-hub { color: #fff !important; font-weight: 700; }
  .nav-items .nav-submenu .nav-subtoggle { display: flex; justify-content: space-between; }
  .nav-items .nav-submenu .chev { transform: rotate(90deg); display: inline-block; }

  .main, .main-wide { padding: 40px 22px 60px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero-subtitle { font-size: 18px; }
  .scene, .creds, .cta-section, .featured-on, .optin, .quiz-step, .quiz-result, .acronym-block { padding: 28px 22px; }
  .pullquote { font-size: 20px; padding-left: 20px; }
  .draft-banner { padding: 12px 20px; font-size: 12px; }
  .footer { padding: 40px 22px 32px; }
  .optin-form { flex-direction: column; }
  .featured-logos { gap: 14px; }
  .featured-logo { font-size: 15px; }
}

/* ============ FULL-WIDTH SECTIONS (Home page) ============ */
.fullbleed {
  width: 100%;
  padding: 80px 40px;
}
.fullbleed.bg-cream { background: var(--cream); }
.fullbleed.bg-plum-pale { background: var(--plum-pale); }
.fullbleed.bg-plum-light { background: var(--plum-light); }
.fullbleed.bg-blue-bg { background: var(--blue-bg); }
.fullbleed.bg-plum-dark { background: var(--plum-dark); color: var(--white); }

.fullbleed-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.fullbleed-inner.narrow {
  max-width: 880px;
}

/* Section eyebrow + headline pattern for full-width sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.left {
  text-align: left;
}
.section-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.section-title {
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1.2;
  color: var(--plum-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 19px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}

/* ============ FULL-BLEED HERO (Home page) ============ */
.hero-fullbleed {
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--cream) 100%);
  padding: 80px 40px 100px;
}
.hero-fullbleed-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-fullbleed h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-fullbleed .hero-subtitle {
  font-size: 22px;
  margin-bottom: 36px;
}
.hero-fullbleed-image {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--plum-light);
  box-shadow: 0 30px 60px -20px rgba(91, 63, 115, 0.25);
}
.hero-fullbleed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ IMAGE+TEXT BLOCK (alternating layouts) ============ */
.image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.image-text-block.reversed .text-side {
  order: 2;
}
.image-text-block.reversed .image-side {
  order: 1;
}
.image-side {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--plum-light);
  box-shadow: 0 20px 40px -15px rgba(91, 63, 115, 0.20);
}
.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.text-side h2 {
  margin-top: 0;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.text-side p {
  font-size: 17px;
  line-height: 1.7;
}

/* ============ PROGRAM GRID (3x3) ============ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.program-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  min-height: 340px;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(91, 63, 115, 0.18);
  border-color: var(--plum-light);
}
.program-card-lane {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 14px;
}
.program-card.lane-2 .program-card-lane { color: var(--blue); }
.program-card.flagship .program-card-lane { color: var(--plum-dark); }
.program-card-title {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--plum-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.program-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 20px;
  flex-grow: 1;
}
.program-card-meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--plum-light);
}
.program-card-cta {
  display: inline-flex;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  align-self: flex-start;
}
.program-card.lane-2 .program-card-cta { color: var(--blue); }
.program-card-cta:after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s;
}
.program-card:hover .program-card-cta:after {
  transform: translateX(4px);
}

/* Subtle accent bar at top of each card */
.program-card {
  position: relative;
  overflow: hidden;
}
.program-card:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--plum);
}
.program-card.lane-2:before { background: var(--blue); }
.program-card.flagship:before {
  background: linear-gradient(90deg, var(--plum-dark), var(--plum));
}

/* ============ TWO-COLUMN PROGRAM CTA (after the grid) ============ */
.program-cta {
  text-align: center;
  margin-top: 60px;
  padding: 32px;
  background: var(--plum-pale);
  border-radius: 14px;
}
.program-cta p {
  margin-bottom: 20px;
  color: var(--text-mid);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-fullbleed-inner { gap: 50px; }
  .hero-fullbleed h1 { font-size: 44px; }
}
@media (max-width: 768px) {
  .hero-fullbleed { padding: 50px 22px 60px; }
  .hero-fullbleed-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-fullbleed h1 { font-size: 36px; }
  .hero-fullbleed .hero-subtitle { font-size: 18px; }
  .image-text-block { grid-template-columns: 1fr; gap: 40px; }
  .image-text-block.reversed .text-side { order: 1; }
  .image-text-block.reversed .image-side { order: 2; }
  .text-side h2 { font-size: 28px; }
  .program-grid { grid-template-columns: 1fr; gap: 18px; }
  .fullbleed { padding: 50px 22px; }
  .section-title { font-size: 28px; }
  .section-header { margin-bottom: 40px; }
}

/* ============ FIXES — Round 2 ============ */

/* Slightly shorter hero image on desktop (was 4/5, now 5/6 — less dominant) */
.hero-fullbleed-image {
  aspect-ratio: 5 / 6;
}

/* White background option for full-bleed sections */
.fullbleed.bg-white { background: var(--white); }

/* Smooth scrolling for anchor links */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }

/* ============ ENHANCED FEATURED ON STRIP ============ */
.featured-strip {
  background: linear-gradient(135deg, var(--blue-bg) 0%, var(--blue-light) 100%);
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  padding: 56px 40px;
  position: relative;
}
.featured-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.featured-strip-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}
.featured-strip-title {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.featured-strip-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: stretch;
}
.featured-strip-logo {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--plum-dark);
  background: var(--white);
  padding: 18px 28px;
  border-radius: 10px;
  border: 1px solid var(--blue-light);
  box-shadow: 0 2px 8px rgba(107, 140, 184, 0.08);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
  min-height: 60px;
}
.featured-strip-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 140, 184, 0.18);
  border-color: var(--blue);
  color: var(--blue);
}
.featured-strip-logo .arrow {
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 14px;
}
.featured-strip-logo:hover .arrow {
  opacity: 1;
}

/* ============ ROW 3 PLUM-DARK ACCENT ============ */
.program-card.premium-row:before {
  background: linear-gradient(90deg, var(--plum-dark) 0%, var(--plum) 100%);
}
.program-card.premium-row .program-card-lane { color: var(--plum-dark); }
.program-card.premium-row .program-card-cta { color: var(--blue); }

/* ============ QUIZ INVITATION (under Two Paths) ============ */
.quiz-invitation {
  text-align: center;
  margin-top: 50px;
  background: var(--white);
  border: 2px dashed var(--plum-light);
  border-radius: 14px;
  padding: 32px 40px;
}
.quiz-invitation p {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 18px;
  font-style: italic;
}
@media (max-width: 768px) {
  .featured-strip { padding: 40px 22px; }
  .featured-strip-title { font-size: 22px; }
  .featured-strip-logo { font-size: 15px; padding: 14px 20px; min-height: 50px; }
  .quiz-invitation { padding: 24px 22px; }
}

/* ============ FULL-WIDTH SUPPORT FOR NON-HOME PAGES ============ */

/* Page hero for inner pages (About, Method, Programs, Contact) */
.page-hero {
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--cream) 100%);
  padding: 80px 40px 70px;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-hero .hero-subtitle {
  margin: 0 auto;
  font-size: 20px;
}

/* 4-column grid for items that need single-row treatment */
.row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .row-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .row-4 { grid-template-columns: 1fr; }
}

/* 3-column grid (general purpose, max-width matched to others) */
.row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .row-3 { grid-template-columns: 1fr; }
}

/* 4 P's card (used on Method page — repurposed for 4-in-a-row) */
.p-card-compact {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  border-top: 4px solid var(--plum);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.p-card-compact .p-letter {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 8px;
}
.p-card-compact .p-name {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 10px;
}
.p-card-compact .p-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

/* CRNA acronym in 4-column layout */
.acronym-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.acronym-letter-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--blue);
}
.acronym-letter-card .letter {
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}
.acronym-letter-card .label {
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--plum-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.acronym-letter-card .desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .acronym-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .acronym-4col { grid-template-columns: 1fr; }
}

/* Content block — full-width section with a contained text column */
.content-block {
  max-width: 760px;
  margin: 0 auto;
}
.content-block.wide {
  max-width: 880px;
}
.content-block p {
  font-size: 17px;
  line-height: 1.8;
}
.content-block .pullquote {
  margin: 36px 0;
}

/* Side-by-side image + text inside full-bleed sections, but a bit smaller */
.image-text-compact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.image-text-compact .image-side {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--plum-light);
  box-shadow: 0 20px 40px -15px rgba(91, 63, 115, 0.18);
}
.image-text-compact .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 900px) {
  .image-text-compact { grid-template-columns: 1fr; gap: 40px; }
}

/* Contact form — wider, in a card on full-width */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 50px 50px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(91, 63, 115, 0.06);
  border: 1px solid var(--border);
}
@media (max-width: 640px) {
  .form-card { padding: 32px 24px; }
}

/* Big page-level CTA — full width within container */
.cta-full {
  background: var(--plum-dark);
  color: var(--white);
  border-radius: 18px;
  padding: 70px 50px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-full h3 {
  color: var(--white);
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-full p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}
@media (max-width: 640px) {
  .cta-full { padding: 50px 28px; }
  .cta-full h3 { font-size: 28px; }
}

/* Stats — 3-column on wide layouts */
.stats-wide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .stats-wide { grid-template-columns: 1fr; }
}
.stat-card-large {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--plum-light);
}
.stat-card-large .number {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--plum-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card-large .label {
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ PALETTE UPDATE — Round 3 ============ */
/* Cool tonal backgrounds for sections — no more cream/beige */
.fullbleed.bg-cream { background: var(--soft-white); }
.fullbleed.bg-white { background: var(--white); }
.fullbleed.bg-lavender-tint { background: var(--lavender-tint); }
.fullbleed.bg-blue-tint { background: var(--blue-tint); }

/* Gradient backgrounds — gentle tonal grading */
.fullbleed.bg-gradient-lavender {
  background: linear-gradient(180deg, var(--white) 0%, var(--lavender-tint) 100%);
}
.fullbleed.bg-gradient-blue {
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-tint) 100%);
}
.fullbleed.bg-gradient-lavender-blue {
  background: linear-gradient(135deg, var(--lavender-tint) 0%, var(--blue-tint) 100%);
}
.fullbleed.bg-gradient-soft {
  background: linear-gradient(180deg, var(--plum-pale) 0%, var(--white) 100%);
}

/* Page hero update — gentler cool gradient */
.page-hero {
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--lavender-tint) 50%, var(--blue-tint) 100%);
}
.hero-fullbleed {
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--lavender-tint) 50%, var(--blue-tint) 100%);
}

/* Optin section — change from gold-bg to soft lavender */
.optin {
  background: var(--lavender-tint);
}

/* Featured-on strip — slightly cleaner gradient */
.featured-strip {
  background: linear-gradient(135deg, var(--blue-tint) 0%, var(--blue-light) 100%);
}

/* ====== FREE CARDS (Start Free band) ====== */
.free-card {
  background: var(--blue-bg);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--blue);
}
.free-card-tag {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.free-card-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  color: var(--plum-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.free-card-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}
.free-card-cta {
  display: inline-flex;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  align-self: flex-start;
}
.free-card-cta:after {
  content: "";
  margin-left: 6px;
  transition: transform 0.2s;
}
.free-card:hover .free-card-cta:after { transform: translateX(4px); }

/* ====== ENRICHED PROGRAM CARDS (Programs page) ====== */
.program-card-who {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.program-card-who span { color: var(--plum-dark); }
.program-card.lane-2 .program-card-who span { color: var(--blue); }
.program-card.premium-row .program-card-who span { color: var(--plum-dark); }
.program-card-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.program-card-includes li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  margin-bottom: 7px;
}
.program-card-includes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--plum);
  font-weight: 700;
}
.program-card.lane-2 .program-card-includes li:before { color: var(--blue); }

/* ====== HEADER LOGO ====== */
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { width: 42px; height: 42px; flex-shrink: 0; display: block; }
.brand-text { display: flex; flex-direction: column; }

/* ====== LOGIN DROPDOWN ====== */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link {
  cursor: pointer;
  color: var(--beige);
  border: 1.5px solid var(--beige);
}
.nav-dropdown > .nav-link:hover {
  background: rgba(232,217,184,0.12);
  color: var(--beige);
}
.nav-dropdown > .nav-link:after {
  content: "▾";
  margin-left: 6px;
  font-size: 11px;
}
.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(90,63,115,0.12);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--plum-dark);
  font-size: 14px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.nav-dropdown-menu a small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2px;
}
/* Mobile: small text in nav dropdown should be light not gray */
@media (max-width: 880px) {
  .nav-dropdown-menu a small { color: rgba(255,255,255,0.7) !important; }
}
.nav-dropdown-menu a:hover { background: var(--plum-pale); color: var(--plum); }
.nav-dropdown-section {
  display: block;
  padding: 12px 14px 5px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
  border-top: 1px solid var(--plum-light);
}
.nav-dropdown-section:first-of-type { border-top: none; margin-top: 0; }
.nav-dropdown-menu a:first-child strong { color: var(--plum-dark); }

/* ====== FOOTER CONTACT ====== */
.footer-contact { margin-top: 14px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }

/* ====== SALES PAGE COMPONENTS ====== */

/* Hero CTA row */
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }

/* Step grid (4-step process) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .step-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .step-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--plum-pale);
  border-radius: 14px;
  padding: 30px 26px;
  border-top: 4px solid var(--plum);
}
.step-num {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h4 {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--plum-dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* Large checklist */
.checklist-large {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
}
@media (max-width: 800px) { .checklist-large { grid-template-columns: 1fr; } }
.checklist-large li {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.55;
  padding-left: 32px;
  position: relative;
}
.checklist-large li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--plum);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
  font-weight: 700;
}
.checklist-large li strong { color: var(--plum-dark); }

/* Bonus highlight card */
.bonus-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 36px;
  text-align: center;
  border-top: 5px solid var(--blue);
  box-shadow: 0 4px 14px rgba(107,140,184,0.12);
}
.bonus-tag {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bonus-card h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--plum-dark);
  margin-bottom: 14px;
}
.bonus-card p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* Pricing card */
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  border: 2px solid var(--plum);
  box-shadow: 0 6px 22px rgba(123,90,143,0.12);
  text-align: center;
}
.pricing-tag {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-card h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--plum-dark);
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-meta {
  font-size: 13px;
  color: var(--text-light);
  font-family: -apple-system, sans-serif;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  text-align: left;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-features li {
  font-size: 14.5px;
  color: var(--text-mid);
  padding: 9px 0 9px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--plum);
  font-weight: 700;
}
.btn-block { width: 100%; text-align: center; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.faq-list details[open] { box-shadow: 0 2px 8px rgba(90,63,115,0.08); }
.faq-list summary {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--plum-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:after {
  content: "+";
  color: var(--plum);
  font-size: 22px;
  font-weight: 400;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-list details[open] summary:after { content: "−"; }
.faq-list details p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ====== QUIZ HERO (Programs page) — two columns, message LEFT, quiz RIGHT ====== */
.quiz-hero {
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--blue-bg) 100%);
  padding: 80px 40px 90px;
}
.quiz-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.quiz-hero-text { text-align: left; }
.quiz-hero-text .hero-eyebrow {
  margin: 0 0 16px 0;
}
.quiz-hero-text h1 {
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1.12;
  color: var(--plum-dark);
  margin: 0 0 20px 0;
  font-weight: 700;
}
.quiz-hero-text .hero-subtitle {
  font-size: 19px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0 0 22px 0;
  max-width: 520px;
}
.quiz-hero-note {
  font-size: 14.5px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.55;
  max-width: 480px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.quiz-hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 28px rgba(90,63,115,0.12);
  border-top: 4px solid var(--plum);
}

/* Responsive: stack on tablet/mobile, quiz first (so the action is visible) */
@media (max-width: 900px) {
  .quiz-hero { padding: 50px 24px 60px; }
  .quiz-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .quiz-hero-text { text-align: center; }
  .quiz-hero-text .hero-subtitle,
  .quiz-hero-note { margin-left: auto; margin-right: auto; }
  .quiz-hero-text h1 { font-size: 36px; }
}

/* ====== CONTACT SPLIT (Contact page) — image+message LEFT, form RIGHT ====== */
.contact-split {
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--blue-bg) 100%);
  padding: 70px 40px 90px;
}
.contact-split-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}
.contact-split-left { display: flex; flex-direction: column; }
.contact-photo {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(90,63,115,0.18);
  margin-bottom: 32px;
}
.contact-message .hero-eyebrow { margin: 0 0 14px 0; }
.contact-message h1 {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1.15;
  color: var(--plum-dark);
  margin: 0 0 18px 0;
  font-weight: 700;
}
.contact-message p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0 0 12px 0;
  max-width: 480px;
}
.contact-split-right .form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 28px rgba(90,63,115,0.12);
  border-top: 4px solid var(--plum);
  max-width: 100%;
}
.form-card-header { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.form-card-header .section-eyebrow { margin-bottom: 8px; }
.form-card-header h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--plum-dark);
  margin: 0;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 900px) {
  .contact-split { padding: 50px 24px 60px; }
  .contact-split-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-photo { max-width: 360px; margin-left: auto; margin-right: auto; }
  .contact-message { text-align: center; }
  .contact-message p { margin-left: auto; margin-right: auto; }
  .contact-message h1 { font-size: 34px; }
}

/* ====== BUTTONS ON DARK CTA BACKGROUNDS ====== */
/* Beige accent buttons inside dark plum CTA sections — readable against the dark background */
.cta-full .btn-primary {
  background: var(--beige);
  color: var(--plum-dark);
  border-color: var(--beige);
}
.cta-full .btn-primary:hover {
  background: var(--beige-dark);
  border-color: var(--beige-dark);
  color: var(--plum-dark);
}
.cta-full .btn-secondary {
  background: transparent;
  color: var(--beige);
  border: 1.5px solid var(--beige);
}
.cta-full .btn-secondary:hover {
  background: var(--beige);
  color: var(--plum-dark);
}

/* ====== FORMAT B: STICKY PRICING SIDEBAR (program sales pages) ====== */
.product-split {
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--blue-bg) 100%);
  padding: 60px 40px 80px;
}
.product-split-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 64px;
  align-items: start;
}

/* LEFT main content column */
.product-main { min-width: 0; }
.product-meta.product-meta-mobile { display: none; }
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.product-meta span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--plum-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.product-h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1.08;
  color: var(--plum-dark);
  margin: 0 0 22px 0;
  font-weight: 700;
}
.product-lead {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0 0 36px 0;
  max-width: 640px;
}
.product-image {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(90,63,115,0.18);
  margin-bottom: 50px;
  display: block;
}
.product-main h2 {
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--plum-dark);
  margin: 40px 0 16px;
  line-height: 1.25;
}
.product-main p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-main p strong { color: var(--plum-dark); }
.product-main em { color: var(--plum); font-style: italic; }

/* RIGHT sticky sidebar column */
.product-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sticky-pricing {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 26px;
  border: 2px solid var(--plum);
  box-shadow: 0 6px 22px rgba(123,90,143,0.14);
}
.sticky-tag {
  font-family: -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 8px;
}
.sticky-price {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--plum-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.sticky-meta {
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.sticky-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 14px 0 16px;
}
.sticky-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}
.sticky-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 7px 0 7px 24px;
  position: relative;
  line-height: 1.45;
}
.sticky-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--plum);
  font-weight: 700;
}
.sticky-secure {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin: 12px 0 0;
  font-family: -apple-system, sans-serif;
  font-style: italic;
}
.sticky-testimonial {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 22px;
  border-top: 3px solid var(--blue);
  box-shadow: 0 3px 12px rgba(107,140,184,0.10);
}
.sticky-stars {
  color: #D4A93A;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.sticky-quote {
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0 0 12px 0;
}
.sticky-attr {
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  color: var(--plum);
  font-weight: 600;
}

/* Mobile + tablet: stack, sidebar drops below hero content */
@media (max-width: 980px) {
  .product-split { padding: 40px 24px 60px; }
  .product-split-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .product-sidebar { position: static; margin-bottom: 36px; }
  .product-meta-mobile { display: flex !important; margin-bottom: 16px; padding: 0 0 0 0; }
  .product-main .product-meta { display: none; }
  .product-h1 { font-size: 36px; }
  .product-lead { font-size: 17px; }
  .product-image { margin-bottom: 30px; }
  .product-main h2 { font-size: 24px; }
}

/* Mobile: H1 first, price sidebar right after H1, then rest of main content */
@media (max-width: 980px) {
  .product-main { display: contents; }
  .product-h1 { order: -2; }
  .product-sidebar { order: -1; }
}

/* ============================================================
   PALER GRADIENT FLOW (Option A) — soft section transitions
   No hard lines, no borders between sections.
   Each background ends where the next begins.
   ============================================================ */
.fullbleed { border: none !important; }

/* Override the bg-* classes with soft gradients */
.fullbleed.bg-white       { background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%); }
.fullbleed.bg-cream       { background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F4 100%); }
.fullbleed.bg-blue-bg     { background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FC 100%); }
.fullbleed.bg-blue-tint   { background: linear-gradient(180deg, #F4F8FC 0%, #F8F4FB 100%); }
.fullbleed.bg-lavender-tint { background: linear-gradient(180deg, #F8F4FB 0%, #F2EAF5 100%); }
.fullbleed.bg-plum-pale   { background: linear-gradient(180deg, #F2EAF5 0%, #FAF8F4 100%); }
.fullbleed.bg-plum-light  { background: linear-gradient(180deg, #F8F4FB 0%, #F2EAF5 100%); }
.fullbleed.bg-plum-dark   { background: var(--plum-dark); color: var(--white); }  /* dark CTA blocks stay full plum */

/* Remove section dividers/lines */
section, .fullbleed { border-top: none !important; border-bottom: none !important; }

/* Header sits cleanly on body, no line */
.topbar { border-bottom: none !important; box-shadow: none !important; }

/* ============================================================
   BODY TEXT LINKS — blue underlined, only inside content
   ============================================================ */
.content-block p a,
.fullbleed-inner p a,
.product-main p a,
.product-main li a,
.faq-list a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.content-block p a:hover,
.fullbleed-inner p a:hover,
.product-main p a:hover,
.product-main li a:hover,
.faq-list a:hover {
  color: var(--plum-dark);
}

/* ============================================================
   FEATURED-ON STRIP — unlinked logo variant
   Used when a guest appearance can't be linked to a real URL
   ============================================================ */
.featured-strip-logo--nolink {
  cursor: default !important;
  pointer-events: none;
  text-decoration: none !important;
}
.featured-strip-logo--nolink:hover {
  color: inherit !important;
  background: transparent !important;
}

/* ===== Testimonial read-more (uniform height + expand) ===== */
.testimonial-quote.clampable {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-quote.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.testimonial-readmore {
  background: none;
  border: none;
  color: var(--plum);
  font-weight: 600;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  padding: 6px 0 0;
  margin: 0;
}
.testimonial-readmore:hover { text-decoration: underline; }
.sticky-quote.clampable {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sticky-quote.expanded { display: block; -webkit-line-clamp: unset; overflow: visible; }

/* ============ ROUND 28 — header + Start Free ============ */
/* Programs dropdown — colored lane labels (RN plum, NAR blue) */
.nav-dropdown-section.lane-rn{
  color: #534AB7;
  background: #EEEDFE;
  border-top: none;
  border-left: 4px solid #534AB7;
  border-radius: 0;
  padding: 7px 12px;
  margin: 8px 0 4px;
  letter-spacing: 0.04em;
}
.nav-dropdown-section.lane-nar{
  color: #0C447C;
  background: #E6F1FB;
  border-top: none;
  border-left: 4px solid #185FA5;
  border-radius: 0;
  padding: 7px 12px;
  margin: 12px 0 4px;
  letter-spacing: 0.04em;
}
.nav-dropdown-section.lane-rn:first-of-type{ margin-top: 6px; }

/* Start Free header button — plum letters + pulsing silver glow */
@keyframes startFreePulse{
  0%,100%{ text-shadow:0 0 5px rgba(235,235,250,.7), 0 0 10px rgba(205,205,225,.5); }
  50%{ text-shadow:0 0 9px rgba(245,245,255,1), 0 0 20px rgba(215,215,235,1); }
}
.nav-link.cta.nav-startfree{
  color:#7C3AED;
  animation:startFreePulse 2s ease-in-out infinite;
}
.nav-link.cta.nav-startfree:hover{
  color:#5A3F73;
  background: var(--beige-dark);
  border-color: var(--beige-dark);
}

/* Home "Start free." title — plum letters + pulsing glow + wavy underline */
@keyframes startFreeTitleGlow{
  0%,100%{ text-shadow:0 0 6px rgba(235,235,250,.6), 0 0 14px rgba(205,205,225,.45); }
  50%{ text-shadow:0 0 12px rgba(245,245,255,.95), 0 0 26px rgba(215,215,235,.85); }
}
@keyframes startFreeLineGlow{ 0%,100%{ opacity:.7; } 50%{ opacity:1; } }
.start-free-title{
  color:#7C3AED;
  animation:startFreeTitleGlow 2.4s ease-in-out infinite;
  display:inline-block;
}
.start-free-title .sf-wave{
  display:block;
  margin:4px auto 0;
  animation:startFreeLineGlow 2.4s ease-in-out infinite;
}

/* ===== MOBILE FIX: force inline-styled 3-col grids to stack ===== */
@media (max-width: 560px) {
  .step-grid[style] { grid-template-columns: 1fr !important; }
  .checklist-large[style] { grid-template-columns: 1fr !important; }
  .free-grid[style], .free-grid { grid-template-columns: 1fr !important; }
}

/* ===== MOBILE FIX (extended): inline-styled grids stack on phones ===== */
@media (max-width: 560px) {
  .row-3[style], .row-4[style] { grid-template-columns: 1fr !important; }
  article[style*="grid"] { grid-template-columns: 1fr !important; }
}

/* ===== Kit JS-embed form: hide empty image column, force single column ===== */
.formkit-form[data-uid="26f669fb3b"] .formkit-background,
.formkit-form[data-uid="72ea35962d"] .formkit-background,
.formkit-form[data-uid="5ce8282830"] .formkit-background,
.formkit-form[data-uid="7e5d4fb281"] .formkit-background,
.formkit-form[data-uid="8c90373a61"] .formkit-background,
.formkit-form[data-uid="d5cff9efe4"] .formkit-background {
  display: none !important;
}
.formkit-form[data-uid="26f669fb3b"] [data-style="full"],
.formkit-form[data-uid="72ea35962d"] [data-style="full"],
.formkit-form[data-uid="5ce8282830"] [data-style="full"],
.formkit-form[data-uid="7e5d4fb281"] [data-style="full"],
.formkit-form[data-uid="8c90373a61"] [data-style="full"],
.formkit-form[data-uid="d5cff9efe4"] [data-style="full"] {
  display: block !important;
  grid-template-columns: 1fr !important;
}
.formkit-form[data-uid="26f669fb3b"],
.formkit-form[data-uid="72ea35962d"],
.formkit-form[data-uid="5ce8282830"],
.formkit-form[data-uid="7e5d4fb281"],
.formkit-form[data-uid="8c90373a61"],
.formkit-form[data-uid="d5cff9efe4"] {
  min-width: 0 !important;
  max-width: 480px !important;
  margin: 0 auto !important;
}
.formkit-form[data-uid="26f669fb3b"] .formkit-column,
.formkit-form[data-uid="72ea35962d"] .formkit-column,
.formkit-form[data-uid="5ce8282830"] .formkit-column,
.formkit-form[data-uid="7e5d4fb281"] .formkit-column,
.formkit-form[data-uid="8c90373a61"] .formkit-column,
.formkit-form[data-uid="d5cff9efe4"] .formkit-column {
  padding: 24px !important;
}

/* ===== Programs fly-out submenus (Option A: RN/NAR groups) ===== */
.nav-submenu { position: relative; }
.nav-submenu > .nav-subtoggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: 7px; cursor: pointer;
  color: var(--plum-dark); font-size: 14px; font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-decoration: none;
}
.nav-submenu > .nav-subtoggle:hover { background: var(--plum-pale); color: var(--plum); }
.nav-submenu > .nav-subtoggle .chev { font-size: 12px; color: var(--text-light); margin-left: 10px; }
.nav-submenu-lane.lane-rn > .nav-subtoggle { color: var(--plum); }
.nav-submenu-lane.lane-nar > .nav-subtoggle { color: var(--blue); }

.nav-flyout {
  position: absolute; top: -8px; left: calc(100% + 6px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(90,63,115,0.12);
  min-width: 230px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 210;
}
.nav-submenu:hover > .nav-flyout,
.nav-submenu:focus-within > .nav-flyout,
.nav-submenu.open > .nav-flyout {
  opacity: 1; visibility: visible; transform: translateX(0);
}
.nav-flyout a {
  display: block; padding: 10px 14px; border-radius: 7px; text-decoration: none;
  color: var(--plum-dark); font-size: 14px; font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.nav-flyout a:hover { background: var(--plum-pale); color: var(--plum); }
.nav-flyout a.flyout-hub { font-weight: 700; color: var(--plum-dark); }
.nav-flyout .flyout-divider { border-top: 1px solid var(--plum-light); margin: 5px 4px; }

/* Mobile: fly-outs become inline expandable (no hover) */
@media (max-width: 880px) {
  .nav-flyout {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 2px solid rgba(255,255,255,0.2);
    border-radius: 0; margin: 2px 0 6px 12px; padding: 2px 0 2px 8px; min-width: 0;
    background: transparent !important;
    display: none;
  }
  .nav-submenu.open > .nav-flyout { display: block; }
  .nav-submenu > .nav-subtoggle { font-size: 13px; color: #fff !important; }
  .nav-flyout a { color: #f0e9f5 !important; }
  .nav-flyout a.flyout-hub { color: #fff !important; font-weight: 700; }
  .nav-flyout a:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
}

/* ============================================================
   MOBILE NAV OVERRIDES — appended last so they win the cascade
   ============================================================ */
@media (max-width: 700px) {
  .nav-hamburger { display: flex !important; }
  .nav-items {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: var(--plum-dark);
    gap: 0; padding: 8px 0 14px; margin: 0; box-shadow: 0 12px 28px rgba(0,0,0,.22); z-index: 300;
  }
  .nav-items.open { display: flex !important; }
  .nav-items > li { width: 100%; }
  .nav-items .nav-link { display: block; padding: 13px 24px; color: #fff; }
  .nav-items .nav-link.cta, .nav-items .nav-startfree { margin: 10px 24px 0; text-align: center; border-radius: 8px; }

  /* Outer dropdown (Programs / News) — inline, full-width, not a floating box */
  .nav-items .nav-dropdown-menu {
    position: static !important; right: auto !important; top: auto !important;
    display: none !important; opacity: 1 !important; visibility: visible !important;
    transform: none !important; box-shadow: none !important; border: 0 !important;
    background: rgba(255,255,255,.06) !important; border-radius: 0 !important;
    min-width: 0 !important; width: 100% !important; padding: 4px 0 !important; z-index: auto !important;
  }
  .nav-items .nav-dropdown.open > .nav-dropdown-menu { display: block !important; }
  .nav-items .nav-dropdown-menu > a { color: #f0e9f5 !important; padding: 12px 36px !important; }
  .nav-items .nav-dropdown-menu > a strong { color: #fff !important; }

  /* Nested RN/NAR fly-outs — inline expand */
  .nav-items .nav-submenu { width: 100%; }
  .nav-items .nav-submenu .nav-subtoggle { display: flex; justify-content: space-between; align-items: center; color: #fff !important; padding: 12px 36px !important; background: transparent !important; }
  .nav-items .nav-submenu .nav-subtoggle:active,
  .nav-items .nav-submenu .nav-subtoggle:focus,
  .nav-items .nav-submenu.open .nav-subtoggle { background: rgba(255,255,255,0.08) !important; color: #fff !important; -webkit-tap-highlight-color: transparent; }
  .nav-items .nav-submenu .chev { transform: rotate(90deg); }
  .nav-items .nav-flyout {
    position: static !important; left: auto !important; right: auto !important;
    opacity: 1 !important; visibility: visible !important; transform: none !important;
    box-shadow: none !important; border: 0 !important; background: rgba(0,0,0,.16) !important;
    border-radius: 0 !important; min-width: 0 !important; width: 100% !important;
    padding: 2px 0 !important; display: none !important; z-index: auto !important;
  }
  .nav-items .nav-submenu.open > .nav-flyout { display: block !important; }
  .nav-items .nav-flyout a { color: #f0e9f5 !important; padding: 11px 52px !important; display: block; }
  .nav-items .nav-flyout a.flyout-hub { color: #fff !important; font-weight: 700; }
}

/* ============================================================
   UI POLISH LAYER — appended last, wins the cascade
   Standardizes spacing, radius, shadows, motion, focus,
   and typography rhythm without changing the brand identity.
   ============================================================ */

:root {
  /* Spacing scale — 4px base, 8pt grid */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;

  /* Radius scale */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-pill: 999px;

  /* Elevation scale (plum-tinted for palette cohesion) */
  --shadow-sm: 0 1px 2px rgba(90,63,115,0.06), 0 1px 3px rgba(90,63,115,0.08);
  --shadow-md: 0 4px 12px rgba(90,63,115,0.08), 0 2px 4px rgba(90,63,115,0.06);
  --shadow-lg: 0 10px 30px rgba(90,63,115,0.12), 0 4px 10px rgba(90,63,115,0.06);
  --shadow-xl: 0 20px 50px rgba(90,63,115,0.16), 0 8px 20px rgba(90,63,115,0.08);

  /* Motion — consistent easings + durations */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 200ms;
  --dur-slow: 300ms;

  /* Focus ring — accessible + on-brand */
  --focus-ring: 0 0 0 3px rgba(123, 90, 143, 0.35);
}

/* ---------- Baseline correctness ---------- */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img, svg, video { max-width: 100%; height: auto; }

/* Slightly cleaner text rendering on macOS/iOS */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Fix anchor scroll offset when navigating to #hash sections */
:target { scroll-margin-top: 100px; }

/* ---------- Typography rhythm (non-destructive) ---------- */
/* Balance headings across lines — modern browsers only, degrades gracefully */
h1, h2, h3, h4,
.section-title,
.product-h1,
.hero-fullbleed h1,
.page-hero h1,
.quiz-hero-text h1,
.contact-message h1,
.bootcamp-band-title,
.flagship-title,
.container-box-title,
.pricing-card h3,
.bonus-card h3,
.creds-title,
.acronym-title,
.form-card-header h3,
.testimonial-quote,
.quiz-question {
  text-wrap: balance;
}
/* Pretty wrap for paragraphs — avoids single-word orphans */
p, .lead, .hero-subtitle, .section-subtitle,
.program-card-desc, .free-card-desc, .lane p,
.testimonial-quote, .sticky-quote,
.step-card p, .p-desc, .acronym-meaning {
  text-wrap: pretty;
}

/* ---------- Alignment: unified card & container polish ---------- */
/* All white/pale card surfaces get the same subtle elevation baseline
   so no card looks flatter or heavier than its neighbours. */
.lane,
.testimonial,
.stat,
.stat-card-large,
.p-card,
.p-card-compact,
.tier,
.acronym-letter-card,
.program-card,
.free-card,
.step-card,
.bonus-card,
.quiz-hero-card,
.form-card,
.faq-list details {
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease);
}
.lane:hover,
.program-card:hover,
.free-card:hover,
.featured-strip-logo:hover,
.testimonial:hover {
  box-shadow: var(--shadow-md);
}

/* Give cards that share a row consistent internal alignment:
   flex column ensures CTAs sit at the same baseline. */
.testimonial-grid > .testimonial,
.row-3 > *,
.row-4 > *,
.program-grid > .program-card,
.step-grid > .step-card,
.p-grid > .p-card,
.acronym-4col > .acronym-letter-card {
  height: 100%;
}

/* ---------- Grid & gap standardization ---------- */
/* Snap gaps to 8-pt grid where they were on odd values (24 stays, 16/32 preferred) */
.testimonial-grid { gap: var(--space-5); }        /* 24 */
.p-grid { gap: var(--space-5); }                   /* 24 */
.stats { gap: var(--space-4); }                    /* 16 */
.row-3, .row-4 { gap: var(--space-5); }            /* 24 */
.program-grid { gap: var(--space-5); }             /* 24 */
.step-grid { gap: var(--space-5); }                /* 24 */

/* ---------- Button consistency ---------- */
.btn,
.optin-form button,
.nl-inline-form button,
.container-box-cta,
.flagship-cta,
.bootcamp-band-cta,
.prog-tile-cta {
  transition:
    background-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.btn:hover,
.optin-form button:hover,
.nl-inline-form button:hover { transform: translateY(-1px); }
.btn:active,
.optin-form button:active,
.nl-inline-form button:active { transform: translateY(0); }

/* Give buttons a subtle "lift" shadow on hover for better affordance */
.btn-primary:hover { box-shadow: var(--shadow-md); }

/* ---------- Focus states (accessibility) ---------- */
/* Consistent, brand-tinted focus ring on all interactive elements.
   Uses :focus-visible so it only shows for keyboard/AT users. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.nav-dropdown-menu a:focus-visible,
.nav-flyout a:focus-visible,
.quiz-option:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.optin-form input:focus-visible,
.optin-form button:focus-visible,
.nl-inline-form input:focus-visible,
.nl-inline-form button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}
/* Keep native focus off when not keyboard-navigating (prevents click halo) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
summary:focus:not(:focus-visible) { outline: none; }

/* ---------- Form field baseline ---------- */
.form-input,
.form-textarea,
.optin-form input,
.nl-inline-form input,
.nl-pop input {
  transition:
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.form-input:focus,
.form-textarea:focus,
.optin-form input:focus,
.nl-inline-form input:focus,
.nl-pop input:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(123, 90, 143, 0.12);
}

/* ---------- Micro-alignment fixes ---------- */
/* Consistent vertical rhythm inside .content-block sections */
.content-block > * + h2 { margin-top: var(--space-7); }   /* 48 */
.content-block > * + h3 { margin-top: var(--space-6); }   /* 32 */

/* Align checkmark rows on the same baseline as their text */
.pricing-features li,
.sticky-features li,
.program-card-includes li,
.checklist-large li {
  align-items: baseline;
}

/* Ensure list rows in credibility box are vertically centered on their content */
.creds li { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }

/* Prevent overflow from long link text in nav dropdowns */
.nav-dropdown-menu a,
.nav-flyout a { min-width: 0; word-wrap: break-word; }

/* Ensure buttons in CTA sections align on a single row when they fit */
.cta-buttons,
.hero-cta-row { align-items: center; }

/* ---------- Motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .nav-link.cta.nav-startfree,
  .start-free-title,
  .hero-announce-eyebrow { animation: none !important; }
}

/* ---------- Print baseline ---------- */
@media print {
  .topbar, .footer, .draft-banner, .nl-pop-overlay, .cta-section, .cta-full,
  .featured-strip, .quiz-hero, .contact-split, .optin { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; line-height: 1.5; }
  a { color: #000; text-decoration: underline; }
  .main, .main-wide, .content-block { max-width: 100%; padding: 0; }
}

/* ---------- Section spacing normalization ---------- */
/* Some fullbleed sections use 80px, others 60/70/90.
   Normalize to the 8pt scale for a steady vertical rhythm,
   preserving hero-fullbleed and page-hero which use their own values. */
.fullbleed:not(.hero-fullbleed):not(.page-hero):not(.featured-strip):not(.quiz-hero):not(.contact-split):not(.product-split) {
  padding-top: var(--space-9);      /* 80 */
  padding-bottom: var(--space-9);
}

@media (max-width: 768px) {
  .fullbleed:not(.hero-fullbleed):not(.page-hero):not(.featured-strip):not(.quiz-hero):not(.contact-split):not(.product-split) {
    padding-top: var(--space-7);    /* 48 on mobile */
    padding-bottom: var(--space-7);
  }
}

/* ---------- Inner container width consistency ---------- */
/* Most inner blocks target 1100/1280 — snap to 1280 for edge parity */
.fullbleed-inner,
.hero-fullbleed-inner,
.page-hero-inner,
.quiz-hero-inner,
.contact-split-inner,
.product-split-inner,
.featured-strip-inner {
  padding-inline: clamp(16px, 4vw, 40px);
}

/* ---------- Image containers: prevent CLS ---------- */
.hero-image, .hero-fullbleed-image, .image-side, .image-text-compact .image-side {
  background-color: var(--plum-light);
}
.hero-image img, .hero-fullbleed-image img, .image-side img, .contact-photo, .product-image {
  display: block;
}

