/* ============================================================
   JANE BAYLER COACHING — DASHBOARD STYLES (v2)
   ============================================================
   Shared across all 5 dashboard pages.

   ── WHAT CHANGED IN THIS REWRITE ──────────────────────────
   This file replaces the original v1 dashboard CSS. Every
   existing class name has been preserved so your .hbs
   templates and any JavaScript keep working without edits.
   What changed are the *visual properties* — colours, fonts,
   spacing, shadows — to align with Jane Bayler's brand.

   Brand palette (locked):
     #4C2669  Purple         — titles, key words, primary brand
     #F46E23  Orange         — secondary accent, eyebrow labels
     #DED5E8  Lilac          — tertiary, locked states, soft fills
     #E62C2C  Red            — action buttons only
     #000000  Black          — body copy
     #FAF8F5  Warm cream     — page background

   Typography:
     Montserrat (400 / 500 / 600 / 700) for everything.
     Pacifico script font has been removed.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ── Design tokens ───────────────────────────────────────── */
/* CHANGED: introduced CSS custom properties so the palette
   lives in one place. Every colour reference below maps to
   one of these tokens — easy to retune later. */
:root {
  --jb-purple:        #4C2669;
  --jb-purple-15:     rgba(76, 38, 105, 0.15);
  --jb-purple-10:     rgba(76, 38, 105, 0.10);
  --jb-purple-05:     rgba(76, 38, 105, 0.05);
  --jb-orange:        #F46E23;
  --jb-orange-18:     rgba(244, 110, 35, 0.18);
  --jb-orange-40:     rgba(244, 110, 35, 0.40);
  --jb-lilac:         #DED5E8;
  --jb-lilac-25:      rgba(222, 213, 232, 0.25);
  --jb-red:           #E62C2C;
  --jb-red-hover:     #C62525;
  --jb-black:         #000000;
  --jb-cream:         #FAF8F5;
  --jb-white:         #FFFFFF;
  --jb-success:       #2D9B5C;

  --jb-radius-sm:     6px;
  --jb-radius-md:     10px;
  --jb-radius-lg:     14px;
  --jb-shadow-sm:     0 1px 2px rgba(76, 38, 105, 0.05);
  --jb-shadow-md:     0 2px 8px rgba(76, 38, 105, 0.08);
  --jb-shadow-lg:     0 4px 16px rgba(76, 38, 105, 0.10);

  --jb-font:          'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* ── Reset & Ghost overrides ─────────────────────────────── */
/* UNCHANGED: these are critical for the Ghost integration.
   They strip the default theme chrome and let our app fill
   the viewport. Do not remove. */
*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; height: 100vh; overflow: hidden; }

/* CHANGED: added Montserrat as the base font on body so it
   cascades to anything that doesn't override it. */
