/* ================================================================
   CEREVEATE TECH — SALES ENGINE
   Corporate Premium Design System
   ================================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@700;800;900&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Core palette */
  --navy:         #0a1628;
  --blue:         #1d4ed8;
  --blue-mid:     #2563eb;
  --blue-light:   #3b82f6;
  --blue-pale:    #eff6ff;
  --blue-border:  #bfdbfe;
  --blue-glow:    rgba(29,78,216,0.15);

  /* Surfaces */
  --bg:           #f7f8fc;
  --surface:      #ffffff;
  --surface-2:    #f1f4fb;
  --glass:        #ffffff;
  --glass-border: #e4e8f2;

  /* Text */
  --text:         #0d1b36;
  --text-muted:   #5a6882;
  --text-light:   #9aaabf;

  /* Accents */
  --green:        #059669;
  --green-pale:   #ecfdf5;
  --violet:       #6d28d9;
  --violet-pale:  #f5f3ff;
  --amber:        #d97706;
  --amber-pale:   #fffbeb;

  /* Borders */
  --border:       #e4e8f2;
  --border-dark:  #c8d0e4;

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(10,22,40,0.05);
  --shadow-sm:    0 2px 8px rgba(10,22,40,0.07);
  --shadow-md:    0 6px 24px rgba(10,22,40,0.09);
  --shadow-lg:    0 12px 48px rgba(10,22,40,0.12);
  --shadow-blue:  0 4px 20px rgba(29,78,216,0.2);
  --shadow-card:  0 2px 12px rgba(10,22,40,0.06), 0 0 0 1px rgba(10,22,40,0.04);

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Aliases (backward compat) */
  --radius:       var(--r);
  --radius-lg:    var(--r-lg);
  --radius-xl:    var(--r-xl);
  --transition:   all 0.18s ease;
  --blue-dim:     var(--blue-pale);
  --violet-dim:   var(--violet-pale);
  --bg-page:      var(--bg);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: 'Sora', sans-serif;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem,5.5vw,3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem,4vw,2rem);   font-weight: 800; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--text-muted); line-height: 1.7; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LAYOUT ── */
.container { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.page-wrap { min-height: 100vh; display: flex; flex-direction: column; padding-bottom: 4rem; }

/* ── TOPBAR ── */
.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-xs);
}
.top-bar .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1rem; color: var(--text); text-decoration: none;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 17px; height: 17px; stroke: #fff; stroke-width: 2.2; fill: none; }
.logo-text span { color: var(--blue); }

