/* ============================================
   SPECIALTY FINDER — Career Path Matcher
   Design System v2.0
   Plus Jakarta Sans + Inter
   Slate / Indigo / Orange
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ───────────────────────────────── */
:root {
  --bg:           #F8F8F6;
  --surface:      #FFFFFF;
  --hero:         #12131A;
  --hero-mid:     #1A1B26;
  --primary:      #5B50F5;
  --primary-dark: #4740DC;
  --primary-bg:   rgba(91,80,245,0.08);
  --accent:       #FF6B2B;
  --accent-light: #FF8A52;
  --accent-bg:    rgba(255,107,43,0.08);
  --green:        #059669;
  --text:         #12131A;
  --text-muted:   #6C6C89;
  --text-light:   #A0A0B8;
  --border:       #E4E4EF;
  --border-dark:  #CCCCE0;
  --shadow-sm:    0 1px 3px rgba(18,19,26,0.07);
  --shadow-md:    0 4px 16px rgba(18,19,26,0.09);
  --shadow-lg:    0 12px 32px rgba(18,19,26,0.11);
  --shadow-xl:    0 20px 56px rgba(18,19,26,0.14);
  --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    22px;
  --transition:   0.15s ease;

  --dim-income:   #5B50F5;
  --dim-wl:       #10B981;
  --dim-growth:   #F59E0B;
  --dim-security: #3B82F6;
  --dim-satisfy:  #EF4444;
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Navigation ───────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(18,19,26,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  color: #F0EDE8; letter-spacing: -0.03em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex; gap: 28px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(240,237,232,0.55);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: rgba(240,237,232,0.9); }
.nav-cta {
  background: var(--primary) !important; color: white !important;
  padding: 7px 16px; border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }
.nav-toggle {
  display: none; background: none; border: none; padding: 6px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: #F0EDE8; margin: 4px 0; border-radius: 2px;
}

/* ── Homepage Hero ────────────────────────── */
.hero {
  background: var(--hero);
  padding: 90px 24px 40px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,80,245,0.3), transparent);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
}
.hero-kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800; line-height: 1.07;
  color: #F0EDE8; letter-spacing: -0.03em;
  max-width: 640px; margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal; color: var(--accent);
}
.hero-sub {
  font-size: 16px; color: rgba(240,237,232,0.5);
  max-width: 480px; line-height: 1.65; margin-bottom: 0;
}

/* ── Matcher Section ──────────────────────── */
.matcher-section { padding: 48px 24px 80px; }
.matcher-inner { max-width: 1200px; margin: 0 auto; }
.matcher-header {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 28px;
}
.matcher-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--text);
}
.matcher-count {
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}

/* ── Profession Cards Grid ────────────────── */
.prof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.prof-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 18px;
  transition: all 0.2s ease;
  display: block; color: var(--text);
  text-decoration: none;
}
.prof-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,80,245,0.08), var(--shadow-md);
  transform: translateY(-2px);
  color: var(--text);
}
.prof-emoji {
  font-size: 28px; margin-bottom: 12px; line-height: 1;
  display: block;
}
.prof-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25; margin-bottom: 10px;
  color: var(--text);
}
.prof-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.prof-badge {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  padding: 3px 9px; border-radius: 100px;
  border: 1px solid var(--border);
  letter-spacing: 0.01em;
}

/* ── Section ──────────────────────────────── */
.section { padding: 64px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 40px; }
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); line-height: 1.15; margin-bottom: 10px;
}
.section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 500px; line-height: 1.65;
}

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px;
  font-weight: 600; border: 2px solid transparent;
  transition: all var(--transition); line-height: 1; cursor: pointer;
}
.btn-primary {
  background: var(--primary); color: white; border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-1px); color: white;
}
.btn-accent {
  background: var(--accent); color: white; border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light); border-color: var(--accent-light);
  transform: translateY(-1px); color: white;
}
.btn-ghost {
  background: transparent; color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg); color: var(--text); }
.btn-outline-dark {
  background: transparent; color: rgba(240,237,232,0.7);
  border-color: rgba(240,237,232,0.15);
}
.btn-outline-dark:hover { border-color: rgba(240,237,232,0.35); color: rgba(240,237,232,0.95); }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Page Hero ────────────────────────────── */
.page-hero {
  background: var(--hero); padding: 90px 24px 44px;
}
.page-hero-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(240,237,232,0.4);
  margin-bottom: 20px; transition: color var(--transition);
}
.page-hero-back:hover { color: rgba(240,237,232,0.75); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: #F0EDE8;
  letter-spacing: -0.025em;
  max-width: 600px; margin-bottom: 12px; line-height: 1.1;
}
.page-hero p {
  font-size: 16px; color: rgba(240,237,232,0.5);
  max-width: 460px; line-height: 1.65;
}