body {
  font-family: var(--jb-font);
  color: var(--jb-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header, .header, .site-header, .gh-header, .site-nav, .inner-header,
footer, .site-footer, .gh-footer, .footer { display: none !important; }

.site-content, .site-main, .main-content, .content-area, .gh-content {
  padding: 0 !important;
  margin: 0 !important;
  height: 100% !important;
}

/* ── App root layout ─────────────────────────────────────── */
/* UNCHANGED structurally: still flex, full viewport, no overflow.
   This is the proven layout shell. */
#app-root {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* ── Sidebar ─────────────────────────────────────────────── */
/* CHANGED:
   - Background from bright #6720b3 to brand-spec #4C2669
     (deeper, more sophisticated, matches mockup)
   - Width reduced from 260px to 230px (mockup proportion)
   - Added 18px horizontal padding to give nav items proper inset
   - Added flex gap so sections breathe consistently */
.sidebar {
  width: 230px;
  flex-shrink: 0;
  background: var(--jb-purple);
  color: var(--jb-white);
  display: flex;
  flex-direction: column;
  padding: 28px 18px;
  gap: 28px;
  overflow-y: auto;
}

/* CHANGED:
   - Pacifico cursive REMOVED — replaced with Montserrat 700
   - Font size from 26px to 17px (subtler, professional)
   - Text-align from center to left (mockup uses left-aligned wordmark)
   - Removed centring padding
   - Margin-bottom removed — the sidebar's flex gap now spaces things */
.brand-name {
  font-family: var(--jb-font);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

/* NEW: optional qualifier line under the brand wordmark.
   In the mockup the brand reads:
     "The Launchpad"
     "EXPERIENCE"  (small, tracked, lilac)
   Add this class to a sibling element under .brand-name if
   you want that two-line treatment. */
.brand-qualifier {
  font-size: 11px;
  font-weight: 500;
  color: var(--jb-lilac);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* NEW: thin divider beneath the brand block.
   Wrap your brand markup in <div class="brand-block"> if you
   want the divider, otherwise omit. */
.brand-block {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--jb-lilac-25);
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* CHANGED:
   - Font size from 12px to 10px (more refined micro-cap)
   - Letter-spacing tightened from default to 0.16em
   - Font-weight bumped to 600 (was default 400)
   - Colour changed from semi-transparent white to #DED5E8 lilac
   - Padding reduced and standardised */
.nav-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--jb-lilac);
  padding: 0 12px 12px;
  margin: 0;
}

/* NEW: utility class for the second nav-label so it gets
   extra top padding, separating it from the section above.
   Apply alongside .nav-label, e.g.:
     <div class="nav-label nav-label--spaced">Account & Offers</div> */
.nav-label--spaced {
  padding-top: 28px;
}

/* CHANGED:
   - Padding reduced from 16px 22px to 10px 12px
     (tighter, mockup-aligned)
   - Border-radius added (6px) for rounded hover/active states
   - Border-left removed by default — now appears only on active
   - Colour from white to #DED5E8 lilac (less shouty)
   - Font-size 13px set explicitly
   - Added gap and flex for icon support
   - Line-height 1.3 for two-line items like
     "The Reinvention Room Community" */
.nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--jb-radius-sm);
  color: var(--jb-lilac);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

/* CHANGED: subtler hover than before */
.nav-link:hover {
  background: rgba(222, 213, 232, 0.08);
  color: var(--jb-white);
}

/* CHANGED:
   - Active state replaced entirely.
   - WAS: white left bar + #8e44ad magenta bg (off-brand)
   - NOW: orange left bar + soft orange tint
   - This is the chosen treatment per your selection. */
.nav-link--active {
  background: var(--jb-orange-18);
  border-left: 2px solid var(--jb-orange);
  color: var(--jb-white);
  font-weight: 600;
}
.nav-link--active:hover {
  background: var(--jb-orange-18);
  color: var(--jb-white);
}

/* CHANGED: auth link (Log Out) is no longer italic — that
   convention reads informal. Now it's just slightly dimmer. */
.nav-link--auth {
  opacity: 0.85;
  font-style: normal;
}
.nav-link--auth:hover { opacity: 1; }

/* CHANGED: divider colour from white-15% to lilac-25%. */
.nav-divider {
  height: 1px;
  background: var(--jb-lilac-25);
  margin: 16px 12px;
}

/* NEW: icon utility for nav links.
   Icons are inline SVGs — apply this class to the <svg>:
     <svg class="nav-icon" viewBox="0 0 24 24">…</svg> */
.nav-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* NEW: Ascent VIP upsell card — a special nav item that
   stands out as a paid offer. Apply:
     <a class="nav-vip" href="…">
       <div class="nav-vip__title">Ascent VIP</div>
       <div class="nav-vip__blurb">Unlock 1:1 strategy hours.</div>
       <div class="nav-vip__cta">Upgrade →</div>
     </a> */
.nav-vip {
  margin-top: 6px;
  padding: 12px;
  background: linear-gradient(135deg,
    rgba(244, 110, 35, 0.15),
    rgba(244, 110, 35, 0.05));
  border: 1px solid var(--jb-orange-40);
  border-radius: var(--jb-radius-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-vip:hover {
  background: linear-gradient(135deg,
    rgba(244, 110, 35, 0.22),
    rgba(244, 110, 35, 0.08));
}
.nav-vip__title {
  font-size: 12px;
  color: var(--jb-white);
  font-weight: 700;
}
.nav-vip__blurb {
  font-size: 10px;
  color: var(--jb-lilac);
  line-height: 1.4;
  font-weight: 400;
}
.nav-vip__cta {
  font-size: 10px;
  color: var(--jb-orange);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* NEW: user chip pinned to the bottom of the sidebar.
   Apply to a wrapper at the end of the sidebar. */
.nav-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-user__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--jb-lilac);
  color: var(--jb-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-user__info { flex: 1; min-width: 0; }
.nav-user__name {
  font-size: 12px;
  color: var(--jb-white);
  font-weight: 600;
}
.nav-user__action {
  font-size: 10px;
  color: var(--jb-lilac);
  font-weight: 400;
}

/* ── Main content (default) ──────────────────────────────── */
/* CHANGED:
   - Background from white-to-lavender gradient to flat warm cream
     (#FAF8F5). Premium products use restraint, not gradients.
   - Padding from 40px to 32px 36px (matches mockup proportion)
   - Added gap: 22px so sections space themselves consistently
     without manual margin-bottom on every child */
.content {
  flex: 1;
  min-width: 0;
  padding: 32px 36px;
  overflow-y: auto;
  background: var(--jb-cream);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: var(--jb-font);
}

/* CHANGED:
   - h1 colour from #2d0060 to brand-spec #4C2669
   - Font-size 26px (mockup spec), weight 700, tight letter-spacing
   - Removed default margin-top — gap handles spacing now */
.content h1 {
  font-family: var(--jb-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--jb-purple);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* CHANGED:
   - Subheading colour from #666 grey to true black at 1.55 line-height
     (better readability, matches body copy in mockups)
   - Font-size from 16px to 13px (was running too large)
   - Max-width added to prevent endless lines on wide screens */
.subheading {
  color: var(--jb-black);
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 480px;
}

/* NEW: page header eyebrow label (orange, tracked-out caps).
   Sits above the h1. Apply:
     <div class="content-eyebrow">The Launchpad Learning Hub</div> */
.content-eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: var(--jb-orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* NEW: page header divider — the thin rule under the title block.
   Wrap the eyebrow + h1 + subheading in <header class="content-header">. */
.content-header {
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--jb-purple-15);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

/* NEW: bolded purple keyword used inline in body copy.
   Apply: <span class="keyword">Waterfall Methodology</span> */
.keyword {
  color: var(--jb-purple);
  font-weight: 700;
}

/* ── Main content (centred — used on community & upgrade) ── */
/* CHANGED:
   - align-items from flex-start to center (true centring)
   - Padding increased on top so centred content has breathing room */
.content--centred {
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
}

/* ── Cards ───────────────────────────────────────────────── */
/* CHANGED:
   - Box-shadow lightened. Old: rgba(0,0,0,0.08) — too dark and grey.
     New: brand-tinted purple shadow at 5% opacity — warmer, premium.
   - Added 0.5px border in purple-15 — gives cards definition without
     a visible black line.
   - Border-radius unchanged at 12px (close enough to mockup spec).
   - Hover lift reduced from 4px to 1px (more restrained). */
.card {
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-md);
  padding: 25px;
  box-shadow: var(--jb-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-1px);
  box-shadow: var(--jb-shadow-md);
}

/* CHANGED:
   - Card heading colour from #2d0060 to brand-spec #4C2669
   - Font weight bumped to 700 explicit
   - Font-family inherited from body now */
.card h2,
.card h3 {
  font-family: var(--jb-font);
  margin-top: 0;
  color: var(--jb-purple);
  font-weight: 700;
}

/* CHANGED:
   - Card link colour aligned to brand purple
   - Underline removed by default (cleaner), shown on hover */
.card a {
  color: var(--jb-purple);
  text-decoration: none;
  font-weight: 500;
}
.card a:hover { text-decoration: underline; }

.card--large { margin-bottom: 30px; }

.plain-list { list-style: none; padding: 0; margin: 0; }

/* CHANGED: plain-list separator from grey to purple-10 */
.plain-list li {
  padding: 8px 0;
  border-bottom: 0.5px solid var(--jb-purple-10);
  font-size: 13px;
  color: var(--jb-black);
}
.plain-list li:last-child { border-bottom: none; }

/* ── Module grid ─────────────────────────────────────────── */
/* UNCHANGED structurally — still flex-wrap with 250px basis.
   The cards inside get the new look from .card above. */
.module-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.module-grid .card { flex: 1 1 250px; }

/* ── Progress bar ────────────────────────────────────────── */
/* CHANGED:
   - Track background from #eee grey to brand lilac #DED5E8
   - Fill gradient REMOVED — now solid orange #F46E23
     (orange fill on lilac track is the brand-aligned combo)
   - Height reduced from 12px to 5px (more refined, mockup-spec)
   - Border-radius adjusted accordingly */
.progress-bar {
  height: 5px;
  background: var(--jb-lilac);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--jb-orange);
  border-radius: 3px;
  transition: width 0.6s ease;
}

/* ── Hero (community page) ───────────────────────────────── */
/* CHANGED:
   - Removed flex-direction column on .hero — content layout now
     handled by inner cards
   - Max-width increased to 620px to fit the gateway card
   - h1 size from 36px to 24px (mockup spec), tighter line-height
   - Subheading max-width raised to 480px */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
.hero h1 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  color: var(--jb-purple);
  line-height: 1.25;
}
.hero .subheading {
  margin: 0 0 32px;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.6;
}

/* ── CTA Button (community page) ─────────────────────────── */
/* CHANGED — major:
   - Background from purple gradient to flat brand red #E62C2C
     (red is reserved for primary actions per the spec)
   - Font-size from 20px to 14px (less shouty, more premium)
   - Padding reduced from 24px 56px to 16px 32px
   - Border-radius from 16px to 8px
   - Box-shadow tinted red instead of purple
   - Pulse animation REMOVED — felt urgent/desperate.
     Premium products use stillness, not pulse.
   - Hover scale removed; just a 2px lift */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--jb-red);
  color: var(--jb-white);
  text-decoration: none;
  font-family: var(--jb-font);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(230, 44, 44, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.02em;
}
.cta-button:hover {
  transform: translateY(-2px);
  background: var(--jb-red-hover);
  box-shadow: 0 6px 16px rgba(230, 44, 44, 0.35);
}
.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(230, 44, 44, 0.25);
}
.cta-arrow {
  font-size: 16px;
  transition: transform 0.15s ease;
}
.cta-button:hover .cta-arrow { transform: translateX(3px); }

/* REMOVED: @keyframes pulse — no longer used.
   If you have other elements using this animation,
   add them here, otherwise it's deleted. */

/* ── Settings card (account settings page) ──────────────── */
/* UNCHANGED structurally. Tweaks below. */
.settings-wrapper {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.settings-header { text-align: center; }

/* CHANGED: settings h1 size aligned with .content h1 */
.settings-header h1 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: var(--jb-purple);
}

/* CHANGED:
   - Shadow tinted brand-purple
   - Border added for definition
   - Padding kept generous since this is a focused form */
.settings-card {
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-lg);
  padding: 40px 44px;
  box-shadow: var(--jb-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group { display: flex; flex-direction: column; gap: 8px; }

/* CHANGED:
   - Label colour aligned to brand purple
   - Letter-spacing reduced slightly (0.6px → 0.08em) */
.field-group label {
  font-family: var(--jb-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--jb-purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CHANGED:
   - Border colour from light purple #e8d5ff to lilac-based
   - Background from #fdfaff to cream — matches page bg until focus
   - Focus ring colour aligned to brand purple
   - Focus ring opacity raised slightly for visibility */
.field-group input {
  font-family: var(--jb-font);
  padding: 12px 14px;
  border: 1.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-sm);
  font-size: 14px;
  color: var(--jb-black);
  background: var(--jb-cream);
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.field-group input:focus {
  border-color: var(--jb-purple);
  background: var(--jb-white);
  box-shadow: 0 0 0 3px rgba(76, 38, 105, 0.1);
}

/* CHANGED: divider colour from #f0e6ff to purple-10 */
.field-divider {
  height: 1px;
  background: var(--jb-purple-10);
}

.form-message {
  font-size: 13px;
  min-height: 18px;
  text-align: center;
  font-weight: 500;
}
/* CHANGED: success/error colours kept but cleaner hex values */
.form-message.success { color: var(--jb-success); }
.form-message.error   { color: var(--jb-red); }

/* CHANGED — major:
   - Save button background from purple gradient to flat brand red
     (matches CTA button — primary actions are red)
   - Letter-spacing tightened
   - Hover lift reduced */
.save-button {
  font-family: var(--jb-font);
  background: var(--jb-red);
  color: var(--jb-white);
  border: none;
  padding: 14px;
  border-radius: var(--jb-radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 12px rgba(230, 44, 44, 0.25);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: 0.02em;
}
.save-button:hover {
  transform: translateY(-1px);
  background: var(--jb-red-hover);
  box-shadow: 0 6px 16px rgba(230, 44, 44, 0.3);
}
.save-button:active { transform: translateY(0); }
.save-button:disabled {
  background: #CCCCCC;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* ── Store (upgrade page) ────────────────────────────────── */
.store-wrapper {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.store-header { text-align: center; }

/* CHANGED:
   - Tagline font kept as Playfair (fine, italic editorial accent)
     BUT colour shifted from #c9952a gold to brand orange #F46E23
     (gold is off-palette; orange is on-brand and reads similar)
   - Letter-spacing increased to feel editorial */
.tagline {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--jb-orange);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* CHANGED: store h1 aligned to global h1 spec */
.store-header h1 {
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--jb-purple);
}
.store-header .subheading { max-width: 460px; }

/* CHANGED — major:
   - Top purple border REMOVED — felt heavy and dated.
     Replaced with a clean 0.5px purple-15 all-round border.
   - Box-shadow tinted brand purple instead of generic
   - Gap reduced from 28px to 20px (mockup proportion)
   - If you want the "most popular" tier emphasis, use the new
     class .module-card--featured (defined below). */
.module-card {
  width: 100%;
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-md);
  padding: 28px 32px;
  box-shadow: var(--jb-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* NEW: featured tier emphasis (e.g. "Most Popular" Mastermind).
   Apply alongside .module-card. */
.module-card--featured {
  border: 2px solid var(--jb-orange);
  box-shadow: var(--jb-shadow-lg);
  position: relative;
}

/* CHANGED:
   - Locked badge background from #f3e8ff to brand lilac
   - Text already brand purple (correct) but now uses token */
.module-locked-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--jb-lilac);
  color: var(--jb-purple);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.module-card-body { display: flex; flex-direction: column; gap: 8px; }

/* CHANGED:
   - Module label colour from #aaa to a brand-tinted muted purple
     (was reading as inactive grey, now reads as quiet brand) */
.module-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--jb-purple);
  opacity: 0.7;
  margin: 0;
}

/* CHANGED: title colour to brand purple, font weight bumped */
.module-title {
  font-size: 20px;
  color: var(--jb-purple);
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}

/* CHANGED:
   - Cost colour to brand purple
   - Font-size from 28px to 24px (mockup proportion) */
.module-cost {
  font-size: 24px;
  font-weight: 700;
  color: var(--jb-purple);
  margin: 4px 0 0;
}

/* CHANGED — major:
   - Unlock button background from purple gradient to flat brand red
     (same logic as save-button and cta-button — primary action)
   - Padding adjusted to match other buttons
   - Hover behaviour tightened */
.unlock-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--jb-red);
  color: var(--jb-white);
  text-decoration: none;
  font-family: var(--jb-font);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--jb-radius-sm);
  box-shadow: 0 4px 12px rgba(230, 44, 44, 0.25);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: 0.02em;
}
.unlock-button:hover {
  transform: translateY(-1px);
  background: var(--jb-red-hover);
  box-shadow: 0 6px 16px rgba(230, 44, 44, 0.35);
}
.btn-arrow {
  font-size: 16px;
  transition: transform 0.15s;
}
.unlock-button:hover .btn-arrow { transform: translateX(3px); }

/* ── AI Coach chat ───────────────────────────────────────── */
/* UNCHANGED structurally — flex column, scrollable messages,
   fixed input row at bottom. Only colours/borders updated. */
.ai-coach-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-md);
  padding: 24px;
  box-shadow: var(--jb-shadow-sm);
}

