:root {
  --navy-950: #06111d;
  --navy-900: #0d1b2a;
  --navy-800: #16283d;
  --navy-700: #20344d;
  --steel-700: #415a77;
  --steel-500: #6f86a1;
  --mist-100: #f5f7fa;
  --slate-200: #e6edf5;
  --slate-300: #d7dee8;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --white: #ffffff;

  --amber-500: #f0b45b;
  --amber-400: #ffd08a;
  --amber-300: #ffe5bc;
  --emerald-500: #1f9d62;
  --yellow-600: #9a6500;
  --red-500: #d24a43;

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --glass-panel: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72));
  --shadow-soft: 0 24px 70px rgba(15,23,42,0.12);
  --shadow-strong: 0 32px 90px rgba(4,10,22,0.34);
  --ring: 0 0 0 4px rgba(240,180,91,0.18);
  --transition: 220ms cubic-bezier(0.2,1,0.36,1);
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
::selection { background: rgba(240,180,91,0.3); color: var(--navy-900); }

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    "PingFang TC", "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,208,138,0.2), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(65,90,119,0.2), transparent 24%),
    linear-gradient(180deg, #eef3f8 0%, #f7f9fc 45%, #eef3f8 100%);
  overflow-x: hidden;
}

a, button, input, textarea {
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition), background var(--transition),
    color var(--transition), opacity var(--transition);
}

a { color: inherit; }

.container {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 32px 0 44px;
  position: relative;
  z-index: 1;
}

/* ===== Header / Hero ===== */
header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  margin-bottom: 28px;
  padding: clamp(2rem,5vw,3rem) clamp(1.25rem,4vw,3rem) clamp(5.5rem,9vw,7rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(6,17,29,0.96) 0%, rgba(13,27,42,0.95) 40%, rgba(32,52,77,0.94) 100%);
  box-shadow: var(--shadow-strong);
}

header::before {
  content: "";
  position: absolute;
  inset: -10% 38% 28% -8%;
  background: radial-gradient(circle, rgba(255,208,138,0.26) 0%, rgba(255,208,138,0) 70%);
  z-index: -1;
  pointer-events: none;
}

header::after {
  content: "";
  position: absolute;
  inset: auto -12% -26% 46%;
  height: clamp(220px,36vw,320px);
  background: radial-gradient(circle, rgba(65,90,119,0.42) 0%, rgba(65,90,119,0) 70%);
  z-index: -1;
  pointer-events: none;
}

header > * { position: relative; z-index: 1; }

.hero-img {
  display: block;
  width: min(100%, 760px);
  margin: 0 auto 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.05) inset;
  object-fit: cover;
  animation: heroFloat 10s ease-in-out infinite;
}

header h1 {
  margin: 0;
  font-size: clamp(2.35rem,5vw,4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.tagline {
  max-width: 58ch;
  margin: 0.9rem auto 0;
  font-size: clamp(1rem,2.1vw,1.125rem);
  color: rgba(245,247,250,0.84);
  text-wrap: balance;
}

header + form,
header + .result-section { position: relative; z-index: 3; margin-top: -84px; }

/* ===== Form ===== */
form {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.4rem,3vw,2.2rem);
  border-radius: 28px;
  background: var(--glass-panel);
  border: 1px solid rgba(255,255,255,0.58);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.2rem;
  overflow: hidden;
}

form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,180,91,0), rgba(240,180,91,0.75), rgba(240,180,91,0));
}

.form-group { margin: 0; display: grid; gap: 0.65rem; }

label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy-900);
}

.required { color: #dc5e56; }

input[type="text"], textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(65,90,119,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  color: var(--ink-900);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
  resize: vertical;
}

textarea { min-height: 140px; }
input[type="text"]::placeholder, textarea::placeholder { color: rgba(100,116,139,0.85); }
input[type="text"]:hover, textarea:hover { border-color: rgba(65,90,119,0.3); }

input[type="text"]:focus, textarea:focus {
  outline: none;
  border-color: rgba(240,180,91,0.8);
  box-shadow: var(--ring), inset 0 1px 0 rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.94);
}

/* ===== File Upload ===== */
.file-upload {
  position: relative;
  padding: clamp(1.6rem,4vw,2.35rem);
  border: 1.5px dashed rgba(65,90,119,0.24);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(245,247,250,0.74));
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

/* removed warm gradient blob from file upload area */

.file-upload:hover, .file-upload.dragover {
  transform: translateY(-2px);
  border-color: rgba(240,180,91,0.78);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,247,236,0.84));
  box-shadow: 0 22px 55px rgba(13,27,42,0.1);
}