/* ── Tool Card ────────────────────────────── */
.tool-wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.tool-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin-top: -18px;
  margin-bottom: 64px;
}
.tool-header { padding: 28px 32px 20px; border-bottom: 1px solid var(--border); }
.tool-header h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 3px;
}
.tool-header p { font-size: 13px; color: var(--text-muted); }

/* ── Progress ─────────────────────────────── */
.progress-wrap { padding: 18px 32px 0; }
.progress-track {
  height: 3px; background: var(--border);
  border-radius: 100px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--primary);
  border-radius: 100px; transition: width 0.4s ease;
}
.progress-label {
  font-size: 11px; color: var(--text-light);
  margin-top: 6px; margin-bottom: 2px;
}

/* ── Tool Steps ───────────────────────────── */
.tool-step { padding: 24px 32px 32px; display: none; }
.tool-step.active { display: block; }
.step-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.step-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

/* ── Drag & Drop Priority Ranking ─────────── */
.rank-list {
  display: flex; flex-direction: column; gap: 8px;
  user-select: none;
}
.rank-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: grab; transition: all 0.15s ease;
}
.rank-item:hover { border-color: var(--primary); background: var(--primary-bg); }
.rank-item.dragging {
  opacity: 0.5; cursor: grabbing;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.rank-item.drag-over { border-color: var(--primary); background: var(--primary-bg); }
.rank-handle {
  color: var(--text-light); flex-shrink: 0;
  display: flex; align-items: center;
}
.rank-handle svg { display: block; }
.rank-position {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  background: var(--primary-bg);
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rank-content { flex: 1; }
.rank-label {
  font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 2px;
}
.rank-desc { font-size: 12px; color: var(--text-muted); }
.rank-instructions {
  font-size: 12px; color: var(--text-muted);
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 16px;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}

/* ── Form Elements ────────────────────────── */
.form-group { margin-bottom: 20px; }
label.field-label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 10px; color: var(--text);
}
select, input[type="text"] {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: var(--surface); transition: border-color var(--transition);
}
select:focus, input:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,80,245,0.08);
}

/* ── Radio Options ────────────────────────── */
.radio-list { display: flex; flex-direction: column; gap: 8px; }
.radio-opt {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); cursor: pointer;
  transition: all var(--transition); user-select: none;
}
.radio-opt:hover { border-color: var(--primary); background: var(--primary-bg); }
.radio-opt.selected { border-color: var(--primary); background: var(--primary-bg); }
.radio-opt input[type="radio"] { display: none; }
.radio-circle {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border); flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.radio-opt.selected .radio-circle { border-color: var(--primary); background: var(--primary); }
.radio-opt.selected .radio-circle::after {
  content: ''; width: 7px; height: 7px;
  background: white; border-radius: 50%;
}
.radio-text { font-size: 14px; font-weight: 500; color: var(--text); }
.radio-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Step Navigation ──────────────────────── */
.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
  gap: 10px;
}

/* ── Results Panel ────────────────────────── */
.results-panel { display: none; padding: 24px 32px 32px; }
.results-panel.visible { display: block; }
.results-headline {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.results-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }

/* ── Match Banner ─────────────────────────── */
.match-banner {
  background: linear-gradient(135deg, var(--hero) 0%, #1E1F30 100%);
  border-radius: var(--radius-lg); padding: 22px 24px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.match-banner-info h3 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 5px;
}
.match-banner-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: white; letter-spacing: -0.01em;
}
.match-pct {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800;
  color: var(--accent); line-height: 1; letter-spacing: -0.03em;
}
.match-pct-label { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 3px; }

/* ── Score Bars ───────────────────────────── */
.score-wrap { display: flex; flex-direction: column; gap: 9px; }
.score-row {
  display: grid; grid-template-columns: 130px 1fr 32px;
  align-items: center; gap: 10px;
}
.score-label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.score-bar-bg {
  height: 7px; background: var(--bg);
  border-radius: 100px; overflow: hidden;
  border: 1px solid var(--border);
}
.score-bar-fill {
  height: 100%; border-radius: 100px;
  transition: width 0.8s cubic-bezier(0.34,1.2,0.64,1);
}
.score-val { font-size: 12px; font-weight: 700; color: var(--text); text-align: right; }