/* CHANGED:
   - Border-bottom colour from #f0e6ff to purple-10
   - Header h3 font-size from 18px to 14px (less heavy) */
.ai-coach-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--jb-purple-10);
}
.ai-coach-header h3 {
  margin: 0;
  font-size: 14px;
  color: var(--jb-purple);
  font-weight: 700;
}
.ai-coach-avatar { font-size: 22px; }

.ai-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 8px;
  min-height: 0;
}

/* CHANGED:
   - Message font-size from 14px to 13px
   - Border-radius softened (asymmetric, more chat-app-like)
   - Line-height kept at 1.55 for readability */
.ai-message {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: var(--jb-radius-md);
  line-height: 1.55;
  font-size: 13px;
  font-family: var(--jb-font);
}
.ai-message p { margin: 0; }

/* CHANGED:
   - Bot message bg from #f0e6ff to brand lilac #DED5E8
   - Bot text from #3d0080 to true black (better contrast on lilac) */
.ai-message--bot {
  background: var(--jb-lilac);
  color: var(--jb-black);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* CHANGED:
   - User message bg already purple — now uses brand token */
.ai-message--user {
  background: var(--jb-purple);
  color: var(--jb-white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-message--loading {
  background: var(--jb-lilac);
  color: var(--jb-purple);
  opacity: 0.7;
  align-self: flex-start;
  font-style: italic;
}

.ai-input-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 0.5px solid var(--jb-purple-10);
}

/* CHANGED:
   - Input border colour aligned with form fields above
   - Focus ring added (consistent with .field-group input) */
.ai-input-row input {
  font-family: var(--jb-font);
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-sm);
  font-size: 13px;
  color: var(--jb-black);
  background: var(--jb-white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ai-input-row input:focus {
  border-color: var(--jb-purple);
  box-shadow: 0 0 0 3px rgba(76, 38, 105, 0.1);
}

/* CHANGED:
   - Send button bg from purple to brand red (primary action)
   - Hover state aligned with other red buttons */
.ai-input-row button {
  font-family: var(--jb-font);
  background: var(--jb-red);
  color: var(--jb-white);
  border: none;
  padding: 12px 22px;
  border-radius: var(--jb-radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.ai-input-row button:hover { background: var(--jb-red-hover); }
.ai-input-row button:disabled {
  background: #CCCCCC;
  cursor: not-allowed;
}

/* ============================================================
   ── NEW COMPONENTS ──────────────────────────────────────────
   The classes below are NEW additions to support the redesigned
   dashboard, journey cards, commitments panel, and community
   gateway. They don't replace anything — they're new tools you
   can use in your .hbs templates.
   ============================================================ */

/* ── Stat block (used in page header right-side, e.g. 62%) ── */
.stat-block { text-align: right; flex-shrink: 0; }
.stat-block__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--jb-purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}
.stat-block__value {
  font-size: 30px;
  font-weight: 700;
  color: var(--jb-purple);
  line-height: 1;
  margin-top: 6px;
}
.stat-block__unit {
  font-size: 18px;
  color: var(--jb-orange);
}

/* ── Commitments panel (live AI-generated tasks) ─────────── */
.commitments {
  background: var(--jb-white);
  border: 1.5px solid var(--jb-purple);
  border-radius: var(--jb-radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  position: relative;
  box-shadow: var(--jb-shadow-md);
}
.commitments__pill {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--jb-purple);
  color: var(--jb-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 10px;
}
.commitments__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--jb-radius-md);
  background: linear-gradient(135deg, var(--jb-purple), var(--jb-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--jb-white);
}
.commitments__body { flex: 1; padding-top: 4px; }
.commitments__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.commitments__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--jb-purple);
}
.commitments__source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: var(--jb-purple);
  background: var(--jb-lilac);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.commitments__source-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--jb-purple);
}
.commitments__blurb {
  font-size: 12px;
  color: var(--jb-black);
  line-height: 1.55;
  margin-bottom: 14px;
}
.commitments__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  list-style: none;
  padding: 0;
}
.commitment {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--jb-cream);
  border-radius: var(--jb-radius-sm);
}
.commitment--next { border-left: 3px solid var(--jb-orange); }
.commitment__check {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid var(--jb-purple);
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  transition: background 0.15s;
}
.commitment__check:checked {
  background: var(--jb-purple);
}
.commitment__text {
  flex: 1;
  font-size: 12px;
  color: var(--jb-black);
}
.commitment__due {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.commitment__due--urgent { color: var(--jb-orange); }
.commitment__due--later { color: var(--jb-purple); opacity: 0.7; font-weight: 600; }
.commitments__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.commitments__secondary {
  font-size: 11px;
  color: var(--jb-purple);
  font-weight: 500;
  opacity: 0.7;
  text-decoration: none;
}
.commitments__secondary:hover { opacity: 1; }

/* ── Resume strip (secondary action) ─────────────────────── */
.resume-strip {
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: var(--jb-shadow-sm);
}
.resume-strip__body { flex: 1; }
.resume-strip__eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: var(--jb-orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.resume-strip__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--jb-purple);
  margin: 0 0 4px;
}

