/* ============================================
   CUET College Campus — Global Design System
   ============================================ */

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

:root {
  --indigo: #6366f1;
  --violet: #a855f7;
  --cyan: #06b6d4;
  --amber: #f59e0b;
  --emerald: #10b981;
  --rose: #f43f5e;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --card-bg: rgba(255,255,255,0.85);
  --card-border: rgba(203,213,225,0.6);
  --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --card-radius: 18px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #f0f2f7;
  color: var(--slate-900);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Background blobs ─────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c7d2fe, #e0e7ff);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f5d0fe, #fae8ff);
  top: 50%; right: -200px;
  animation-delay: 4s;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #bfdbfe, #dbeafe);
  bottom: -100px; left: 40%;
  animation-delay: 8s;
}
@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

.relative-z { position: relative; z-index: 1; }

/* ── Container ─────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Card ──────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Header / Navbar ───────────────────────── */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 12px;
  padding-bottom: 4px;
}
.header-inner { padding-top: 0; }
.navbar {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  transition: box-shadow 0.2s;
}
.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-wordmark {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-cuet {
  color: var(--indigo);
  font-weight: 800;
}
.logo-campus-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 3px;
}
.logo-campus {
  color: var(--slate-900);
  font-weight: 800;
}
.logo-sparkle {
  color: var(--amber);
  display: inline-flex;
  align-items: center;
}
.logo-sparkle svg { width: 14px; height: 14px; }
.logo-tagline {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
  display: none;
}
@media (min-width: 640px) { .logo-tagline { display: block; } }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  text-decoration: none;
  color: var(--slate-600);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover, .nav-link.active {
  background: var(--slate-100);
  color: var(--slate-900);
}

/* ── Main content ──────────────────────────── */
.main-content { padding: 2rem 0 3rem; }
@media (min-width: 640px) { .main-content { padding: 3rem 0 4rem; } }
.page-layout { display: flex; flex-direction: column; gap: 2rem; }
.animate-in {
  animation: fadeSlideUp 0.5s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ──────────────────────────────────── */
.hero-section { text-align: center; padding: 1.5rem 0 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fffbeb, #fff, #fffbeb);
  border: 1px solid #fde68a;
  box-shadow: 0 2px 8px rgba(245,158,11,0.12);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #92400e;
  margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.12;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
}
.italic-text { font-style: italic; }
.highlight-word {
  position: relative;
  display: inline-block;
}
.underline-svg {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 12px;
}
.mobile-break { display: none; }
@media (max-width: 640px) { .mobile-break { display: block; } }
.hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-600);
  max-width: 680px;
  margin: 0 auto 1rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 8px;
}
.stat-item { color: var(--slate-700); font-weight: 500; }
.stat-dot { color: var(--slate-400); }

/* ── Ticker ────────────────────────────────── */
.ticker-wrap {
  background: linear-gradient(135deg, rgba(99,102,241,0.07) 0%, rgba(168,85,247,0.05) 100%);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.5rem;
  overflow: hidden;
}
.ticker-headline { text-align: center; margin-bottom: 1rem; }
.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--indigo);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: #a5f3fc;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.ticker-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
}
.ticker-grad {
  background: linear-gradient(90deg, var(--indigo), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ticker-sub { font-size: 0.8rem; color: var(--slate-500); margin-top: 4px; }
.ticker-viewport { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 2.5rem;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--slate-700);
}
.ticker-star { color: var(--indigo); font-size: 0.7rem; }
.ticker-college { font-weight: 600; }
.ticker-sep { color: var(--slate-400); }
.ticker-program { color: var(--slate-500); font-style: italic; }

/* ── Form + Sidebar grid ───────────────────── */
.form-sidebar-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .form-sidebar-grid {
    grid-template-columns: 1fr 360px;
    align-items: start;
  }
}
.form-column { display: flex; flex-direction: column; gap: 1.25rem; }

/* ── Step Cards ────────────────────────────── */
.step-card { padding: 1.5rem; }
@media (min-width: 640px) { .step-card { padding: 1.75rem; } }
.step-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--slate-900);
  line-height: 1.1;
}
.step-sub { margin-top: 4px; font-size: 0.85rem; color: var(--slate-500); }

/* ── Subject Chips ─────────────────────────── */
.subject-groups { display: flex; flex-direction: column; gap: 1.75rem; }
.subject-group {}
.group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.group-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lang-dot   { background: var(--amber); }
.domain-dot { background: var(--emerald); }
.apt-dot    { background: var(--indigo); }
.group-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-600);
}
.group-line {
  flex: 1;
  height: 1px;
  background: var(--slate-100);
}
.chips-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.chip:hover {
  border-color: var(--indigo);
  background: #eef2ff;
  color: var(--indigo);
  transform: translateY(-1px);
}
.chip.selected {
  border-color: var(--indigo);
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  color: var(--indigo);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(99,102,241,0.2);
}
.chip.selected::before {
  content: '✓';
  font-size: 0.7rem;
  font-weight: 700;
}

