/* ═══════════════════════════════════════════════
   LIFELAB 재무건강 진단 — Main Stylesheet
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-bg: #eff6ff;
  --navy: #0f172a;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --orange: #ea580c;
  --orange-bg: #fff7ed;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Ref Banner ────────────────────────────────── */
#ref-banner {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  display: none;
}
#ref-banner.show { display: block; }
#ref-banner span { opacity: .85; }
#ref-banner strong { opacity: 1; }

/* ── Header ────────────────────────────────────── */
#site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-wrap img { width: 40px; height: 40px; }
.logo-text { line-height: 1.2; }
.logo-text .main { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.logo-text .sub { font-size: .65rem; font-weight: 500; color: var(--primary); letter-spacing: 1.5px; }
#header-cta {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
#header-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ── Hero ──────────────────────────────────────── */
#hero {
  background: linear-gradient(160deg, var(--navy) 0%, #1e3a8a 60%, var(--primary) 100%);
  padding: 60px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,.3) 0%, transparent 70%);
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-left { text-align: left; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  word-break: keep-all;
}
.hero-title em { color: #93c5fd; font-style: normal; }
.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  word-break: keep-all;
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
}
.hero-feature i { color: #4ade80; font-size: .8rem; }
#hero-cta {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
#hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

/* Hero preview card */
.hero-right {}
.preview-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  color: #fff;
}
.preview-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.preview-card-header h3 { font-size: .9rem; font-weight: 600; opacity: .85; }
.score-badge {
  background: rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: .8rem;
  font-weight: 700;
}
.score-ring-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.score-ring-mini {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.score-ring-mini svg { transform: rotate(-90deg); }
.score-ring-mini .ring-bg { fill: none; stroke: rgba(255,255,255,.2); stroke-width: 6; }
.score-ring-mini .ring-val { fill: none; stroke: #4ade80; stroke-width: 6; stroke-linecap: round; stroke-dasharray: 220; stroke-dashoffset: 40; transition: stroke-dashoffset 1s ease; }
.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
}
.score-center small { font-size: .6rem; opacity: .7; }
.score-meta { flex: 1; }
.score-type-label { font-size: .8rem; opacity: .7; margin-bottom: 4px; }
.score-type-value { font-size: 1.1rem; font-weight: 700; color: #4ade80; margin-bottom: 8px; }
.score-desc { font-size: .8rem; opacity: .75; line-height: 1.5; word-break: keep-all; }
.mini-bars { display: flex; flex-direction: column; gap: 6px; }
.mini-bar-item { display: flex; align-items: center; gap: 8px; }
.mini-bar-label { font-size: .72rem; opacity: .75; width: 70px; flex-shrink: 0; }
.mini-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,.2); border-radius: 4px; overflow: hidden; }
.mini-bar-fill { height: 100%; background: linear-gradient(90deg, #60a5fa, #4ade80); border-radius: 4px; }

/* ── Section Wrapper ───────────────────────────── */
.section-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* ── Progress Bar ──────────────────────────────── */
#progress-wrap {
  position: sticky;
  top: 69px;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 20px;
  display: none;
}
#progress-wrap.show { display: block; }
.progress-inner { max-width: 720px; margin: 0 auto; }
.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}
.progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  z-index: -1;
}
.progress-step.done:not(:last-child)::after { background: var(--primary); }
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-400);
  transition: all .3s;
  position: relative;
  z-index: 1;
}
.progress-step.active .step-dot { border-color: var(--primary); background: var(--primary); color: #fff; }
.progress-step.done .step-dot { border-color: var(--primary); background: var(--primary); color: #fff; }
.step-label { font-size: .7rem; color: var(--gray-400); font-weight: 500; white-space: nowrap; }
.progress-step.active .step-label { color: var(--primary); font-weight: 700; }
.progress-step.done .step-label { color: var(--primary); }
.progress-bar-track { height: 3px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--primary); border-radius: 4px; transition: width .5s ease; }

/* ── Steps ─────────────────────────────────────── */
.step { display: none; }
.step.active { display: block; animation: fadeUp .4s ease; }

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

/* ── Cards ─────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 20px;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.card-header h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.card-header p { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }
.card-step-badge {
  margin-left: auto;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Form Fields ───────────────────────────────── */
.field-group { margin-bottom: 18px; }
.field-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.field-label .req { color: var(--danger); margin-left: 2px; }
.field-hint { font-size: .75rem; color: var(--gray-400); font-weight: 400; margin-left: 6px; }

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--gray-400);
  font-size: .9rem;
  pointer-events: none;
}
input[type="text"],
input[type="number"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--gray-800);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.input-wrap input { padding-left: 38px; }
.input-suffix {
  position: absolute;
  right: 14px;
  color: var(--gray-500);
  font-size: .85rem;
  font-weight: 600;
  pointer-events: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
input::placeholder { color: var(--gray-300); }
textarea { resize: vertical; min-height: 80px; line-height: 1.6; }

/* ── Chip Radio / Checkbox ─────────────────────── */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-group input[type="radio"],
.chip-group input[type="checkbox"] {
  display: none;
}
.chip-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
  white-space: nowrap;
}
.chip-group label:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: var(--primary-bg);
}
.chip-group input:checked + label {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.chip-group input:checked + label i { color: #fff; }

/* ── Conditional Field ─────────────────────────── */
.conditional-field {
  display: none;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 12px;
  border: 1px solid var(--gray-200);
  animation: fadeUp .3s ease;
}
.conditional-field.show { display: block; }
.conditional-field .field-group:last-child { margin-bottom: 0; }

/* ── Step 1 Submit Button ──────────────────────── */
#submit-step1 {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
#submit-step1:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.4); }

/* ── Step 2 (Result) ───────────────────────────── */
.result-header {
  text-align: center;
  margin-bottom: 32px;
}
.result-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.result-sub { font-size: .9rem; color: var(--gray-500); }

.score-display {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin-bottom: 24px;
  color: #fff;
}
.score-ring {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.score-ring svg { transform: rotate(-90deg); }
.ring-bg-main { fill: none; stroke: rgba(255,255,255,.15); stroke-width: 10; }
.ring-val-main { fill: none; stroke: url(#ringGrad); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 345; stroke-dashoffset: 345; transition: stroke-dashoffset 1.5s ease; }
.score-number {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-number .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.score-number .denom { font-size: .72rem; opacity: .6; }
.score-info { flex: 1; }
.score-info .type-label { font-size: .85rem; opacity: .7; margin-bottom: 6px; }
.score-info .type-name { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.score-info .type-desc { font-size: .88rem; opacity: .8; line-height: 1.6; word-break: keep-all; }

/* Type Badge */
.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.type-badge.stable { background: var(--success-bg); color: var(--success); }
.type-badge.check { background: var(--warning-bg); color: var(--warning); }
.type-badge.improve { background: var(--orange-bg); color: var(--orange); }
.type-badge.consult { background: var(--danger-bg); color: var(--danger); }

/* Bar chart items */
.chart-card { }
.chart-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.chart-title i { color: var(--primary); }
.bar-item {
  margin-bottom: 14px;
}
.bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.bar-label { font-size: .85rem; font-weight: 600; color: var(--gray-700); }
.bar-score { font-size: .85rem; font-weight: 700; color: var(--primary); }
.bar-track { height: 8px; background: var(--gray-100); border-radius: 8px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 8px; transition: width 1.2s ease; background: linear-gradient(90deg, var(--primary-light), var(--primary)); }
.bar-fill.good { background: linear-gradient(90deg, #4ade80, #16a34a); }
.bar-fill.warning { background: linear-gradient(90deg, #fbbf24, #d97706); }
.bar-fill.danger { background: linear-gradient(90deg, #f87171, #dc2626); }
.bar-feedback { font-size: .78rem; color: var(--gray-500); margin-top: 4px; line-height: 1.4; }

/* Type description box */
.type-desc-box {
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}
.type-desc-box.stable { background: var(--success-bg); border: 1px solid #bbf7d0; }
.type-desc-box.check { background: var(--warning-bg); border: 1px solid #fde68a; }
.type-desc-box.improve { background: var(--orange-bg); border: 1px solid #fed7aa; }
.type-desc-box.consult { background: var(--danger-bg); border: 1px solid #fecaca; }
.type-desc-box h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.type-desc-box p { font-size: .85rem; line-height: 1.6; word-break: keep-all; }
.type-desc-box.stable h4 { color: var(--success); }
.type-desc-box.check h4 { color: var(--warning); }
.type-desc-box.improve h4 { color: var(--orange); }
.type-desc-box.consult h4 { color: var(--danger); }

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, var(--primary-bg) 0%, #e0e7ff 100%);
  border: 1px solid #c7d2fe;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.cta-box h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.cta-box p { font-size: .85rem; color: var(--gray-600); margin-bottom: 18px; line-height: 1.6; word-break: keep-all; }
#go-step3 {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
#go-step3:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ── Step 3 (Consultation Form) ────────────────── */
.score-mini-banner {
  background: linear-gradient(135deg, var(--navy), #1e3a8a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.score-mini-banner .mini-score { font-size: 1.8rem; font-weight: 900; color: #93c5fd; }
.score-mini-banner .mini-label { font-size: .8rem; opacity: .7; }
.score-mini-banner .mini-type { font-size: .95rem; font-weight: 700; }

/* Privacy table */
.privacy-table-wrap { overflow-x: auto; margin: 12px 0; }
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .78rem;
  min-width: 480px;
}
.privacy-table th, .privacy-table td {
  border: 1px solid var(--gray-200);
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}
.privacy-table th { background: var(--gray-50); font-weight: 700; color: var(--gray-700); }
.privacy-table td { color: var(--gray-600); }

#submit-step3 {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
#submit-step3:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── Step 4 (Complete) ─────────────────────────── */
.complete-wrap {
  text-align: center;
  padding: 40px 0 20px;
}
.complete-icon {
  width: 80px;
  height: 80px;
  background: var(--success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--success);
  animation: bounceIn .6s ease;
}
@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.complete-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.complete-sub { color: var(--gray-500); font-size: .9rem; margin-bottom: 28px; word-break: keep-all; }

.info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .88rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--gray-500); font-weight: 500; }
.info-row .value { color: var(--gray-800); font-weight: 700; }

.action-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-copy, .btn-restart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-copy { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,.3); }
.btn-copy:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-restart { background: var(--gray-100); color: var(--gray-700); }
.btn-restart:hover { background: var(--gray-200); }

/* ── Footer ────────────────────────────────────── */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 32px 20px;
  font-size: .8rem;
  line-height: 1.8;
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-notice {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 600;
}
.footer-compliance {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}
.footer-ad-review {
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  margin-top: 2px;
}
#site-footer a { color: rgba(255,255,255,.6); text-decoration: none; }
#site-footer strong { color: rgba(255,255,255,.8); font-weight: 600; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-right { display: none; }
  .hero-title { font-size: 1.5rem; }
  .score-display { flex-direction: column; text-align: center; gap: 20px; }
  .card { padding: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.3rem; }
  .chip-group label { padding: 7px 12px; font-size: .8rem; }
  .header-inner { padding: 10px 16px; }
  .card { padding: 16px; }
  .score-ring { width: 100px; height: 100px; }
}