/* ── Outline button (secondary action variant) ───────────── */
.btn-outline {
  font-family: var(--jb-font);
  background: transparent;
  color: var(--jb-purple);
  border: 1.5px solid var(--jb-purple);
  padding: 11px 22px;
  border-radius: var(--jb-radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover {
  background: var(--jb-purple);
  color: var(--jb-white);
}

/* ── Journey cards (Completed / Current / Next) ──────────── */
.journey { display: flex; flex-direction: column; gap: 14px; }
.journey__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.journey__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--jb-purple);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.journey__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.journey-card {
  border-radius: var(--jb-radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.journey-card--completed,
.journey-card--current {
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  box-shadow: var(--jb-shadow-sm);
}
.journey-card--completed:hover,
.journey-card--current:hover {
  transform: translateY(-1px);
  box-shadow: var(--jb-shadow-md);
}
.journey-card--locked { background: var(--jb-lilac); }

/* ── Responsive ──────────────────────────────────────────── */
/* CHANGED: tightened breakpoints, kept the principle. */
@media (max-width: 1024px) {
  .journey__grid { grid-template-columns: 1fr 1fr; }
  .journey__grid > .journey-card:last-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  #app-root { flex-direction: column; }
  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    overflow-y: visible;
  }
  .content { padding: 24px 20px; }
  .content-header { flex-direction: column; align-items: flex-start; }
  .stat-block { text-align: left; }
  .commitments { flex-direction: column; gap: 16px; }
  .resume-strip { flex-direction: column; align-items: flex-start; gap: 14px; }
  .journey__grid { grid-template-columns: 1fr; }
  .journey__grid > .journey-card:last-child { grid-column: auto; }
}

/* ============================================================
   END OF FILE
   ============================================================
   ── MIGRATION CHECKLIST ───────────────────────────────────
   Once you swap this file in, audit each page:

   1. Sidebar
      - Brand wordmark should now read in Montserrat (no script).
      - Active item should have orange left bar.
      - If you want the eyebrow ("EXPERIENCE") under the wordmark,
        wrap brand-name in <div class="brand-block"> and add a
        sibling <div class="brand-qualifier">Experience</div>.

   2. Page header
      - Each page should have:
          <header class="content-header">
            <div>
              <div class="content-eyebrow">…</div>
              <h1>…</h1>
              <p class="subheading">…</p>
            </div>
            <div class="stat-block">…</div>  (optional)
          </header>

   3. Buttons
      - Primary actions are now red (.cta-button, .save-button,
        .unlock-button, .ai-input-row button).
      - Secondary actions can use the new .btn-outline class.

   4. Cards
      - Existing .card markup will pick up new styles automatically.
      - The featured tier on the upgrade page can use
        .module-card--featured for the orange-bordered emphasis.

   5. Removed
      - Pacifico cursive — no longer loaded
      - @keyframes pulse — animation removed from CTA
      - White-to-lavender gradient on .content
      - #6720b3 / #8e44ad / #c9952a colours — replaced with brand tokens

   Anything I haven't migrated yet (e.g. specific markup changes)
   we can address page-by-page.
   ============================================================ */

/* ============================================================
   Ascent VIP Page
   ============================================================ */

.ascent-wrapper {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.ascent-hero {
  background: linear-gradient(135deg, #4C2669 0%, #6B3589 100%);
  border-radius: 14px;
  padding: 48px 56px;
  color: white;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(76, 38, 105, 0.25);
}
.ascent-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,110,35,0.25), transparent 70%);
}
.ascent-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,110,35,0.15), transparent 70%);
}
.ascent-hero > * { position: relative; z-index: 1; }