/* ── Score Inputs ──────────────────────────── */
.score-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 1.5rem;
  border: 1.5px dashed var(--slate-200);
  border-radius: 12px;
  background: rgba(248,250,252,0.6);
  font-size: 0.875rem;
  color: var(--slate-400);
  text-align: center;
}
.score-empty-icon {
  width: 32px; height: 32px;
  background: rgba(203,213,225,0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--slate-500);
}
.scores-grid { display: grid; gap: 12px; }
@media (min-width: 640px) { .scores-grid { grid-template-columns: 1fr 1fr; } }
.score-field-wrap { display: flex; flex-direction: column; gap: 5px; }
.score-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.score-input-group { display: flex; align-items: center; gap: 0; }
.score-field {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.score-field:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.score-max {
  padding: 10px 10px;
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 500;
}
.score-candidate-hint {
  font-size: 0.72rem;
  color: var(--slate-400);
  margin-bottom: 3px;
}
/* Live composite preview */
.composite-preview {
  margin-top: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border: 1.5px solid #c7d2fe;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.composite-label { font-size: 0.75rem; font-weight: 600; color: var(--slate-600); text-transform: uppercase; letter-spacing: 0.06em; }
.composite-value { font-size: 2rem; font-weight: 800; color: var(--indigo); line-height: 1.1; transition: color 0.3s; }
.composite-hint  { font-size: 0.72rem; color: var(--slate-400); }

/* ── Category ──────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (min-width: 640px) {
  .category-grid { grid-template-columns: repeat(6, 1fr); }
}
.cat-btn {
  padding: 12px 8px;
  border-radius: 12px;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cat-btn:hover:not(.active) {
  border-color: var(--indigo);
  background: #eef2ff;
}
.cat-btn.active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  box-shadow: 0 6px 20px -6px rgba(99,102,241,0.55);
}
.cat-name { font-size: 0.82rem; font-weight: 600; }
.cat-code { font-size: 0.7rem; opacity: 0.7; margin-top: 2px; }

/* ── Field Input ───────────────────────────── */
.field-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 11px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field-input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.field-hint {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--slate-400);
}
.required-star { color: var(--rose); }
.optional-tag { font-size: 0.85rem; color: var(--slate-400); font-style: italic; font-family: var(--font-body); }

/* ── Search wrap ───────────────────────────── */
.search-wrap { position: relative; }
.search-icon {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
}
.search-field { padding-right: 40px; }
.search-dropdown {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 4px);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  max-height: 240px;
  overflow-y: auto;
  z-index: 30;
}
.dropdown-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.1s;
  border-bottom: 1px solid var(--slate-100);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: #eef2ff; color: var(--indigo); }
.dropdown-item-college { font-weight: 600; color: var(--slate-900); }
.dropdown-item-course  { color: var(--slate-500); font-size: 0.8rem; }
.selected-dream {
  margin-top: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border: 1.5px solid #c7d2fe;
  border-radius: 10px;
  font-size: 0.875rem;
}
.selected-dream-college { font-weight: 600; color: var(--indigo); }
.selected-dream-course  { color: var(--slate-600); font-size: 0.82rem; }
.selected-dream-meta    { color: var(--slate-400); font-size: 0.72rem; margin-top: 3px; }
.hidden { display: none !important; }

/* ── Buttons ───────────────────────────────── */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 24px -6px rgba(99,102,241,0.5);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -6px rgba(99,102,241,0.6);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--slate-700);
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-secondary:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: #eef2ff;
}
.cta-btn { width: 100%; font-size: 1.05rem; }
.cta-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: -4px;
}
.spinner {
  width: 20px; height: 20px;
  animation: spin 0.8s linear infinite;
}
.big-spinner { width: 56px; height: 56px; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── Sidebar ───────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
  }
}
.sidebar-card { padding: 1.25rem; }
.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sidebar-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.sidebar-card-title { font-weight: 600; font-size: 0.92rem; color: var(--slate-900); }
.model-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.model-list li { display: flex; gap: 8px; font-size: 0.82rem; color: var(--slate-700); }
.model-arrow { color: var(--indigo); margin-top: 1px; flex-shrink: 0; }
.math-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.math-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--slate-700); }
.math-num {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: #cffafe;
  color: #0e7490;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.privacy-card {
  background: linear-gradient(135deg, #f5f3ff, #fdf4ff, #fff) !important;
}
.privacy-title { font-weight: 600; font-size: 0.875rem; color: var(--slate-900); margin-bottom: 6px; }
.privacy-text  { font-size: 0.78rem; color: var(--slate-600); line-height: 1.6; }
.trends-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trend-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}
.trend-num { font-size: 1.1rem; font-weight: 800; color: var(--indigo); }
.trend-label { font-size: 0.7rem; color: var(--slate-500); margin-top: 2px; }

