:root {
  --background: oklch(0.99 0.003 250);
  --foreground: oklch(0.20 0.03 258);
  --surface: oklch(0.985 0.005 250);
  --surface-elevated: oklch(1 0 0);
  --card: oklch(1 0 0);

  --primary: oklch(0.55 0.18 255);
  --primary-foreground: oklch(1 0 0);
  --primary-hover: oklch(0.48 0.19 255);
  --primary-soft: oklch(0.94 0.04 255);

  --muted: oklch(0.96 0.008 250);
  --muted-foreground: oklch(0.5 0.02 258);
  --accent: oklch(0.94 0.04 250);

  --border: oklch(0.9 0.01 250);
  --input: oklch(0.92 0.01 250);

  --brand-orange: oklch(0.68 0.19 47);
  --brand-orange-hover: oklch(0.62 0.19 44);
  --brand-orange-foreground: oklch(1 0 0);
  --navy: oklch(0.28 0.09 265);

  --dim-cost: oklch(0.30 0.10 262);
  --dim-time: oklch(0.42 0.15 258);
  --dim-trust: oklch(0.53 0.16 250);
  --dim-ai: oklch(0.63 0.14 243);

  --gradient-hero: linear-gradient(135deg, oklch(0.22 0.07 265) 0%, oklch(0.34 0.14 272) 55%, oklch(0.42 0.17 268) 100%);
  --gradient-score: linear-gradient(90deg, oklch(0.24 0.08 265) 0%, oklch(0.42 0.17 268) 100%);

  --shadow-card: 0 1px 2px oklch(0.2 0.03 258 / 0.06), 0 1px 3px oklch(0.2 0.03 258 / 0.08);
  --shadow-elevated: 0 10px 30px oklch(0.2 0.05 260 / 0.16);

  --destructive: oklch(0.55 0.2 25);

  --success-text: oklch(0.45 0.10 155); --success-soft: oklch(0.9 0.06 155);
  --warning-text: oklch(0.52 0.11 75);  --warning-soft: oklch(0.92 0.07 75);
  --danger-text: oklch(0.50 0.11 40);   --danger-soft: oklch(0.9 0.07 40);
  --critical-text: oklch(0.45 0.11 25); --critical-soft: oklch(0.87 0.07 25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  background: var(--surface);
  color: var(--foreground);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }

.app-shell { min-height: 100vh; display: flex; flex-direction: column; }

/* ---------- Header / Footer ---------- */
.app-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-elevated) 80%, transparent);
  backdrop-filter: blur(8px);
}
.app-header-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1.5rem;
  height: 4rem; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.brand-logo { height: 1.75rem; width: auto; display: block; }