.ascent-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(244, 110, 35, 0.2);
  border: 1px solid rgba(244, 110, 35, 0.4);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #FFB890;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ascent-eyebrow::before { content: '✦'; color: #F46E23; }

.ascent-hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: white;
}
.ascent-hero h1 .accent { color: #F46E23; font-style: italic; }

.ascent-hero .lede {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 28px;
  max-width: 520px;
}
.ascent-hero .lede strong { color: white; font-weight: 600; }

.application-only {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.pillars-section {
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  border-radius: 14px;
  padding: 40px 48px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(76,38,105,0.06);
}

.pillars-intro { text-align: center; margin-bottom: 36px; }
.pillars-intro .label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--jb-orange);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pillars-intro h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--jb-purple);
  margin: 0 0 10px;
  line-height: 1.3;
}
.pillars-intro p {
  font-size: 14px;
  color: var(--jb-black);
  opacity: 0.75;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 520px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.pillar-card {
  padding: 28px 24px;
  background: var(--jb-cream);
  border: 0.5px solid var(--jb-purple-10);
  border-radius: 12px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4C2669, #6B3589);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pillar-icon.orange { background: linear-gradient(135deg, #F46E23, #FF8B4A); }

.pillar-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--jb-purple);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.pillar-card .subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--jb-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--jb-black);
  opacity: 0.8;
  margin: 0;
}