/* ── Footer ────────────────────────────────── */
.site-footer { margin-top: 4rem; padding-bottom: 2rem; }
.footer-hr {
  border: none;
  border-top: 1px solid var(--slate-200);
  margin-bottom: 1.25rem;
  opacity: 0.6;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--slate-500);
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-brand { font-weight: 700; color: var(--slate-700); }
.footer-disclaimer { color: var(--slate-400); }

/* ============================================
   RESULTS PAGE
   ============================================ */

/* Loading */
.results-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  min-height: 60vh;
}
.loading-spinner-wrap { margin-bottom: 1.5rem; }
.loading-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.loading-sub { font-size: 0.9rem; color: var(--slate-500); margin-bottom: 1.5rem; }
.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--slate-400);
}
.loading-step { opacity: 0; transition: opacity 0.3s; }
.loading-step.visible { opacity: 1; color: var(--emerald); }

/* Result Hero */
.result-hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 50%, #fdf4ff 100%);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: var(--card-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.result-hero-inner { margin-bottom: 1rem; }
.result-greeting {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.result-emoji { font-size: 2rem; }
.result-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--slate-900);
}
.result-meta { font-size: 0.875rem; color: var(--slate-500); }
.result-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-info { background: #dbeafe; color: #1e40af; border-color: #bfdbfe; }
.summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid transparent;
}
.chip-safe    { background: #d1fae5; color: #065f46; border-color: #a7f3d0; }
.chip-moderate{ background: #fef9c3; color: #713f12; border-color: #fde68a; }
.chip-reach   { background: #ffe4e6; color: #9f1239; border-color: #fecdd3; }

/* Dream Spotlight */
.dream-spotlight {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.dream-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.dream-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a5b4fc;
  margin-bottom: 8px;
}
.dream-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 4px;
}
.dream-subtitle { font-size: 0.9rem; color: #c7d2fe; margin-bottom: 1rem; }
.dream-prob-row { display: flex; align-items: center; gap: 12px; }
.dream-prob-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.dream-prob-label   { font-size: 0.82rem; color: #a5b4fc; }
.dream-prob-verdict { font-size: 0.82rem; font-weight: 600; margin-top: 3px; }
.dream-gap-text     { font-size: 0.82rem; color: #c7d2fe; margin: 10px 0 4px; }
.dream-cutoff-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.82rem;
  color: #c7d2fe;
}
.dream-cutoff-item { display: flex; flex-direction: column; gap: 2px; }
.dream-cutoff-val { font-weight: 700; color: #fff; font-size: 0.95rem; }

/* Filters Bar */
.filters-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.25rem;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .filters-bar { flex-direction: row; align-items: center; justify-content: space-between; }
}
.filters-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label { font-size: 0.8rem; font-weight: 600; color: var(--slate-500); }
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-chip {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover { border-color: var(--indigo); color: var(--indigo); background: #eef2ff; }
.filter-chip.active {
  border-color: var(--indigo);
  background: var(--indigo);
  color: #fff;
}
.filters-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mini-search { width: 200px !important; font-size: 0.82rem; padding: 8px 12px; }
.sort-select {
  width: auto !important;
  font-size: 0.82rem;
  padding: 8px 12px;
  cursor: pointer;
}

/* Results Grid */
.results-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .results-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* Result Card */
.result-card {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 1.25rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}
.result-card.safe::before    { background: linear-gradient(90deg, var(--emerald), #34d399); }
.result-card.moderate::before { background: linear-gradient(90deg, var(--amber), #fcd34d); }
.result-card.reach::before   { background: linear-gradient(90deg, var(--rose), #fb7185); }
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: rgba(99,102,241,0.2);
}
.result-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.result-college-name { font-weight: 700; font-size: 0.9rem; color: var(--slate-900); line-height: 1.3; flex: 1; }
.prob-badge {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}
.prob-badge.safe     { background: #d1fae5; color: #065f46; }
.prob-badge.moderate { background: #fef9c3; color: #713f12; }
.prob-badge.reach    { background: #ffe4e6; color: #9f1239; }
.result-program { font-size: 0.8rem; color: var(--slate-500); margin-bottom: 14px; font-style: italic; }
.prob-bar-wrap { margin-bottom: 12px; }
.prob-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-bottom: 4px;
}
.prob-bar-label span:last-child { font-weight: 700; color: var(--slate-700); }
.prob-bar-bg {
  height: 6px;
  background: var(--slate-100);
  border-radius: 999px;
  overflow: hidden;
}
.prob-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1s cubic-bezier(.4,.0,.2,1);
}
.safe    .prob-bar-fill { background: linear-gradient(90deg, var(--emerald), #34d399); }
.moderate .prob-bar-fill { background: linear-gradient(90deg, var(--amber), #fcd34d); }
.reach   .prob-bar-fill { background: linear-gradient(90deg, var(--rose), #fb7185); }
/* 3-Round cutoff row */
.cutoff-rounds-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 10px 0;
  padding: 8px 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 10px;
  overflow-x: auto;
}
.round-cell { display: flex; flex-direction: column; gap: 2px; text-align: center; flex-shrink: 0; }
.round-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-400); }
.round-val   { font-size: 0.82rem; font-weight: 700; color: var(--slate-700); }
.round-arrow { color: var(--slate-300); font-size: 0.8rem; flex-shrink: 0; }
.proj-cell   { background: linear-gradient(135deg, #eef2ff, #f5f3ff); border-radius: 7px; padding: 4px 8px; }
.proj-val    { color: var(--indigo) !important; font-size: 0.76rem; }

/* Result card footer */
.result-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--slate-400);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--slate-100);
}
.footer-left  { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.footer-right { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.gap-positive { color: var(--emerald); font-weight: 700; font-size: 0.75rem; }
.gap-negative { color: var(--rose);    font-weight: 700; font-size: 0.75rem; }
.seats-info   { color: var(--slate-500); font-size: 0.72rem; }
.competition-ratio { color: var(--slate-500); font-size: 0.72rem; }
.trend-badge  { font-size: 0.68rem; padding: 2px 7px; border-radius: 999px; font-weight: 600; background: var(--slate-100); color: var(--slate-500); }
.trend-ease   { background: #d1fae5; color: #065f46; }
.trend-slight { background: #fef9c3; color: #713f12; }
.trend-stable { background: #dbeafe; color: #1e40af; }
.confidence-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-500);
  font-weight: 600;
}
.confidence-badge.high   { background: #d1fae5; color: #065f46; }
.confidence-badge.medium { background: #fef9c3; color: #713f12; }
.confidence-badge.low    { background: #ffe4e6; color: #9f1239; }

/* No results */
.no-results-msg {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--slate-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Back CTA */
.back-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 2rem 0;
  text-align: center;
}
.back-hint { font-size: 0.78rem; color: var(--slate-400); max-width: 500px; }

/* No data state */
.no-data-state {
  text-align: center;
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-height: 60vh;
  justify-content: center;
}
.no-data-icon { font-size: 3rem; }
.no-data-state h2 { font-family: var(--font-display); font-size: 1.75rem; }
.no-data-state p { color: var(--slate-500); max-width: 400px; }

/* ============================================
   AI CHAT WIDGET
   ============================================ */

/* FAB button */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 24px -4px rgba(99,102,241,0.55);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.chat-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -4px rgba(99,102,241,0.65);
}
.chat-fab-icon { flex-shrink: 0; }
.chat-fab-text { font-size: 0.82rem; }
.chat-notif {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: #f43f5e;
  border-radius: 50%;
  border: 2px solid white;
  display: none;
}
.chat-notif.visible { display: block; animation: pulse 1.8s ease-in-out infinite; }

/* Chat panel */
.chat-panel {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 901;
  width: 370px;
  max-height: 540px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
@media (max-width: 420px) {
  .chat-panel {
    right: 0; left: 0; bottom: 0;
    width: 100%; max-height: 70vh;
    border-radius: 20px 20px 0 0;
  }
  .chat-fab { right: 16px; bottom: 16px; }
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  color: #fff;
  flex-shrink: 0;
}
.chat-header-left { display: flex; align-items: center; gap: 10px; }
.chat-avatar { font-size: 1.5rem; line-height: 1; }
.chat-name { font-size: 0.9rem; font-weight: 700; }
.chat-subtitle { font-size: 0.72rem; color: #a5b4fc; margin-top: 1px; }
.chat-close-btn {
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 8px;
  color: #fff;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.15s;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.22); }

/* Messages body */
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chat-intro {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-500);
  padding: 8px 12px;
  background: var(--slate-50);
  border-radius: 10px;
  line-height: 1.5;
}
.chat-intro-star { color: var(--indigo); margin-right: 4px; }

/* Message rows */
.chat-msg { display: flex; }
.chat-msg-user { justify-content: flex-end; }
.chat-msg-assistant { justify-content: flex-start; }
.chat-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.chat-msg-user .chat-bubble {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg-assistant .chat-bubble {
  background: var(--slate-100);
  color: var(--slate-900);
  border-bottom-left-radius: 4px;
}

/* Typing indicator */
.chat-typing-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px 2px;
  flex-shrink: 0;
}
.typing-dot {
  width: 6px; height: 6px;
  background: var(--slate-400);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-5px); }
}

/* Input row */
.chat-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--slate-100);
  flex-shrink: 0;
}
.chat-input-field {
  flex: 1;
  padding: 9px 13px;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.chat-input-field:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.chat-send-btn {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  border: none;
  border-radius: 10px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.chat-send-btn:hover { opacity: 0.9; transform: scale(1.05); }

/* ── Entry Gate Modal ────────────────────────────────────────── */
body.gate-open { overflow: hidden; }

#entryGate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: gateFadeIn 0.3s ease both;
}
#entryGate.gate-leaving { animation: gateFadeOut 0.3s ease both; }

@keyframes gateFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes gateFadeOut { from { opacity: 1; } to { opacity: 0; } }

.gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 34, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gate-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 36px 32px;
  max-width: 468px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  animation: gateCardIn 0.42s cubic-bezier(0.34,1.4,0.64,1) both;
  animation-delay: 0.05s;
}
@keyframes gateCardIn {
  from { opacity: 0; transform: translateY(28px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #ede9fe 0%, #dbeafe 100%);
  border: 1px solid #c4b5fd;
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #5b21b6;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.gate-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7c3aed;
  animation: gatePulse 1.8s ease-in-out infinite;
}
@keyframes gatePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.4); }
}

.gate-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.18;
  color: #0f172a;
  margin-bottom: 11px;
  letter-spacing: -0.02em;
}
.gate-sub {
  font-size: 0.915rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 18px;
}

.gate-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
}
.gate-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.865rem;
  color: #334155;
  line-height: 1.4;
}
.gate-check {
  color: #10b981;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.04em;
}

.gate-form { display: flex; flex-direction: column; gap: 13px; }

.gate-field { display: flex; flex-direction: column; gap: 5px; }

.gate-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gate-required { color: #ef4444; }
.gate-optional {
  text-transform: none;
  font-weight: 400;
  color: #64748b;
  font-size: 0.75rem;
  letter-spacing: 0;
}

.gate-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: #0f172a;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.gate-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.13);
}
.gate-input::placeholder { color: #94a3b8; }

.gate-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.gate-phone-wrap:focus-within {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.13);
}
.gate-phone-prefix {
  background: #f1f5f9;
  border-right: 1.5px solid #e2e8f0;
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 4px;
}
.gate-phone-input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
}
.gate-phone-input:focus { box-shadow: none !important; }

.gate-hidden { display: none !important; }

.gate-error {
  font-size: 0.8rem;
  color: #dc2626;
  padding: 7px 11px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}

.gate-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(99,102,241,0.38);
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.gate-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 7px 22px rgba(99,102,241,0.46);
}
.gate-btn:active { transform: translateY(0); }

.gate-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.01em;
}

.gate-fine-print {
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.55;
  text-align: center;
  margin-top: 9px;
}

@media (max-width: 500px) {
  .gate-card { padding: 28px 18px 24px; border-radius: 20px; }
  .gate-title { font-size: 1.5rem; }
}

/* ── Step 4: Details row (name + phone) ─────────────────────── */
.details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .details-row { grid-template-columns: 1fr; }
}
.details-field { display: flex; flex-direction: column; gap: 6px; }
.details-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-600);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.phone-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.phone-input-wrap:focus-within {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.phone-prefix {
  padding: 0 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--slate-50);
  border-right: 1.5px solid var(--slate-200);
  align-self: stretch;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.phone-field {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
}
.phone-field:focus { outline: none; box-shadow: none !important; }

/* ── Accessibility: Reduced Motion ────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
  .blob { animation: none; }
}

/* ── Print Styles ─────────────────────────── */
@media print {
  .bg-blobs, .sticky-header, .chat-fab, #chatRoot,
  .filters-bar, .back-cta, .site-footer { display: none !important; }
  .result-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
  .results-grid { display: block; }
  .result-card { margin-bottom: 12px; }
  body { background: #fff; }
}