.file-upload input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}

.file-upload-label {
  display: grid; place-items: center; gap: 0.45rem;
  color: var(--ink-700); font-size: 0.96rem;
}

.file-icon {
  display: block; font-size: 2.4rem; line-height: 1; margin-bottom: 0.1rem;
  filter: drop-shadow(0 10px 20px rgba(240,180,91,0.22));
}

.file-name {
  display: none;
  margin-top: 0.9rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(13,27,42,0.06);
  color: var(--navy-900);
  font-size: 0.9rem; font-weight: 700;
}

/* ===== Submit Button ===== */
button[type="submit"] {
  position: relative;
  width: 100%;
  min-height: 64px;
  margin-top: 0.2rem;
  padding: 1rem 1.2rem;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #102034 0%, #1b304a 45%, #324b6a 100%);
  color: var(--white);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden; isolation: isolate;
  box-shadow: 0 18px 40px rgba(13,27,42,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}

button[type="submit"]::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 28%, rgba(255,255,255,0.18) 46%, rgba(255,255,255,0) 64%);
  transform: translateX(-140%);
  transition: transform 700ms ease;
}

button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-2px); filter: saturate(1.05);
  box-shadow: 0 24px 52px rgba(13,27,42,0.32), inset 0 1px 0 rgba(255,255,255,0.16);
}

button[type="submit"]:hover:not(:disabled)::before { transform: translateX(140%); }
button[type="submit"]:active:not(:disabled) { transform: translateY(0); }

button:disabled {
  opacity: 1; cursor: progress;
  background: linear-gradient(135deg, #112238 0%, #223754 48%, #3c587d 100%);
}

.btn-text, .btn-loading { position: relative; z-index: 1; }

.btn-loading {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem; max-width: 38rem; font-size: 0.95rem; line-height: 1.5;
}

.btn-loading::after {
  content: "";
  flex-basis: 100%;
  width: min(100%, 320px);
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08)),
    linear-gradient(90deg, rgba(255,208,138,0.18) 0%, rgba(255,208,138,1) 36%, rgba(255,255,255,0.18) 58%, rgba(255,208,138,0.35) 100%);
  background-size: 100% 100%, 220% 100%;
  background-position: 0 0, 100% 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  animation: progressSweep 2s linear infinite;
}

.spinner {
  width: 1.05rem; height: 1.05rem;
  border: 2px solid rgba(255,255,255,0.28);
  border-top-color: var(--amber-400);
  border-right-color: rgba(255,255,255,0.95);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex: 0 0 auto;
}

/* ===== Result Page ===== */
.result-section {
  position: relative; overflow: hidden;
  margin-bottom: 1.25rem;
  padding: clamp(1.35rem,3vw,1.85rem);
  border-radius: var(--radius-lg);
  background: var(--glass-panel);
  border: 1px solid rgba(255,255,255,0.58);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.result-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(15,23,42,0.14);
}

.result-section:first-of-type {
  display: flex; justify-content: center; align-items: center; min-height: 110px;
}

.result-section h2 {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 0 0 1.2rem;
  font-size: 1.35rem; line-height: 1.2; letter-spacing: -0.03em;
  color: var(--navy-900);
}

.result-section h2::before {
  content: "";
  width: 12px; height: 12px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--amber-500), #ffdeaf);
  box-shadow: 0 0 0 8px rgba(240,180,91,0.12);
}

.result-section h3 {
  margin: 1.4rem 0 0.8rem;
  font-size: 1rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink-700);
}

.strengths {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.75rem;
}

.strengths li {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border-radius: 16px;
  border: 1px solid rgba(65,90,119,0.1);
  background: rgba(255,255,255,0.68);
  color: var(--ink-900); font-size: 0.95rem;
}

.strengths li::before {
  content: "✓";
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 1.45rem; height: 1.45rem;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(31,157,98,0.12);
  color: var(--emerald-500); font-weight: 800;
}

/* ===== Tables ===== */
.analysis-table {
  width: 100%; margin-top: 0.85rem;
  border-collapse: separate; border-spacing: 0;
  border: 1px solid rgba(65,90,119,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.64);
  overflow: hidden;
}

.analysis-table th, .analysis-table td {
  padding: 0.95rem 1rem; text-align: left; vertical-align: top;
}

