/* ============================================================
   GLOW UP WORKS, Shared Stylesheet
   Covers: marketing pages, forms, admin, thanks page
   ============================================================ */

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

/* --- DESIGN TOKENS --- */
:root {
  /* Backgrounds */
  --bg:             #faf9f7;
  --bg2:            #ffffff;
  --bg3:            #f3f1ee;

  /* Text */
  --text:           #2d2a26;
  --white:          #2d2a26;          /* alias for legacy markup using var(--white) */
  --muted:          rgba(45,42,38,0.65);
  --faint:          rgba(45,42,38,0.40);

  /* Brand accents */
  --primary:        #E07A5F;          /* coral, CTAs, headings, badges */
  --primary-dim:    rgba(224,122,95,0.08);
  --primary-border: rgba(224,122,95,0.22);
  --primary-hover:  rgba(224,122,95,0.12);
  --secondary:      #6B9080;          /* sage green, growth, success */
  --secondary-dim:  rgba(107,144,128,0.08);
  --tertiary:       #D4A574;          /* warm gold, premium */
  --lime:           #E07A5F;          /* alias, maps old var(--lime) to coral */

  /* Borders & shadows */
  --border:         rgba(0,0,0,0.08);
  --border-hi:      rgba(0,0,0,0.14);
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.04);
  --shadow-md:      0 2px 8px rgba(0,0,0,0.07);
  --shadow-lg:      0 4px 16px rgba(0,0,0,0.08);

  /* Semantic */
  --success:        #4a8c5c;
  --warning:        #d4956a;
  --urgent:         #d94f4f;

  /* Status badge colors */
  --green:          #3d8b5e;
  --yellow:         #c4922a;
  --blue:           #3a7db8;
  --pink:           #c7506e;

  /* Radius */
  --radius:         0.625rem;
  --radius-lg:      0.875rem;
  --radius-xl:      1rem;

  /* Typography */
  --mono:           'DM Mono', monospace;
  --body:           'Instrument Sans', system-ui, sans-serif;

  /* Fluid type scale */
  --text-xs:        clamp(0.75rem, 1.5vw, 0.8125rem);
  --text-sm:        clamp(0.8125rem, 1.8vw, 0.9375rem);
  --text-base:      clamp(0.9375rem, 2vw, 1.0625rem);
  --text-lg:        clamp(1.0625rem, 2.2vw, 1.25rem);
  --text-xl:        clamp(1.25rem, 2.5vw, 1.5rem);
  --text-2xl:       clamp(1.5rem, 3vw, 2rem);
  --text-3xl:       clamp(2rem, 4vw, 2.5rem);

  /* Spacing */
  --space-xs:       0.25rem;
  --space-sm:       0.5rem;
  --space-md:       1rem;
  --space-lg:       1.5rem;
  --space-xl:       2rem;
  --space-2xl:      3rem;
  --space-3xl:      4rem;
}


/* --- BASE --- */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  min-height: 100vh;
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection {
  background: var(--primary-dim);
  color: var(--text);
}

::placeholder { color: rgba(45,42,38,0.35); }

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


/* --- NAVIGATION --- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
}

.nav-logo {
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(0,0,0,0.04);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 500;
}

.nav-cta {
  font-size: 13px;
  color: #fff;
  background: var(--primary);
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.9; text-decoration: none; }


/* --- HERO --- */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: #fff;
  background: var(--primary);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--body);
  font-size: clamp(28px, 5vw, 44px);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: var(--shadow-sm);
}

.hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  text-decoration: none;
}


/* --- SECTIONS --- */
.section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-align: center;
}

.section h2 {
  font-family: var(--body);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.section h2 span { color: var(--primary); }


/* --- TRACK CARDS (Homepage) --- */
.tracks {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.track-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.track-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.track-icon { font-size: 40px; margin-bottom: 16px; line-height: 1; }
.track-icon svg { width: 36px; height: 36px; stroke-width: 1.5; color: var(--primary); }

.track-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.track-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.track-price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  margin-top: 12px;
}


/* --- WHAT GRID (Business page) --- */
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.what-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 20px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.what-item:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}

.what-icon { font-size: 22px; margin-bottom: 10px; line-height: 1; }
.what-icon svg { width: 24px; height: 24px; stroke-width: 1.5; color: var(--primary); }
.what-title { font-size: 13px; color: var(--text); margin-bottom: 6px; font-weight: 600; }
.what-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }


/* --- STEPS --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--mono);
  font-size: 13px;
  color: #fff;
  background: var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.step-body { padding-top: 2px; }
.step-title { font-size: 14px; color: var(--text); margin-bottom: 4px; font-weight: 600; }
.step-text { font-size: 14px; color: var(--muted); line-height: 1.5; }
.step-text strong { color: var(--text); }


/* --- PRICING CARDS --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.price-card:hover { box-shadow: var(--shadow-md); }

.price-card.featured {
  border-color: var(--primary-border);
  position: relative;
  box-shadow: 0 2px 12px rgba(224,122,95,0.1);
}

.price-card.featured::before {
  content: 'Most Popular';
  font-family: var(--mono);
  font-size: 10px;
  color: #fff;
  background: var(--primary);
  padding: 3px 10px;
  border-radius: 10px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-name {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 500;
}

.price-amount {
  font-family: var(--mono);
  font-size: 34px;
  color: var(--text);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.price-amount sup {
  font-size: 17px;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}

.price-cadence {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  margin-bottom: 14px;
}

.price-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 16px;
}

.price-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 2;
}

.price-list li {
  font-size: 12px;
  color: var(--muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.price-list li::before {
  content: ',';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-family: var(--mono);
}

.price-list li.highlight { color: var(--text); }

.price-btn {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}

.price-btn:hover { opacity: 0.9; text-decoration: none; }

.price-btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary-border);
}

.price-btn-ghost:hover {
  background: var(--primary-dim);
}


/* --- ADD-ON CARD --- */
.addon-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.addon-left { flex: 1; min-width: 200px; }
.addon-right { flex: 2; min-width: 200px; }

.addon-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.addon-name { font-family: var(--mono); font-size: 13px; color: var(--primary); }
.addon-price { font-family: var(--mono); font-size: 26px; color: var(--text); font-weight: 700; margin-bottom: 8px; }
.addon-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.addon-list { list-style: none; }
.addon-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.4;
}
.addon-list li::before {
  content: ',';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-family: var(--mono);
}


/* --- SPECIAL TIERS (Pricing) --- */
.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.special-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}

.special-card.free-card {
  border-color: rgba(107,144,128,0.25);
}

.special-icon { font-size: 24px; margin-bottom: 10px; line-height: 1; }
.special-icon svg { width: 28px; height: 28px; stroke-width: 1.5; color: var(--primary); }
.special-who { font-size: 13px; color: var(--secondary); margin-bottom: 6px; font-weight: 600; }
.special-cost { font-family: var(--mono); font-size: 20px; color: var(--text); font-weight: 700; margin-bottom: 8px; }
.special-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.special-note { font-family: var(--mono); font-size: 10px; color: var(--faint); margin-top: 8px; }


/* --- CASE STUDY BOXES --- */
.case-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.case-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.case-title {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 10px;
}

.case-list { list-style: none; }
.case-list li {
  font-size: 14px;
  color: var(--muted);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.4;
}
.case-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 11px;
}


/* --- QUOTE BLOCK --- */
.quote-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.quote-text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.quote-text em { color: var(--primary); font-style: normal; }
.quote-author { font-family: var(--mono); font-size: 12px; color: var(--faint); }


/* --- PROOF / STATS (Homepage) --- */
.proof {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 80px;
  text-align: center;
}

.proof h2 {
  font-family: var(--body);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 600;
}

.proof-quote {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 8px;
}

.proof-author { font-size: 13px; color: var(--faint); }

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}


/* --- HOW IT WORKS (Homepage) --- */
.how {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.how h2 {
  font-family: var(--body);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}


/* --- FAQ (Pricing) --- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-a strong { color: var(--text); }
.faq-a a { color: var(--primary); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }


/* --- BOTTOM CTA --- */
.bottom-cta {
  text-align: center;
  padding: 60px 24px 80px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
}

.bottom-cta h2 {
  font-family: var(--body);
  font-size: 24px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 700;
}

.bottom-cta p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* --- FOOTER --- */
.footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 11px;
  color: var(--faint);
  line-height: 1.8;
}

.footer a { color: var(--faint); text-decoration: none; }
.footer a:hover { color: var(--muted); }