.included-section {
  padding: 24px 28px;
  background: rgba(76,38,105,0.04);
  border-radius: 12px;
  border-left: 3px solid var(--jb-purple);
}
.included-section h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--jb-purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--jb-black);
}
.included-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--jb-orange); }

.cta-section {
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  border-radius: 14px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(76,38,105,0.06);
}
.cta-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--jb-purple);
  margin: 0 0 12px;
}
.cta-section p {
  font-size: 14px;
  color: var(--jb-black);
  opacity: 0.75;
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 480px;
}

.cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--jb-purple);
  opacity: 0.6;
}
.cta-meta .divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--jb-purple);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .ascent-hero { padding: 36px 28px; }
  .ascent-hero h1 { font-size: 24px; }
  .pillars-section { padding: 28px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .included-list { grid-template-columns: 1fr; }
  .cta-section { padding: 28px 24px; }
}

/* ============================================================
   Student Diagnostics Page
   ============================================================ */

.diagnostic-form-container { max-width: 680px; margin: 0 auto; }

.step-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.step-label { font-size: 10px; font-weight: 600; color: var(--jb-orange); text-transform: uppercase; letter-spacing: 0.14em; }
.step-title-label { font-size: 11px; color: var(--jb-purple); opacity: 0.7; font-weight: 600; }