.analysis-table th {
  background: linear-gradient(135deg, rgba(13,27,42,0.96), rgba(44,67,96,0.92));
  color: rgba(245,247,250,0.95);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.analysis-table td { color: var(--ink-700); }
.analysis-table td:first-child { font-weight: 600; }
.analysis-table td strong { color: var(--navy-900); }
.analysis-table tr:not(:last-child) td { border-bottom: 1px solid rgba(215,222,232,0.78); }
.analysis-table tr:nth-child(even) td { background: rgba(245,247,250,0.72); }
.analysis-table tr:hover td { background: rgba(255,243,226,0.88); }
.analysis-table th:first-child { border-top-left-radius: 20px; }
.analysis-table th:last-child { border-top-right-radius: 20px; }

/* ===== Badges ===== */
.severity, .match {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.38rem 0.72rem; border-radius: 999px;
  font-size: 0.8rem; line-height: 1; font-weight: 700;
}

.severity-高 { background: rgba(210,74,67,0.12); color: var(--red-500); }
.severity-中 { background: rgba(240,180,91,0.18); color: var(--yellow-600); }
.severity-低 { background: rgba(31,157,98,0.12); color: var(--emerald-500); }
.match-強 { background: rgba(31,157,98,0.12); color: var(--emerald-500); }
.match-中 { background: rgba(240,180,91,0.18); color: var(--yellow-600); }
.match-弱 { background: rgba(210,74,67,0.12); color: var(--red-500); }
.match-缺口 { background: rgba(100,116,139,0.14); color: var(--ink-500); }

/* ===== Buttons ===== */
.download-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, #102034 0%, #203650 50%, #3b567a 100%);
  color: var(--white); text-decoration: none;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 18px 36px rgba(13,27,42,0.22), inset 0 1px 0 rgba(255,255,255,0.12);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(13,27,42,0.26), inset 0 1px 0 rgba(255,255,255,0.14);
}

.back-link {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1rem; padding: 0.82rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(65,90,119,0.14);
  background: rgba(13,27,42,0.05);
  color: var(--ink-700); text-decoration: none; font-weight: 600;
}

.back-link:hover {
  transform: translateY(-1px);
  background: rgba(13,27,42,0.08);
  color: var(--navy-900);
}