/* --- TEACH PAGE: Feature Hero + Meme Grid --- */
.feature-hero {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.feature-hero-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.feature-hero-title {
  font-family: var(--body);
  font-size: clamp(20px, 4vw, 28px);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.feature-hero-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-hero-body strong { color: var(--text); }

.feature-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  color: #fff;
  background: var(--secondary);
  padding: 4px 10px;
  border-radius: 10px;
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.meme-card {
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
}

.meme-grade {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 500;
}

.meme-ex {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.hero-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  margin-top: 14px;
}

.hero-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
}

.quote-source {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 6px;
}

/* --- TEACH PAGE: Pricing Block --- */
.pricing-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-row:last-child { border-bottom: none; padding-bottom: 0; }
.pricing-who { font-size: 14px; color: var(--text); font-weight: 500; }
.pricing-what { font-size: 13px; color: var(--muted); margin-top: 2px; }
.pricing-cost { font-family: var(--mono); font-size: 16px; color: var(--primary); font-weight: 700; white-space: nowrap; }
.pricing-note { font-family: var(--mono); font-size: 10px; color: var(--faint); margin-top: 4px; }


/* --- LIFE PAGE: Who Grid + Big Question --- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.who-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}

.who-icon { font-size: 28px; margin-bottom: 12px; }
.who-title { font-size: 13px; color: var(--primary); margin-bottom: 8px; font-weight: 600; }
.who-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

.big-question {
  background: var(--bg2);
  border: 1px solid var(--primary-border);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.big-q-text {
  font-family: var(--body);
  font-size: clamp(20px, 4vw, 30px);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.big-q-answer {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.big-q-answer strong { color: var(--text); }


/* --- HEALTH PAGE: Audience Split + Principle + Spotlight --- */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.audience-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.audience-panel.pro { border-color: var(--secondary-dim); }
.audience-icon { font-size: 32px; margin-bottom: 14px; }
.audience-name { font-size: 15px; color: var(--primary); margin-bottom: 8px; font-weight: 600; }
.audience-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }

.audience-list { list-style: none; }
.audience-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
}
.audience-list li:last-child { border-bottom: none; }
.audience-list li::before {
  content: ',';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-family: var(--mono);
}