/* ── PROGRESS ── */
.progress-bar-wrap {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1.5rem;
}
.progress-track {
  height: 4px; background: var(--surface-2);
  border-radius: 99px; overflow: hidden; margin-bottom: 5px;
}
.progress-fill {
  height: 100%; background: var(--blue);
  border-radius: 99px; width: 0%;
  transition: width 0.55s cubic-bezier(.4,0,.2,1);
}
.progress-label { font-size: 0.7rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.04em; }

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.card-lg {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.card-blue {
  background: var(--blue);
  border-radius: var(--r-xl);
  padding: 2rem;
  color: #fff;
}

/* ── SECTION HEADING ── */
.section-header {
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p  { max-width: 440px; margin: 0 auto; font-size: 0.92rem; }

/* ── EYEBROW LABEL ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid var(--blue-border);
  border-radius: 99px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.1rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: var(--transition); text-decoration: none;
  white-space: nowrap; padding: 0.65rem 1.4rem; line-height: 1;
}
.btn-primary {
  background: var(--blue); color: #fff; box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: #1740b8; transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(29,78,216,0.32); color: #fff; text-decoration: none;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: var(--r-lg); }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: var(--r-lg); }

.btn-outline {
  background: transparent; border: 1.5px solid var(--border); color: var(--text);
}
.btn-outline:hover {
  border-color: var(--blue); color: var(--blue);
  background: var(--blue-pale); text-decoration: none;
}
.btn-ghost {
  background: transparent; color: var(--text-muted); padding: 0.5rem 1rem;
}
.btn-ghost:hover { color: var(--blue); background: var(--blue-pale); text-decoration: none; }

.btn-white {
  background: #fff; color: var(--blue); font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: var(--blue-pale); text-decoration: none; color: var(--blue); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #047857; text-decoration: none; color: #fff; }

.btn-full { width: 100%; }
.btn svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }

/* ── TAG / BADGE ── */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: 99px;
  padding: 0.25rem 0.75rem;
  background: var(--blue-pale); color: var(--blue); border: 1px solid var(--blue-border);
}
.tag-green  { background: var(--green-pale);  color: var(--green);  border-color: #a7f3d0; }
.tag-violet { background: var(--violet-pale); color: var(--violet); border-color: #ddd6fe; }
.tag-amber  { background: var(--amber-pale);  color: var(--amber);  border-color: #fde68a; }
.tag-gray   { background: var(--surface-2);   color: var(--text-muted); border-color: var(--border); }

/* ── ICON BOX ── */
.icon-box {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 1.8; fill: none; }
.icon-box-sm { width: 32px; height: 32px; border-radius: var(--r-sm); }
.icon-box-sm svg { width: 15px; height: 15px; }
.icon-box-lg { width: 56px; height: 56px; border-radius: var(--r-lg); }
.icon-box-lg svg { width: 26px; height: 26px; }
.icon-box-solid { background: var(--blue); }
.icon-box-solid svg { stroke: #fff; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 1.75rem 0; }

/* ── SPACERS ── */
.spacer-xs { height: 0.5rem; }
.spacer-sm { height: 0.75rem; }
.spacer    { height: 1.25rem; }
.spacer-lg { height: 2rem; }

/* ── AI GUIDE BUBBLE ── */
.ai-guide {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1rem 1.25rem;
  display: flex; gap: 12px; align-items: flex-start;
  margin: 1.25rem 0; box-shadow: var(--shadow-sm); position: relative;
}
.ai-guide.hidden { display: none; }
.ai-avatar {
  width: 34px; height: 34px; border-radius: 9px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-avatar svg { width: 16px; height: 16px; stroke: #fff; fill: none; }
.ai-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 3px;
}
#aiGuideMsg { font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.ai-actions { display: flex; gap: 8px; margin-top: 10px; }
.ai-guide-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; cursor: pointer;
  color: var(--text-light); font-size: 1rem; padding: 2px 5px;
  line-height: 1; border-radius: 4px;
}
.ai-guide-close:hover { background: var(--surface-2); color: var(--text); }

/* ── OPTION CARDS (profile Q&A) ── */
.options-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 460px) { .options-grid { grid-template-columns: 1fr; } }

.option-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.1rem 1rem;
  cursor: pointer; transition: var(--transition);
  text-align: left; display: flex; flex-direction: column;
  gap: 7px; color: var(--text); text-decoration: none;
  position: relative; overflow: hidden;
}
.option-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  background: var(--blue-pale); opacity: 0; transition: opacity 0.18s;
}
.option-card:hover::before, .option-card.selected::before { opacity: 1; }
.option-card:hover { border-color: var(--blue); text-decoration: none; color: var(--text); }
.option-card.selected {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
}
.option-card > * { position: relative; z-index: 1; }

.opt-icon-box {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--surface-2); display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.opt-icon-box svg { width: 17px; height: 17px; stroke: var(--blue); fill: none; }
.option-card.selected .opt-icon-box { background: var(--blue); border-color: var(--blue); }
.option-card.selected .opt-icon-box svg { stroke: #fff; }
.opt-label { font-weight: 700; font-size: 0.88rem; line-height: 1.3; }
.opt-sub, .opt-desc { font-size: 0.73rem; color: var(--text-muted); line-height: 1.4; }

/* ── STEP DOTS ── */
.step-dots {
  display: flex; gap: 7px; justify-content: center; margin-bottom: 2rem;
}
.dot {
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--border); transition: var(--transition);
}
.dot.active { width: 22px; background: var(--blue); }
.dot.done   { background: var(--blue-light); }

/* ── ANALYZING LOADER ── */
.analyzing-wrap {
  min-height: 70vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 1.5rem; padding: 2rem;
}
.analyzing-spinner {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--blue);
  animation: spin 0.85s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.analyzing-items {
  display: flex; flex-direction: column; gap: 8px;
  min-width: 260px; text-align: left;
}
.analyzing-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-muted);
  opacity: 0; transition: opacity 0.4s ease; padding: 0.45rem 0.75rem;
  border-radius: var(--r-sm); border: 1px solid transparent;
}
.analyzing-item.visible { opacity: 1; }
.analyzing-item.done {
  color: var(--green); border-color: #a7f3d0; background: var(--green-pale);
}
.item-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--border-dark); display: flex;
  align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0;
}
.item-check.done { border-color: var(--green); background: var(--green); color: #fff; }

/* ── REVEAL CARD ── */
.reveal-wrap { display: none; }
.reveal-wrap.show { display: block; animation: fadeUp 0.5s ease; }

.reveal-card {
  background: var(--surface); border: 2px solid var(--blue);
  border-radius: var(--r-xl); padding: 2.25rem 2rem;
  text-align: center; box-shadow: var(--shadow-blue);
  max-width: 480px; margin: 0 auto 1.5rem;
}
.reveal-icon-wrap {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--blue); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.25rem;
}
.reveal-icon-wrap svg { width: 36px; height: 36px; stroke: #fff; fill: none; }
.reveal-category-name {
  font-size: 1.6rem; font-weight: 900; color: var(--blue);
  font-family: 'Sora', sans-serif; margin-bottom: 3px;
}
.reveal-subtitle {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-muted); margin-bottom: 1rem;
}
.reveal-reasons {
  list-style: none; text-align: left; display: flex; flex-direction: column; gap: 8px;
  margin: 1rem 0;
}
.reveal-reasons li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.87rem; color: var(--text);
}
.reveal-reasons li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  flex-shrink: 0; margin-top: 2px;
}