.error-box { text-align: center; }
.error-box h2 { color: var(--red-500); }
.error-box h2::before { background: linear-gradient(135deg, var(--red-500), #ff8a84); }
.error-box p { color: var(--ink-500); margin-bottom: 16px; }

/* ===== Footer ===== */
footer {
  margin-top: 2rem; text-align: center;
  color: var(--ink-500); font-size: 0.92rem;
}

footer p { margin: 0; padding: 0.25rem 0 0.5rem; }

/* ===== Focus ===== */
input[type="text"]:focus-visible, textarea:focus-visible,
.download-btn:focus-visible, .back-link:focus-visible,
button[type="submit"]:focus-visible { outline: none; }

.download-btn:focus-visible, .back-link:focus-visible { box-shadow: var(--ring); }
button[type="submit"]:focus-visible {
  box-shadow: var(--ring), 0 18px 40px rgba(13,27,42,0.28);
}

/* ===== Animations ===== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes progressSweep {
  0% { background-position: 0 0, 120% 0; }
  100% { background-position: 0 0, -120% 0; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .container { width: min(100% - 24px, 1120px); padding-top: 24px; }
  header { border-radius: 26px; padding-bottom: 5.25rem; }
  header + form, header + .result-section { margin-top: -58px; }
  form, .result-section { border-radius: 22px; }
  .hero-img { border-radius: 22px; }
}

@media (max-width: 720px) {
  header { padding-left: 1rem; padding-right: 1rem; }
  button[type="submit"] { min-height: 72px; }
  .analysis-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .download-btn, .back-link { width: 100%; }
  .result-section:first-of-type { min-height: auto; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 20px, 1120px); padding-top: 20px; padding-bottom: 32px; }
  header { border-radius: 22px; padding-bottom: 4.75rem; }
  header + form, header + .result-section { margin-top: -44px; }
  form, .result-section { padding: 1.15rem; }
  .file-upload { padding: 1.4rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== HR Screener Specific ===== */
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(65,90,119,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  color: var(--ink-900);
  font: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23415a77' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
select:focus {
  outline: none;
  border-color: rgba(240,180,91,0.8);
  box-shadow: var(--ring);
}

.header-compact {
  text-align: center;
  margin-bottom: 20px;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(6,17,29,0.96), rgba(32,52,77,0.94));
  box-shadow: var(--shadow-strong);
}
.header-compact h1 { margin: 0; font-size: 2rem; color: rgba(255,255,255,0.98); }
.header-compact .tagline { color: rgba(245,247,250,0.84); margin-top: 0.5rem; }

/* Score Banner */
.score-banner {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.score-banner.score-green { background: linear-gradient(135deg, #1E8449, #27ae60); color: white; }
.score-banner.score-blue { background: linear-gradient(135deg, #1A5276, #2980b9); color: white; }
.score-banner.score-orange { background: linear-gradient(135deg, #b7700a, #E67E22); color: white; }
.score-banner.score-red { background: linear-gradient(135deg, #922B21, #C0392B); color: white; }
.score-number { font-size: 4rem; font-weight: 800; line-height: 1; }
.score-max { font-size: 1.5rem; opacity: 0.7; }
.score-decision { font-size: 1.2rem; font-weight: 700; margin-top: 0.5rem; }
.score-profile { font-size: 0.85rem; opacity: 0.8; margin-top: 0.4rem; }

/* HR Comment */
.hr-comment {
  border-left: 4px solid var(--amber-500);
  font-style: italic;
  color: var(--ink-700);
}
.hr-comment p { margin: 0; line-height: 1.7; }

/* Quick Screen */
.screen-result {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  font-weight: 800; font-size: 1rem;
}
.screen-pass { background: rgba(31,157,98,0.15); color: var(--emerald-500); }
.screen-fail { background: rgba(210,74,67,0.15); color: var(--red-500); }
.screen-unknown { background: rgba(240,180,91,0.2); color: var(--yellow-600); }
.screen-summary {
  margin-top: 0.75rem; padding: 0.75rem 1rem;
  border-radius: 12px; background: rgba(249,231,159,0.3);
  border: 1px solid rgba(230,126,34,0.2);
  font-weight: 600; font-size: 0.9rem;
}

/* Dimension Cards */
.dim-card {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(65,90,119,0.1);
}
.dim-card:last-of-type { border-bottom: none; }
.dim-header {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.dim-name { font-weight: 700; color: var(--navy-900); flex: 1; min-width: 120px; }
.dim-score { font-weight: 800; font-size: 1.1rem; color: var(--ink-900); }
.dim-rating {
  padding: 0.25rem 0.6rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700;
}
.rating-優異 { background: rgba(31,157,98,0.12); color: var(--emerald-500); }
.rating-良好 { background: rgba(26,82,118,0.12); color: #1A5276; }
.rating-中等 { background: rgba(240,180,91,0.18); color: var(--yellow-600); }
.rating-偏弱 { background: rgba(210,74,67,0.12); color: var(--red-500); }

.dim-bar {
  height: 8px; border-radius: 999px;
  background: rgba(65,90,119,0.1);
  margin: 0.5rem 0;
  overflow: hidden;
}
.dim-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), var(--amber-400));
  transition: width 0.6s ease;
}
.dim-evidence { font-size: 0.88rem; color: var(--ink-500); line-height: 1.5; }

.bonus-card {
  margin-top: 1rem; padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(214,234,248,0.5);
  border: 1px solid rgba(26,82,118,0.15);
}
.bonus-card ul { margin: 0.4rem 0 0; padding-left: 18px; font-size: 0.88rem; }

/* Two Column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.col-highlight {
  padding: 1rem; border-radius: 16px;
  background: rgba(213,245,227,0.5); border: 1px solid rgba(30,132,73,0.2);
}
.col-concern {
  padding: 1rem; border-radius: 16px;
  background: rgba(250,219,216,0.5); border: 1px solid rgba(192,57,43,0.2);
}
.col-highlight h3 { color: var(--emerald-500); margin: 0 0 0.5rem; }
.col-concern h3 { color: var(--red-500); margin: 0 0 0.5rem; }
.col-highlight ul, .col-concern ul {
  list-style: none; padding: 0; margin: 0; font-size: 0.9rem;
}
.col-highlight li, .col-concern li { padding: 0.3rem 0; }
.col-highlight li::before { content: "✓ "; color: var(--emerald-500); font-weight: 800; }
.col-concern li::before { content: "⚠ "; color: var(--red-500); }

/* Interview Cards */
.interview-card {
  padding: 1rem; margin-bottom: 0.75rem;
  border-radius: 14px; border: 1px solid rgba(65,90,119,0.1);
  background: rgba(255,255,255,0.68);
}
.interview-dim {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--steel-700); margin-bottom: 0.3rem;
}
.interview-q { font-weight: 600; color: var(--ink-900); margin-bottom: 0.3rem; }
.interview-followup { font-size: 0.85rem; color: var(--ink-500); font-style: italic; }

.hint {
  font-size: 0.88rem; color: var(--ink-500);
  margin-bottom: 1rem; font-style: italic;
}

@media (max-width: 600px) {
  .two-col { grid-template-columns: 1fr; }
  .score-number { font-size: 3rem; }
}