.footer-logo { height: 1.1rem; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .name { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.brand-text .by { font-size: 0.75rem; color: var(--muted-foreground); }
.app-nav { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; }
.app-nav .nav-link { color: var(--muted-foreground); }
.app-nav .nav-link:hover { color: var(--foreground); }
.btn-nav-cta {
  border-radius: 0.5rem; background: var(--primary); color: #fff;
  padding: 0.5rem 1rem; font-weight: 500;
}
.btn-nav-cta:hover { background: var(--primary-hover); }

.app-footer { border-top: 1px solid var(--border); background: var(--surface); }
.app-footer-inner {
  max-width: 72rem; margin: 0 auto; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  font-size: 0.75rem; color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .app-footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-badges { display: flex; align-items: center; gap: 1rem; }
.footer-badges span { display: flex; align-items: center; gap: 0.35rem; }

/* ---------- Layout helpers ---------- */
.main-content { flex: 1; }
.container-lg { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 56rem; margin: 0 auto; padding: 2.5rem 1.5rem; }

/* ---------- Landing hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff; background: var(--gradient-hero);
}
.hero-inner { position: relative; max-width: 72rem; margin: 0 auto; padding: 6rem 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1);
  border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero h1 { font-size: 2.5rem; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; max-width: 48rem; margin: 0; }
.hero p { max-width: 42rem; margin-top: 1.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.85); }
.hero .fine { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 0.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.btn-orange {
  border-radius: 0.5rem; background: var(--brand-orange); color: var(--brand-orange-foreground);
  padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600; border: none;
  box-shadow: 0 10px 25px oklch(0.68 0.19 47 / 0.35); transition: transform 0.15s;
  display: inline-block;
}
.btn-orange:hover { background: var(--brand-orange-hover); transform: translateY(-2px); }
.btn-ghost-light {
  border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1);
  color: #fff; padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600; backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.hero-stats .num { font-size: 1.5rem; font-weight: 600; color: #fff; }

/* ---------- Cards / sections ---------- */
.section-alt { border-bottom: 1px solid var(--border); background: var(--surface-elevated); }
.section-pad { padding: 4rem 0; }
.section-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2.5rem; }
.section-head .rule { margin-top: 0.25rem; width: 0.25rem; height: 2.5rem; border-radius: 999px; background: var(--brand-orange); flex-shrink: 0; }
.section-head h2 { font-size: 1.5rem; font-weight: 600; margin: 0; }
.section-head p { max-width: 48rem; margin-top: 0.75rem; color: var(--muted-foreground); }

.grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.card { border: 1px solid var(--border); background: var(--card); border-radius: 0.75rem; padding: 1.5rem; box-shadow: var(--shadow-card); }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-elevated); }
.challenge-card { transition: transform 0.15s, box-shadow 0.15s; }
.challenge-tag { display: inline-block; border-radius: 0.375rem; padding: 0.25rem 0.65rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.challenge-card h3 { margin: 0.75rem 0 0; font-size: 1.05rem; font-weight: 600; }
.challenge-card .row { display: flex; align-items: center; gap: 0.75rem; }
.challenge-card p { margin-top: 0.6rem; font-size: 0.875rem; color: var(--muted-foreground); }

.why-section { padding: 4rem 0; }
.why-grid { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1.2fr 1fr; } }
.eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 0.5rem; }
.why-grid h2 { font-size: 1.75rem; font-weight: 600; margin: 0; }
.why-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9rem; }
.why-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.why-list .tick { flex-shrink: 0; margin-top: 0.15rem; width: 1.25rem; height: 1.25rem; border-radius: 999px; background: var(--brand-orange); color: #fff; font-size: 0.6rem; font-weight: 700; display: grid; place-items: center; }

.sample-card { border: 1px solid var(--border); background: var(--card); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-elevated); }
.sample-top { display: flex; align-items: center; justify-content: space-between; }
.sample-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.sample-score { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.25rem; }
.sample-score .n { font-size: 3.5rem; font-weight: 700; color: var(--brand-orange); }
.sample-score .d { font-size: 1.25rem; color: var(--muted-foreground); }
.sample-band { font-size: 0.875rem; font-weight: 500; color: oklch(0.62 0.22 25); margin-top: 0.25rem; }
.sample-bars { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.sample-bar-row .top { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 0.25rem; }
.sample-bar-track { height: 0.375rem; border-radius: 999px; background: var(--muted); overflow: hidden; }
.sample-bar-fill { height: 100%; border-radius: 999px; background: var(--gradient-score); }

/* ---------- Assessment shell ---------- */
.progress-wrap { border-bottom: 1px solid var(--border); background: var(--surface-elevated); }
.progress-inner { max-width: 72rem; margin: 0 auto; padding: 1rem 1.5rem; }
.progress-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.progress-track { height: 0.375rem; width: 100%; border-radius: 999px; background: var(--muted); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: var(--primary); transition: width 0.4s; }
.step-list { display: none; flex-wrap: wrap; gap: 0 1.5rem; margin-top: 0.75rem; font-size: 0.75rem; }
@media (min-width: 640px) { .step-list { display: flex; } }
.step-list span.current { font-weight: 600; color: var(--primary); }
.step-list span.done { color: var(--foreground); }
.step-list span.todo { color: var(--muted-foreground); }

.assessment-main { max-width: 56rem; margin: 0 auto; padding: 2.5rem 1.5rem; }

.eyebrow-primary { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 0.5rem; }
.page-title { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
@media (min-width: 640px) { .page-title { font-size: 2.25rem; } }
.page-lead { margin-top: 1rem; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: color-mix(in oklab, var(--foreground) 85%, transparent); }

.what-grid { margin-top: 2.5rem; }
.what-grid .label { margin-bottom: 1rem; font-size: 0.875rem; font-weight: 600; }
.dim-mini { display: flex; align-items: center; gap: 0.75rem; }
.dim-mini .num { width: 2rem; height: 2rem; border-radius: 0.5rem; background: var(--primary-soft); color: var(--primary); font-size: 0.875rem; font-weight: 600; display: grid; place-items: center; flex-shrink: 0; }
.dim-mini .title { font-weight: 600; }
.what-grid .card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

.callout {
  margin-top: 2rem; border-radius: 0.75rem; border: 1px solid color-mix(in oklab, var(--primary) 20%, transparent);
  background: color-mix(in oklab, var(--primary-soft) 60%, transparent); padding: 1rem; font-size: 0.875rem;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
}

.step-nav { margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.btn-back { border-radius: 0.5rem; border: 1px solid var(--input); background: var(--background); padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; }
.btn-back:hover { background: var(--accent); }
.btn-next { border-radius: 0.5rem; background: var(--brand-orange); color: var(--brand-orange-foreground); padding: 0.5rem 1.25rem; font-size: 0.875rem; font-weight: 600; border: none; }
.btn-next:hover { background: var(--brand-orange-hover); }
.btn-next[disabled], .btn-next[aria-disabled="true"] { background: var(--muted); color: var(--muted-foreground); cursor: not-allowed; }

/* ---------- Dimension question pages ---------- */
.dim-header { border-radius: 0.75rem; padding: 2rem; color: #fff; box-shadow: var(--shadow-elevated); }
.dim-header .badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; }
.dim-header .badge .dot { width: 0.375rem; height: 0.375rem; border-radius: 999px; background: #fff; }
.dim-header h1 { margin: 0.75rem 0 0; font-size: 1.875rem; font-weight: 600; }
.dim-header p { margin-top: 0.5rem; max-width: 42rem; color: rgba(255,255,255,0.85); }
.dim-header .hint { margin-top: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }

.questions { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.q-card { border: 1px solid var(--border); background: var(--card); border-radius: 0.75rem; padding: 1.5rem; box-shadow: var(--shadow-card); }
.q-head { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.q-num { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 0.5rem; display: grid; place-items: center; font-size: 0.75rem; font-weight: 600; }
.q-text { font-size: 1rem; font-weight: 500; line-height: 1.6; margin: 0; }
.q-options { display: grid; gap: 0.5rem; }
.q-option {
  display: flex; align-items: center; gap: 0.75rem; border-radius: 0.5rem; border: 1px solid var(--input);
  background: var(--background); padding: 0.75rem 1rem; text-align: left; font-size: 0.875rem; transition: all 0.15s;
  width: 100%;
}
.q-option .opt-num { flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 999px; border: 1px solid var(--border); color: var(--muted-foreground); font-size: 0.75rem; font-weight: 600; display: grid; place-items: center; }
.q-option.active .opt-num { color: #fff; }
.q-option .opt-label { color: color-mix(in oklab, var(--foreground) 80%, transparent); }
.q-option.active .opt-label { font-weight: 500; color: var(--foreground); }
.incomplete-note { margin-top: 1.5rem; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }

/* ---------- Lead form ---------- */
.lead-form { margin-top: 2rem; display: grid; gap: 1.25rem; border: 1px solid var(--border); background: var(--card); border-radius: 0.75rem; padding: 1.5rem; box-shadow: var(--shadow-card); grid-template-columns: 1fr; }
@media (min-width: 640px) { .lead-form { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field .flabel { display: block; margin-bottom: 0.4rem; font-size: 0.75rem; font-weight: 500; }
.field .req { color: var(--destructive); }
.field input, .field select {
  width: 100%; border-radius: 0.5rem; border: 1px solid var(--input); background: var(--background);
  padding: 0.5rem 0.75rem; font-size: 0.875rem; outline: none;
}
.field input:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 2px color-mix(in oklab, var(--primary) 20%, transparent); }
.field .ferr { display: block; margin-top: 0.25rem; font-size: 0.75rem; color: var(--destructive); }
.consent-row { grid-column: 1 / -1; }
.consent-row label { display: flex; align-items: flex-start; gap: 0.75rem; }
.consent-row input { margin-top: 0.15rem; width: 1rem; height: 1rem; accent-color: var(--brand-orange); flex-shrink: 0; }
.consent-row .ctext { font-size: 0.75rem; line-height: 1.5; color: var(--muted-foreground); }
.consent-row a { color: var(--primary); font-weight: 500; text-decoration: underline; }
.consent-note { margin-top: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
.lead-actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }

/* ---------- Results page ---------- */
.hero-score { margin-top: 2rem; border-radius: 0.75rem; padding: 2rem; color: #fff; box-shadow: var(--shadow-elevated); background: var(--gradient-hero); overflow: hidden; }
.hero-score .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }
.hero-score .score-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem; margin-top: 0.5rem; }
.hero-score .score-row .n { font-size: 3.5rem; font-weight: 700; color: var(--brand-orange); }
.hero-score .score-row .d { font-size: 1.5rem; color: rgba(255,255,255,0.7); }
.band-pill { border-radius: 999px; padding: 0.3rem 0.85rem; font-size: 0.75rem; font-weight: 600; }
.hero-score p { margin-top: 1rem; max-width: 42rem; font-size: 0.875rem; color: rgba(255,255,255,0.9); }

.result-section { margin-top: 2.5rem; }
.result-section h2 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.result-section .body { margin-top: 1rem; }

.sev-card { border: 1px solid var(--border); background: var(--card); border-radius: 0.75rem; padding: 1.25rem; box-shadow: var(--shadow-card); }
.sev-top { display: flex; justify-content: space-between; align-items: baseline; }
.sev-top .name { font-size: 0.875rem; font-weight: 600; }
.sev-top .val { font-size: 1.125rem; font-weight: 700; }
.sev-top .val small { font-size: 0.75rem; font-weight: 400; color: var(--muted-foreground); }
.sev-scale { margin-top: 0.75rem; }
.sev-track { position: relative; height: 0.65rem; width: 100%; border-radius: 999px; overflow: hidden; display: flex; }
.sev-track > div { flex: 1; height: 100%; }
.sev-marker { position: absolute; top: 50%; width: 0.25rem; height: 1rem; border-radius: 0.15rem; border: 1px solid #fff; background: var(--foreground); transform: translate(-50%, -50%); box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.sev-labels { margin-top: 0.35rem; display: flex; justify-content: space-between; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.sev-band { margin-top: 0.5rem; font-size: 0.75rem; font-weight: 500; }

.rank-callout { margin-bottom: 1rem; border-radius: 0.75rem; border: 1px solid color-mix(in oklab, var(--primary) 30%, transparent); background: color-mix(in oklab, var(--primary-soft) 60%, transparent); padding: 1rem; font-size: 0.875rem; }
.rank-row { border-radius: 0.75rem; border-left: 4px solid; background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-card); margin-bottom: 0.75rem; }
.rank-row .top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem; }
.rank-row .rank { font-size: 0.875rem; font-weight: 600; color: var(--muted-foreground); }
.rank-row .title { font-size: 1rem; font-weight: 600; }
.rank-row .pill { border-radius: 999px; padding: 0.15rem 0.5rem; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.rank-row .score { margin-left: auto; font-size: 0.875rem; font-weight: 600; }
.rank-row .oneliner { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.rank-row .drivers-label { margin-top: 0.75rem; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.rank-row .drivers { margin: 0.25rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.875rem; }
.rank-row .drivers li { display: flex; gap: 0.5rem; }
.rank-row .drivers .dot { margin-top: 0.5rem; width: 0.35rem; height: 0.35rem; border-radius: 999px; background: var(--primary); flex-shrink: 0; }
.rank-row .drivers .ans { color: var(--muted-foreground); }

.interp-card .tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.interp-card .band { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; }
.interp-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in oklab, var(--foreground) 85%, transparent); }

.fabric-card { border-radius: 0.75rem; border-left: 4px solid var(--primary); background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-card); }
.fabric-card .tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.fabric-card .title { margin-top: 0.25rem; font-size: 1rem; font-weight: 600; }
.fabric-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.outcome-card, .nextstep-card { border: 1px solid var(--border); background: var(--card); border-radius: 0.75rem; padding: 1.5rem; box-shadow: var(--shadow-card); }
.outcome-card .org { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); }
.outcome-card p.summary { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; }
.outcome-card .disc { margin-top: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
.nextstep-card h3 { margin: 0; font-size: 1.125rem; font-weight: 600; }
.nextstep-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

.funding-box { border-radius: 0.75rem; border: 1px solid color-mix(in oklab, var(--primary) 20%, transparent); background: color-mix(in oklab, var(--primary-soft) 40%, transparent); padding: 1.25rem; font-size: 0.875rem; line-height: 1.6; }

.cta-box { margin-top: 2.5rem; border-radius: 0.75rem; padding: 2rem; color: #fff; box-shadow: var(--shadow-elevated); background: var(--gradient-hero); }
.cta-box .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }
.cta-box h2 { margin: 0.5rem 0 0; font-size: 1.5rem; font-weight: 600; }
.cta-box p { margin-top: 0.5rem; max-width: 42rem; font-size: 0.875rem; color: rgba(255,255,255,0.9); }
.cta-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.9); }
@media (min-width: 640px) { .cta-list { grid-template-columns: 1fr 1fr; } }
.cta-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.cta-list .dot { margin-top: 0.4rem; width: 0.35rem; height: 0.35rem; border-radius: 999px; background: #fff; flex-shrink: 0; }
.cta-actions { margin-top: 1.5rem; }

/* ---------- Loading / toast ---------- */
.loading-overlay {
  position: fixed; inset: 0; background: rgba(15, 18, 30, 0.55); display: grid; place-items: center; z-index: 100;
}
.loading-box { background: #fff; border-radius: 0.75rem; padding: 1.5rem 2rem; font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow-elevated); }
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 100;
  background: var(--foreground); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem;
  box-shadow: var(--shadow-elevated);
}

/* ---------- Confirmation modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15, 18, 30, 0.55); display: grid; place-items: center; z-index: 200;
  padding: 1rem;
}
.modal-box {
  background: #fff; border-radius: 0.75rem; padding: 2rem; max-width: 26rem; width: 100%;
  box-shadow: var(--shadow-elevated); text-align: center;
}
.modal-icon {
  width: 3rem; height: 3rem; margin: 0 auto 1rem; border-radius: 999px; background: var(--primary-soft);
  color: var(--primary); font-size: 1.25rem; font-weight: 700; display: grid; place-items: center;
}
.modal-box h3 { font-size: 1.125rem; font-weight: 600; margin: 0; }
.modal-box p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.modal-box .modal-close { margin-top: 1.5rem; width: 100%; }