/* ── PITCH BLOCKS ── */
.pitch-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.35rem 1.5rem;
  margin-bottom: 1rem; box-shadow: var(--shadow-xs);
}
.pitch-block-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.4rem;
}
.pitch-hook { font-size: 1.1rem; font-weight: 800; color: var(--text); font-family: 'Sora', sans-serif; line-height: 1.35; }
.pitch-stat { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.pitch-positioning { font-size: 0.97rem; font-weight: 600; color: var(--text); line-height: 1.5; }

.pitch-price-card {
  background: var(--navy); border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem; color: #fff; text-align: center; margin-bottom: 1rem;
}
.pitch-price-card .price-eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem;
}
.pitch-price-card .price-amount {
  font-family: 'Sora', sans-serif; font-size: 2.5rem;
  font-weight: 900; line-height: 1; margin-bottom: 0.25rem;
}
.pitch-price-card .price-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.price-tiers {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 1rem;
}
.price-tier {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm); padding: 0.4rem 0.9rem;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.price-tier strong { display: block; font-size: 1rem; color: #fff; }

/* ── STAT GRID ── */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px; margin: 1rem 0;
}
.stat-chip {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 0.9rem 0.75rem; text-align: center;
  box-shadow: var(--shadow-xs);
}
.stat-val { font-family: 'Sora', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--blue); display: block; }
.stat-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* ── PIPELINE ── */
.pipeline {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin: 1rem 0;
}
.pipeline-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 99px; padding: 0.3rem 0.85rem;
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted); white-space: nowrap;
}
.pipeline-step.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.pipeline-arrow { color: var(--text-light); font-size: 0.7rem; flex-shrink: 0; }