.step-progress { width: 100%; height: 4px; background: var(--jb-lilac); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.step-progress-fill { height: 100%; width: 20%; background: var(--jb-purple); border-radius: 3px; transition: width 0.4s ease; }

.step-labels { display: flex; justify-content: space-between; margin-bottom: 28px; font-size: 9px; color: var(--jb-purple); opacity: 0.6; letter-spacing: 0.04em; font-weight: 600; }
.step-labels .active-label { opacity: 1; color: var(--jb-purple); }

.form-step { display: none; animation: fadeIn 0.3s ease-in-out; }
.form-step.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.step-title { font-size: 17px; font-weight: 700; color: var(--jb-purple); margin: 0 0 6px; }
.step-intro { font-size: 12px; color: var(--jb-black); opacity: 0.7; line-height: 1.5; margin: 0 0 24px; }

.section-heading { font-size: 13px; font-weight: 700; color: var(--jb-purple); margin: 28px 0 16px; padding-bottom: 8px; border-bottom: 0.5px solid var(--jb-purple-10); }
.section-heading:first-of-type { margin-top: 0; }

.question-group { margin-bottom: 20px; }
.question-group label { display: block; font-size: 13px; font-weight: 600; color: var(--jb-purple); margin-bottom: 8px; line-height: 1.4; }
.question-group textarea,
.question-group input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-sm);
  font-size: 13px;
  color: var(--jb-black);
  background: var(--jb-cream);
  outline: none;
  resize: vertical;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  font-family: var(--jb-font);
  line-height: 1.55;
}
.question-group textarea { min-height: 80px; }
.question-group textarea:focus,
.question-group input[type="text"]:focus {
  border-color: var(--jb-purple);
  background: var(--jb-white);
  box-shadow: 0 0 0 3px rgba(76, 38, 105, 0.1);
}
.question-group input::placeholder,
.question-group textarea::placeholder { color: var(--jb-purple); opacity: 0.4; }