/* ── Path Result Rows ─────────────────────── */
.paths-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.path-row {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.path-row.top-match { border-color: var(--primary); }
.path-row-header {
  display: flex; align-items: center;
  padding: 14px 18px; cursor: pointer; gap: 12px;
}
.path-row-header:hover { background: rgba(91,80,245,0.03); }
.path-row-rank {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  min-width: 22px;
}
.path-row.top-match .path-row-rank { color: var(--primary); }
.path-row-name { font-weight: 600; font-size: 14px; flex: 1; }
.path-row-score {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--primary);
}
.path-row-chevron {
  width: 15px; height: 15px; color: var(--text-light);
  transition: transform var(--transition); flex-shrink: 0;
}
.path-row.open .path-row-chevron { transform: rotate(90deg); }
.path-row-detail { display: none; padding: 0 18px 18px; }
.path-row.open .path-row-detail { display: block; }
.path-detail-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px;
  margin-bottom: 14px;
}
.detail-stat {
  background: var(--bg); border-radius: var(--radius-sm); padding: 11px 13px;
}
.detail-stat-label {
  font-size: 10px; color: var(--text-light); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px;
}
.detail-stat-val { font-size: 15px; font-weight: 700; color: var(--text); }
.detail-stat-note { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Alerts ───────────────────────────────── */
.alert {
  display: flex; gap: 12px; padding: 12px 16px;
  border-radius: var(--radius-md); font-size: 13px;
  line-height: 1.6; margin-bottom: 14px;
}
.alert-icon { font-size: 16px; flex-shrink: 0; }
.alert-info { background: rgba(91,80,245,0.06); border: 1px solid rgba(91,80,245,0.15); color: var(--primary-dark); }
.alert-warn { background: #FFF7ED; border: 1px solid rgba(255,107,43,0.2); color: #9A3412; }
.alert strong { font-weight: 700; display: block; margin-bottom: 2px; }

/* ── Disclaimer ───────────────────────────── */
.disclaimer {
  font-size: 11px; color: var(--text-light); line-height: 1.65;
  padding: 12px 16px; background: var(--bg);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  margin-top: 18px;
}

/* ── Page Content ─────────────────────────── */
.page-content { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.page-card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.body-text { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.section-sub-head { font-size: 15px; font-weight: 700; color: var(--text); margin: 24px 0 8px; }

/* ── FAQ ──────────────────────────────────── */
.faq-list { margin: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 0; font-size: 15px; font-weight: 600;
  font-family: var(--font-body); color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; line-height: 1.5;
}
.faq-q:hover { color: var(--primary); }
.faq-icon { font-size: 20px; font-weight: 300; color: var(--text-muted); flex-shrink: 0; }
.faq-a {
  display: none; padding: 0 0 18px;
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
}

/* ── CTA Section ──────────────────────────── */
.cta-section {
  background: var(--hero); padding: 56px 24px; text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800; color: #F0EDE8; margin-bottom: 10px;
  letter-spacing: -0.025em;
}
.cta-section p { font-size: 15px; color: rgba(240,237,232,0.45); margin-bottom: 24px; }

/* ── Footer ───────────────────────────────── */
.footer { background: #0C0D14; padding: 44px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  color: #F0EDE8; display: block; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 12px; color: rgba(240,237,232,0.28); line-height: 1.7; max-width: 200px; }
.footer-col h4 {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(240,237,232,0.28); margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: rgba(240,237,232,0.45); transition: color var(--transition); }
.footer-col a:hover { color: rgba(240,237,232,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(240,237,232,0.2); }

/* ── Utilities ────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.chip {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  background: var(--primary-bg); color: var(--primary);
  border: 1px solid rgba(91,80,245,0.2);
}

/* ── Related Matchers Section ─────────────── */
.related-section { padding: 40px 24px; }
.related-inner { max-width: 720px; margin: 0 auto; }
.related-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; margin-bottom: 16px;
  color: var(--text-muted);
}
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px;
}
.related-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 16px;
  text-decoration: none; color: var(--text);
  transition: all var(--transition);
  display: block;
}
.related-card:hover { border-color: var(--primary); color: var(--text); transform: translateY(-1px); }
.related-emoji { font-size: 20px; margin-bottom: 8px; display: block; }
.related-name { font-size: 13px; font-weight: 600; line-height: 1.3; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--hero); padding: 20px 24px; gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
  }
  .nav-toggle { display: block; }
  .prof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tool-header, .tool-step, .results-panel, .progress-wrap { padding-left: 18px; padding-right: 18px; }
  .path-detail-grid { grid-template-columns: 1fr; }
  .match-banner { flex-direction: column; }
  .score-row { grid-template-columns: 110px 1fr 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .prof-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