/* ── USE CASE GRID ── */
.use-case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; margin: 1rem 0; }
.use-case-btn {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 0.85rem 0.75rem; text-align: center;
  cursor: pointer; transition: var(--transition); font-size: 0.8rem; font-weight: 600; color: var(--text);
}
.use-case-btn:hover, .use-case-btn.active {
  border-color: var(--blue); background: var(--blue-pale); color: var(--blue);
}

/* ── PROOF CARDS ── */
.proof-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: var(--transition);
}
.proof-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.proof-card-top {
  padding: 1.25rem 1.25rem 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
}
.proof-card-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
}
.proof-card-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; }
.proof-impact .val { font-family: 'Sora', sans-serif; font-weight: 900; font-size: 0.95rem; color: var(--green); }
.proof-impact .lbl { font-size: 0.68rem; color: var(--text-muted); }
.proof-card-body { padding: 1rem 1.25rem 1.25rem; }
.proof-card-body h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.proof-tagline { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.65rem; }
.proof-tech {
  display: inline-block; font-size: 0.68rem; color: var(--text-light);
  background: var(--surface-2); border-radius: 5px;
  padding: 0.25rem 0.6rem; margin-bottom: 0.75rem; border: 1px solid var(--border);
}

/* ── OBJECTION BUTTONS ── */
.obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1.25rem 0; }
@media (max-width: 400px) { .obj-grid { grid-template-columns: 1fr; } }
.obj-btn {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 0.85rem 1rem;
  text-align: center; cursor: pointer; transition: var(--transition);
  font-size: 0.83rem; font-weight: 600; color: var(--text); font-family: 'Inter', sans-serif;
}
.obj-btn:hover, .obj-btn.active {
  border-color: var(--blue); background: var(--blue-pale); color: var(--blue);
}
.obj-response {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 1.25rem 1.5rem; margin-top: 1rem; box-shadow: var(--shadow-sm);
  display: none;
}
.obj-response.show { display: block; animation: fadeUp 0.3s ease; }
.obj-response-label {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--blue); margin-bottom: 0.4rem;
}
.obj-main { font-size: 0.93rem; font-weight: 600; color: var(--text); line-height: 1.55; margin-bottom: 0.75rem; }
.obj-followup {
  font-size: 0.83rem; color: var(--text-muted); line-height: 1.6;
  border-top: 1px solid var(--border); padding-top: 0.75rem; font-style: italic;
}

/* ── PATH CARDS (close.html) ── */
.path-card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--r-xl); padding: 1.75rem;
  cursor: pointer; transition: var(--transition);
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.path-card:hover, .path-card.selected {
  border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-2px);
}
.path-icon-box {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
}
.path-icon-box svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; }
.path-card:hover .path-icon-box, .path-card.selected .path-icon-box { background: var(--blue); }
.path-card:hover .path-icon-box svg, .path-card.selected .path-icon-box svg { stroke: #fff; }

/* ── SILENCE OVERLAY ── */
.silence-overlay {
  position: fixed; inset: 0; background: rgba(10,22,40,0.72);
  backdrop-filter: blur(5px); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.silence-overlay.hidden { display: none; }
.silence-box {
  background: var(--surface); border-radius: var(--r-xl);
  padding: 2.5rem 2rem; max-width: 360px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.silence-timer { font-family: 'Sora', sans-serif; font-size: 4rem; font-weight: 900; color: var(--blue); margin: 0.75rem 0; }

/* ── MODAL / BOTTOM SHEET ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,22,40,0.55);
  backdrop-filter: blur(4px); z-index: 150;
  display: flex; align-items: flex-end; justify-content: center;
}
.modal-overlay.hidden { display: none; }
.modal-sheet {
  background: var(--surface); border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 1.75rem 1.5rem 2rem;
  max-width: 540px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-handle { width: 38px; height: 4px; background: var(--border); border-radius: 99px; margin: 0 auto 1.5rem; }
.modal-step {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 0.9rem 1rem; border-radius: var(--r); margin-bottom: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
}
.modal-step-num {
  width: 26px; height: 26px; border-radius: 7px; background: var(--blue);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.modal-step-text strong { display: block; font-size: 0.88rem; color: var(--text); }
.modal-step-text span   { font-size: 0.78rem; color: var(--text-muted); }

/* ── FORM ── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.form-input, .form-select {
  width: 100%; padding: 0.68rem 1rem;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--r);
  background: var(--surface); color: var(--text); outline: none;
  transition: var(--transition);
  /* Force white background + dark text on ALL browsers/OS */
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6882' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-input:focus, .form-select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
}
/* Options inside every select — white bg, dark text */
select option {
  background: #ffffff !important;
  color: #0d1b36 !important;
  font-size: 0.88rem;
}
select option:checked, select option:hover {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
}

/* ── QUICK PITCH ── */
.qp-header {
  background: var(--navy); padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; color: #fff;
}
.qp-timer { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; }
.qp-slide { padding: 2rem 1.5rem; min-height: 240px; display: none; }
.qp-slide.active { display: block; animation: fadeUp 0.35s ease; }
.qp-slide h2 { margin-bottom: 0.85rem; }
.qp-progress-dots { display: flex; gap: 7px; justify-content: center; padding: 1.25rem 0; }
.qp-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); transition: var(--transition); }
.qp-dot.active { background: var(--blue); transform: scale(1.25); }
.qp-dot.done   { background: var(--green); }