.input-group { display: flex; flex-direction: column; gap: 10px; }
.input-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--jb-black);
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-sm);
  background: var(--jb-cream);
  transition: background 0.15s, border-color 0.15s;
  margin: 0;
}
.input-group label:hover { background: var(--jb-lilac); border-color: var(--jb-purple); }
.input-group input[type="radio"],
.input-group input[type="checkbox"] { accent-color: var(--jb-purple); width: 16px; height: 16px; flex-shrink: 0; }

.form-navigation { display: flex; gap: 10px; margin-top: 28px; padding-top: 20px; border-top: 0.5px solid var(--jb-purple-10); }

.btn-back {
  background: transparent;
  color: var(--jb-purple);
  border: 1.5px solid var(--jb-purple);
  padding: 11px 22px;
  border-radius: var(--jb-radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: var(--jb-font);
}
.btn-back:hover { background: var(--jb-purple); color: var(--jb-white); }

.btn-next {
  margin-left: auto;
  background: var(--jb-red);
  color: var(--jb-white);
  border: none;
  padding: 11px 22px;
  border-radius: var(--jb-radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 44, 44, 0.25);
  transition: transform 0.15s;
  font-family: var(--jb-font);
  letter-spacing: 0.02em;
}
.btn-next:hover { transform: translateY(-1px); }

.btn-submit {
  margin-left: auto;
  background: var(--jb-red);
  color: var(--jb-white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--jb-radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(230, 44, 44, 0.3);
  transition: transform 0.15s;
  font-family: var(--jb-font);
}
.btn-submit:hover { transform: translateY(-2px); }

.success-message {
  display: none;
  background: var(--jb-white);
  border: 0.5px solid var(--jb-purple-15);
  border-radius: var(--jb-radius-md);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--jb-shadow-md);
}
.success-message h2 { font-size: 22px; color: var(--jb-purple); margin: 0 0 14px; }
.success-message p { font-size: 14px; color: var(--jb-black); line-height: 1.6; margin: 0 0 24px; }

.reflection-note {
  background: rgba(76,38,105,0.05);
  border-left: 3px solid var(--jb-purple);
  padding: 16px 20px;
  border-radius: var(--jb-radius-sm);
  font-size: 12px;
  line-height: 1.6;
  color: var(--jb-black);
  margin: 28px 0;
}
.reflection-note strong { color: var(--jb-purple); font-weight: 700; }