.principle-box {
  background: var(--secondary-dim);
  border: 1px solid rgba(107,144,128,0.25);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.principle-icon { font-size: 32px; margin-bottom: 14px; }
.principle-title { font-size: 18px; color: var(--secondary); margin-bottom: 12px; font-weight: 700; }
.principle-body { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 520px; margin: 0 auto; }
.principle-body strong { color: var(--text); }

.spotlight-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.spotlight-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.spotlight-title {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.spotlight-title span { color: var(--primary); }
.spotlight-body { font-size: 14px; color: var(--muted); line-height: 1.7; }


/* --- CASES PAGE --- */
.case {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.case:hover { border-color: var(--primary-border); box-shadow: var(--shadow-md); }

.case-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.case-track {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.case-who { font-size: 19px; color: var(--text); font-weight: 600; line-height: 1.2; margin-bottom: 4px; }
.case-tagline { font-size: 14px; color: var(--muted); font-style: italic; }

.case-stat { text-align: right; flex-shrink: 0; }
.case-stat-num { font-family: var(--mono); font-size: 26px; color: var(--primary); font-weight: 700; line-height: 1; }
.case-stat-label { font-family: var(--mono); font-size: 10px; color: var(--faint); margin-top: 4px; }

.case-quote {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  padding: 16px 20px;
  background: var(--primary-dim);
  border-left: 2px solid var(--primary);
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}

.case-quote strong { color: var(--primary); font-style: normal; }

.case-findings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.finding {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.finding-icon { font-size: 18px; margin-bottom: 6px; }
.finding-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.finding-text strong { color: var(--text); }

.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.case-track-badge {
  font-family: var(--mono);
  font-size: 11px;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 10px;
}

.case-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.case-link:hover { opacity: 1; }

.disclaimer {
  text-align: center;
  padding: 0 24px 60px;
  max-width: 600px;
  margin: 0 auto;
}

.disclaimer p {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  line-height: 1.7;
}


/* ============================================================
   FORM COMPONENTS
   Used by: q/glow.html, q/thanks.html, 50+ client forms
   ============================================================ */

/* Form container */
.container {
  max-width: 640px;
  margin: 0 auto;
}

/* Form page body override (forms don't have nav) */
body.form-page { padding: 24px 16px; }

/* Badge */
.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: #fff;
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 24px;
}

/* Form headings */
.container h1,
h1.form-title {
  font-family: var(--body);
  font-size: 26px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
}

.subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Labels */
label {
  display: block;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 6px;
  margin-top: 24px;
  font-weight: 500;
}

.hint {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  padding: 14px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  background: var(--bg2);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

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

textarea {
  min-height: 80px;
  resize: vertical;
}

/* Track selector (glow.html) */
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

/* Form track cards (distinct from homepage .track-card in .tracks context) */
form .track-card,
.track-grid .track-card {
  padding: 20px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
  background: var(--bg2);
  box-shadow: none;
}

form .track-card:hover,
.track-grid .track-card:hover {
  border-color: var(--primary-border);
  background: var(--primary-dim);
  transform: none;
}

form .track-card.selected,
.track-grid .track-card.selected {
  border-color: var(--primary);
  background: var(--primary-dim);
}

form .track-card.selected .track-name,
.track-grid .track-card.selected .track-name {
  color: var(--primary);
}

input[name="track"] { display: none; }

/* Section titles (forms) */
.section-title {
  font-size: 13px;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--primary-border);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.form-section { display: none; }
.form-section.active { display: block; }
.always-visible { display: block; }

/* Submit button */
button[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 32px;
  padding: 16px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s;
}

button[type="submit"]:hover { opacity: 0.9; }

/* Callout */
.callout {
  margin-top: 32px;
  padding: 16px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.callout strong { color: var(--primary); }

/* Progress bar */
.progress {
  margin-top: 24px;
  margin-bottom: 8px;
  height: 3px;
  background: rgba(0,0,0,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.3s;
}

.progress-text {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}

/* Voice tip */
.voice-tip {
  max-width: 640px;
  margin: 24px auto 0;
  padding: 14px 20px;
  background: var(--secondary-dim);
  border: 1px solid rgba(107,144,128,0.2);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.voice-tip strong { color: var(--secondary); }

/* Privacy note */
.privacy-note {
  text-align: center;
  font-size: 11px;
  color: var(--faint);
  margin-top: 24px;
  line-height: 1.5;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}


/* ============================================================
   THANKS / CONFIRMATION PAGE
   ============================================================ */

body.thanks-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  min-height: 100vh;
}

.check-wrap {
  width: 80px;
  height: 80px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.check-wrap svg { stroke: var(--primary); }

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.15s ease both;
}

body.thanks-page h1 {
  font-family: var(--body);
  font-size: clamp(36px, 8vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
  animation: fadeUp 0.6s 0.25s ease both;
}

body.thanks-page h1 em {
  font-style: italic;
  color: var(--primary);
}

.sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.75;
  animation: fadeUp 0.6s 0.35s ease both;
}

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


/* ============================================================
   ADMIN PAGE
   ============================================================ */

/* Gate */
.gate {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate.off { display: none; }

.gate-box {
  text-align: center;
  max-width: 320px;
}

.gate-box h2 {
  font-family: var(--body);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.gate-in {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  padding: 14px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  background: var(--bg2);
  color: var(--text);
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}

.gate-in:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-dim); }

/* Admin layout */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
}

.wrap > h1 {
  font-family: var(--body);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 700;
}

/* Admin stats bar */
.stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.stats .stat {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  flex: 1;
  min-width: 140px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stats .stat .stat-n,
.stats .stat-n {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
}

.stats .stat .stat-l,
.stats .stat-l {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* Admin section headings */
.wrap h2 {
  font-family: var(--body);
  font-size: 16px;
  color: var(--primary);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

/* Admin tables */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

th {
  font-size: 10px;
  color: var(--faint);
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  color: var(--muted);
}

td:first-child { color: var(--text); font-weight: 500; }

/* Admin status badges */
.b-green  { background: rgba(61,139,94,0.1);  color: var(--green);  }
.b-yellow { background: rgba(196,146,42,0.1); color: var(--yellow); }
.b-blue   { background: rgba(58,125,184,0.1); color: var(--blue);   }
.b-pink   { background: rgba(199,80,110,0.1); color: var(--pink);   }
.b-lime   { background: rgba(224,122,95,0.1); color: var(--primary); }

.badge,
span.badge {
  font-family: var(--mono);
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
}

/* Admin links row */
.links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--primary);
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s;
  box-shadow: var(--shadow-sm);
}

.link:hover { border-color: var(--primary-border); text-decoration: none; }

/* Admin todo */
.todo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  font-size: 13px;
  color: var(--muted);
}

.todo-cb {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.todo-item.done {
  opacity: 0.4;
  text-decoration: line-through;
}


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

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .addon-card { flex-direction: column; gap: 16px; }
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

@media (max-width: 640px) {
  nav { padding: 0 16px; height: 48px; flex-wrap: wrap; }
  .nav-hamburger { display: block; }
  .nav-links { display: none; width: 100%; order: 3; flex-direction: column; gap: 0; padding: 8px 0; }
  .nav-links.nav-open { display: flex; }
  .nav-cta { order: 2; }
  .hero { padding: 56px 20px 48px; }
  .section { padding: 0 20px 56px; }
  .stats { flex-direction: column; }
  table { font-size: 11px; }
  .audience-split { grid-template-columns: 1fr; }
  .feature-hero { padding: 28px 22px; }
  .big-question { padding: 32px 22px; }
  .case { padding: 24px 20px; }
  .case-stat { display: none; }
}

@media (max-width: 480px) {
  .track-grid { grid-template-columns: 1fr; }
}

/* Lucide icon size class for icons that replaced inline emojis */
.emoji-icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; stroke-width: 2; }