/* ── NAV JUMP ── */
.nav-jump {
  display: flex; gap: 7px; flex-wrap: wrap; justify-content: center;
  padding: 0.85rem 1.25rem; border-top: 1px solid var(--border); background: var(--surface);
}
.nav-jump button {
  font-size: 0.72rem; padding: 0.3rem 0.8rem;
  border: 1px solid var(--border); border-radius: 99px;
  background: var(--surface); color: var(--text-muted);
  cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.nav-jump button:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

/* ── ENROLL SECTION ── */
.enroll-card {
  background: var(--navy); border-radius: var(--r-xl);
  padding: 2rem; color: #fff; text-align: center; margin-top: 2rem;
}
.enroll-card h2 { color: #fff; margin-bottom: 0.5rem; }
.enroll-card p  { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.enroll-card .form-input, .enroll-card .form-select {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.enroll-card .form-select option {
  background: #1a2e4a !important;
  color: #f1f5ff !important;
}
.enroll-card .form-input::placeholder { color: rgba(255,255,255,0.4); }
.enroll-card .form-label { color: rgba(255,255,255,0.75); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(29,78,216,0); }
  50%      { box-shadow: 0 0 0 8px rgba(29,78,216,0.1); }
}

.animate-fade-up { animation: fadeUp 0.45s ease both; }
.animate-fade-in { animation: fadeIn 0.35s ease both; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-blue   { color: var(--blue); }
.text-green  { color: var(--green); }
.font-bold   { font-weight: 700; }
.font-sora   { font-family: 'Sora', sans-serif; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.gap-xs      { gap: 5px; }
.gap-sm      { gap: 8px; }
.gap         { gap: 12px; }
.gap-lg      { gap: 20px; }
.w-full      { width: 100%; }
.hidden      { display: none !important; }
.mt-xs       { margin-top: 0.5rem; }
.mt-sm       { margin-top: 0.75rem; }
.mt          { margin-top: 1.25rem; }
.mt-lg       { margin-top: 2rem; }
.mb-sm       { margin-bottom: 0.75rem; }
.mb          { margin-bottom: 1.25rem; }

/* ── RESPONSIVE ── */
@media (max-width: 540px) {
  .card-lg { padding: 1.5rem 1.25rem; }
  h1 { font-size: 1.75rem; }
  .btn-xl { font-size: 0.95rem; padding: 0.85rem 1.75rem; }
}

/* ── COMPAT ANIMATIONS ── */
@keyframes slide-in-bottom {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes neon-pulse {
  0%,100% { box-shadow: 0 0 0 2px var(--blue); }
  50%      { box-shadow: 0 0 0 4px var(--blue-border); }
}
.neon-text { color: var(--blue); font-weight: 800; }
