/* ==========================================================================
   FRESHDAR — Freshers AI Radar | Premium Design System & Stylesheet
   Architecture: Minimal + Premium + Technical + Editorial + Fast
   ========================================================================== */

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

:root {
  color-scheme: dark;

  /* Color System — Dark Obsidian & Deep Midnight Navy */
  --bg: #05070b;
  --bg-secondary: #080c14;
  --bg-tertiary: #0b111d;
  --surface: rgba(11, 17, 29, 0.75);
  --surface-solid: #0c121e;
  --surface-card: rgba(13, 20, 34, 0.7);
  --surface-elevated: #111a2c;
  --surface-hover: rgba(22, 34, 56, 0.85);

  /* Borders & Dividers */
  --border: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.045);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-highlight: rgba(56, 189, 248, 0.35);
  --border-focus: #38bdf8;

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-sub: #64748b;
  --text-dim: #475569;

  /* Accents & Brand Signals */
  --accent-cyan: #38bdf8;
  --accent-blue: #3b82f6;
  --accent-indigo: #6366f1;
  --accent-violet: #8b5cf6;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;

  /* Subtle Glows & Shadows */
  --glow-cyan: rgba(56, 189, 248, 0.16);
  --glow-indigo: rgba(99, 102, 241, 0.2);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.12);

  /* Radii & Transitions */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  /* Typography Stack */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Light Mode Overrides (Controlled Technical Contrast) */
html[data-theme="light"] {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-tertiary: #e2e8f0;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-solid: #ffffff;
  --surface-card: rgba(255, 255, 255, 0.95);
  --surface-elevated: #ffffff;
  --surface-hover: #f1f5f9;
  --border: rgba(15, 23, 42, 0.08);
  --border-subtle: rgba(15, 23, 42, 0.04);
  --border-strong: rgba(15, 23, 42, 0.16);
  --border-highlight: rgba(14, 165, 233, 0.4);
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-sub: #94a3b8;
  --text-dim: #cbd5e1;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.08);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

html {
  font-family: var(--font-sans);
  font-size: 15px;
  background-color: var(--bg);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

html[data-theme="light"] body {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
}

/* Ambient Radial Lighting */
.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -2;
  will-change: transform;
}

.ambient-one {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(99, 102, 241, 0.08) 50%, transparent 80%);
}

.ambient-two {
  bottom: 10%;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.09) 0%, rgba(56, 189, 248, 0.04) 60%, transparent 80%);
}

/* Container Shell */
.shell {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 36px);
  padding-right: clamp(16px, 4vw, 36px);
}

/* Core Utility Rules */
.hidden {
  display: none !important;
}

.app-view {
  width: 100%;
  display: block;
  animation: viewFadeIn 0.22s ease-out;
}

.app-view.hidden {
  display: none !important;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-body);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Custom Selection */
::selection {
  background: rgba(56, 189, 248, 0.28);
  color: #ffffff;
}

/* ==========================================================================
   Initial Boot Loader (Authentic & Non-Blocking)
   ========================================================================== */

.boot-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.boot-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.boot-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
}

.boot-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-main);
  margin-bottom: 6px;
}

.boot-brand span {
  color: var(--accent-cyan);
}

.boot-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.boot-progress-track {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}

.boot-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-cyan));
  border-radius: var(--radius-pill);
  box-shadow: 0 0 12px var(--accent-cyan);
  transition: width 0.3s ease;
}

.boot-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-sub);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 7, 11, 0.75);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

html[data-theme="light"] .site-header {
  background: rgba(248, 250, 252, 0.85);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Brand Lockup */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 0;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(99, 102, 241, 0.25));
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

.brand-mark i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.brand-copy {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.brand-copy strong {
  color: var(--accent-cyan);
  font-weight: 800;
}

/* Navigation Tabs */
.nav-center {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.nav-tab {
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-tab:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.nav-tab.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.09);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav-tab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.16);
  color: var(--accent-cyan);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.engine-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.engine-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-amber);
  box-shadow: 0 0 6px var(--accent-amber);
}

.engine-status i.online {
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.engine-status i.connecting {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.icon-button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  position: relative;
  transition: all var(--transition-fast);
}

.icon-button:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
}

.count-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--accent-cyan);
  color: #05070b;
  font-size: 9.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.docs-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.docs-link:hover {
  color: var(--accent-cyan);
  border-color: var(--border-highlight);
  background: rgba(56, 189, 248, 0.05);
}

/* ==========================================================================
   Hero Section (Editorial + Technical Radar)
   ========================================================================== */

.hero-section {
  position: relative;
  padding: clamp(40px, 8vw, 90px) 0 clamp(40px, 6vw, 70px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.22);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.08);
}

.hero-badge .pulse-orb {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse-dot 2s infinite ease-in-out;
}

.hero-badge span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

/* Hero Titles */
.hero-title {
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-cyan) 80%, var(--accent-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 17.5px);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Command Search in Hero */
.command-search {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 6px 8px 6px 16px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
  margin-bottom: 16px;
}

.command-search:focus-within {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.command-search i {
  font-style: normal;
  font-size: 16px;
  color: var(--text-sub);
  margin-right: 10px;
}

.command-search input {
  flex: 1;
  font-size: 14.5px;
  color: var(--text-main);
  background: transparent;
}

.command-search input::placeholder {
  color: var(--text-dim);
}

/* Search Suggestions Chips */
.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.search-suggestions span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-sub);
  text-transform: uppercase;
}

.search-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.search-tag:hover {
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  border-color: var(--border-highlight);
  transform: translateY(-1px);
}

/* Hero Action CTAs */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

/* Buttons System */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #05070b;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(56, 189, 248, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button.primary:hover {
  box-shadow: 0 6px 26px rgba(56, 189, 248, 0.55);
  transform: translateY(-1.5px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-strong);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-highlight);
  color: var(--accent-cyan);
  transform: translateY(-1.5px);
}

.button.ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.button.ghost:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.button-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse-dot 1.5s infinite;
}

/* Trust Signals Row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-sub);
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hero Visual: Interactive AI Career Radar Core (Reference 2 SharpLink Topology) */
.hero-radar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.radar-canvas-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#heroRadarCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating Crystalline Badge in Radar */
.radar-live-chip {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(11, 17, 29, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-main);
  white-space: nowrap;
}

.radar-live-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

/* ==========================================================================
   Metrics & Intelligence Strip
   ========================================================================== */

.intelligence-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 45px;
}

.metric-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  backdrop-filter: blur(12px);
}

.metric-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-highlight);
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.metric-icon.cyan { color: var(--accent-cyan); background: rgba(56, 189, 248, 0.08); border-color: rgba(56, 189, 248, 0.2); }
.metric-icon.violet { color: var(--accent-indigo); background: rgba(99, 102, 241, 0.08); border-color: rgba(99, 102, 241, 0.2); }
.metric-icon.green { color: var(--accent-emerald); background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.2); }
.metric-icon.orange { color: var(--accent-amber); background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.2); }

.metric-content {
  display: flex;
  flex-direction: column;
}

.metric-content span {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.metric-content strong {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 1.1;
  margin: 2px 0;
}

.metric-content small {
  font-size: 11px;
  color: var(--text-sub);
}

/* ==========================================================================
   Career Discovery Journey (Editorial 4-Step Architecture)
   ========================================================================== */

.journey-section {
  padding: 50px 0 60px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(7, 11, 18, 0.5);
  margin-bottom: 50px;
}

.journey-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.journey-header .section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.journey-header h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.journey-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.journey-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
  background: var(--surface-hover);
}

.journey-step {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.journey-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.journey-card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Workspace Layout (Filters Aside & Results Grid)
   ========================================================================== */

.workspace {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 70px;
}

/* Filter Panel */
.filter-panel {
  position: sticky;
  top: 86px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.filter-panel::-webkit-scrollbar {
  width: 5px;
}

.filter-panel::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.panel-heading .eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.panel-heading h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.text-button {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  transition: color var(--transition-fast);
}

.text-button:hover {
  color: var(--accent-rose);
}

/* Form Fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field input,
.field select {
  width: 100%;
  background: rgba(5, 7, 11, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.field input:focus,
.field select:focus {
  border-color: var(--border-focus);
  background: rgba(5, 7, 11, 0.9);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.15);
}

.field select option {
  background: #0b111d;
  color: #f8fafc;
}

.field-wide {
  margin-bottom: 16px;
}

.field-wide .input-shell {
  display: flex;
  align-items: center;
  background: rgba(5, 7, 11, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 2px 10px;
}

.field-wide .input-shell i {
  font-style: normal;
  color: var(--text-sub);
  margin-right: 8px;
}

.field-help {
  font-size: 11px;
  color: var(--accent-cyan);
  margin-top: 4px;
  min-height: 16px;
}

.quick-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.quick-locations button {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.quick-locations button:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  cursor: pointer;
}

.check-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent-cyan);
}

.check-row span {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.4;
}

.check-row small {
  display: block;
  font-size: 10.5px;
  color: var(--text-sub);
}

.search-submit {
  width: 100%;
  padding: 11px;
}

/* ==========================================================================
   Results Panel & Job Cards
   ========================================================================== */

.results-panel {
  display: flex;
  flex-direction: column;
}

.results-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.results-topbar .eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.results-topbar h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.result-count {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

.result-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-controls label {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.result-controls select {
  background: rgba(5, 7, 11, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 5px 8px;
  font-size: 12px;
  color: var(--text-main);
}

.view-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 2px;
}

.view-toggle button {
  padding: 4px 8px;
  font-size: 12px;
  color: var(--text-muted);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.view-toggle button.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
}

/* Notice Banners */
.notice {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--surface-card);
}

.notice[data-tone="success"] { border-color: rgba(16, 185, 129, 0.4); background: rgba(16, 185, 129, 0.08); color: var(--accent-emerald); }
.notice[data-tone="error"] { border-color: rgba(244, 63, 94, 0.4); background: rgba(244, 63, 94, 0.08); color: var(--accent-rose); }
.notice[data-tone="warning"] { border-color: rgba(245, 158, 11, 0.4); background: rgba(245, 158, 11, 0.08); color: var(--accent-amber); }
.notice.hidden { display: none; }

/* Jobs Grid */
.jobs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 18px;
}

.jobs.list-view {
  grid-template-columns: 1fr;
}

/* Job Card */
.job-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  backdrop-filter: blur(12px);
}

.job-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-md), 0 0 30px rgba(56, 189, 248, 0.08);
}

.job-card.saved {
  border-color: rgba(99, 102, 241, 0.4);
}

/* Compare Checkbox */
.compare-check {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 2;
}

.compare-check input {
  accent-color: var(--accent-cyan);
}

/* Card Header Lockup */
.job-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding-right: 50px;
}

.company-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(99, 102, 241, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  flex-shrink: 0;
}

.company-lockup .company {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.company-lockup .title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

/* Match Score Ring (Radial SVG Gauge) */
.score-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(var(--accent-cyan) calc(var(--score, 0) * 1%), rgba(255, 255, 255, 0.08) 0);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-ring > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--surface-solid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-ring strong {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.score-ring span {
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

/* Badges List */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.badge.role { background: rgba(99, 102, 241, 0.1); border-color: rgba(99, 102, 241, 0.25); color: #a5b4fc; }
.badge.fresher { background: rgba(56, 189, 248, 0.1); border-color: rgba(56, 189, 248, 0.25); color: var(--accent-cyan); }
.badge.new { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.25); color: var(--accent-emerald); }
.badge.closing { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.25); color: var(--accent-amber); }
.badge.opportunity { background: rgba(255, 255, 255, 0.04); color: var(--text-body); }
.badge.batch-badge { background: rgba(56, 189, 248, 0.12); border-color: rgba(56, 189, 248, 0.35); color: var(--accent-cyan); font-weight: 700; }

/* Job Meta Grid */
.job-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 11.5px;
}

.meta-item dt {
  color: var(--text-sub);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.meta-item dd {
  color: var(--text-main);
  font-weight: 500;
  margin-top: 1px;
}

/* Eligibility Box */
.eligibility-box {
  background: rgba(56, 189, 248, 0.04);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 11.5px;
}

.eligibility-box strong {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.eligibility-box p {
  color: var(--text-body);
  margin: 0;
}

/* Skills Chips */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.badge.skill.matched {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--accent-emerald);
}

.badge.skill.gap {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--accent-amber);
}

/* Match Details Accordion */
.match-details {
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  margin-bottom: 14px;
  font-size: 12px;
}

.match-details summary {
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.match-details summary:hover {
  color: var(--accent-cyan);
}

.match-details .reasons {
  margin-top: 8px;
  padding-left: 18px;
  color: var(--text-body);
}

.match-details .reasons li {
  margin-bottom: 4px;
}

/* Job Action Buttons */
.job-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: auto;
}

.job-actions .apply {
  font-size: 12.5px;
  padding: 9px 16px;
}

.job-actions .track {
  font-size: 12.5px;
  padding: 9px 14px;
}

/* Load More Wrap */
.load-more-wrap {
  text-align: center;
  margin-top: 30px;
}

/* Empty State */
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--surface-card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}

.empty span {
  font-size: 32px;
  color: var(--text-sub);
  margin-bottom: 12px;
  display: block;
}

.empty h3 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.empty p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* Skeleton Loading Cards */
.job-card.skeleton {
  pointer-events: none;
  border-color: var(--border-subtle);
}

.skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.09) 50%, rgba(255, 255, 255, 0.04) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s infinite;
  margin-bottom: 10px;
}

.skeleton-line.short { width: 40%; }
.skeleton-line.title-line { width: 85%; height: 18px; }
.skeleton-line.medium { width: 65%; }

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==========================================================================
   Product Explainer & SEO Section
   ========================================================================== */

.product-explainer {
  margin: 60px auto 40px;
  padding: 45px 36px;
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.product-explainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), rgba(99, 102, 241, 0.4), transparent);
}

.explainer-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.explainer-head .eyebrow {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.explainer-head h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.explainer-lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.explainer-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.explainer-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
}

.explainer-card .card-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.explainer-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.explainer-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.seo-quick-links {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  text-align: center;
}

.seo-quick-links h3 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.quick-link-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.seo-link-btn {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.seo-link-btn:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--border-highlight);
  color: var(--accent-cyan);
  transform: translateY(-1px);
}

/* ==========================================================================
   Subpages: Applications Kanban & Profile
   ========================================================================== */

.subpage {
  padding: 30px 0 60px;
}

.subpage-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.subpage-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.subpage-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.subpage-head p {
  color: var(--text-muted);
  font-size: 13.5px;
}

/* Applications Pipeline Board */
.pipeline-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.pipeline-stats .metric {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
}

.pipeline-stats .metric strong {
  font-size: 22px;
  color: var(--text-main);
  display: block;
}

.pipeline-stats .metric span {
  font-size: 11px;
  color: var(--text-sub);
  text-transform: uppercase;
}

.application-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.application-toolbar h2 {
  font-size: 18px;
}

.application-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.application-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.application-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.application-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Settings Grid (Profile View) */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
}

.settings-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.settings-card .eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.settings-card h2 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.settings-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 14px;
  text-align: center;
}

.upload-zone:hover {
  border-color: var(--border-focus);
  background: rgba(56, 189, 248, 0.03);
}

.upload-zone input {
  display: none;
}

.upload-zone span {
  font-size: 28px;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}

.upload-zone b {
  font-size: 13.5px;
  color: var(--text-main);
}

.upload-zone small {
  font-size: 11px;
  color: var(--text-sub);
  margin-top: 4px;
}

/* ==========================================================================
   Compare Tray & Dialog
   ========================================================================== */

.compare-tray {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 17, 29, 0.92);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  z-index: 900;
}

.compare-tray.hidden { display: none; }

.compare-tray span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.compare-dialog {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  color: var(--text-main);
  max-width: 960px;
  width: 90vw;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.compare-dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.compare-col {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}

/* ==========================================================================
   User Navigation Badge & Auth Buttons
   ========================================================================== */

.user-nav-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 10px 3px 4px;
}

.user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-indigo));
  color: #05070b;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.completion-chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
}

/* ==========================================================================
   Auth Modal & Forms
   ========================================================================== */

.auth-dialog {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  color: var(--text-main);
  max-width: 440px;
  width: 92vw;
  padding: 0;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(56, 189, 248, 0.1);
  margin: auto;
}

.auth-dialog::backdrop {
  background: rgba(5, 7, 11, 0.85);
  backdrop-filter: blur(14px);
}

.auth-card {
  padding: 32px 28px;
}

.auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth-brand {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.auth-brand span {
  color: var(--accent-cyan);
}

.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.auth-tab.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form.hidden {
  display: none;
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-highlight);
}

.divider-or {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-sub);
  font-size: 11px;
  margin: 6px 0;
}

.divider-or::before,
.divider-or::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}

.divider-or span {
  padding: 0 10px;
  text-transform: uppercase;
}

.auth-error {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: var(--accent-rose);
  font-size: 12.5px;
  margin-bottom: 12px;
}

.auth-error.hidden {
  display: none;
}

/* ==========================================================================
   Profile Completion Meter & Form
   ========================================================================== */

.profile-completion-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(14, 22, 36, 0.8), rgba(22, 34, 56, 0.6));
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.completion-meter-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.completion-meter-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
}

.completion-percent {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-cyan);
}

.completion-bar-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.completion-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-cyan), var(--accent-emerald));
  border-radius: var(--radius-pill);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.missing-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.missing-item {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

/* ==========================================================================
   Founder & Leadership Section
   ========================================================================== */

.founder-section {
  margin-top: 36px;
  margin-bottom: 24px;
}

.founder-card {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  background-image: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 60%),
                    radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-indigo), transparent);
}

.founder-info {
  flex: 1;
  max-width: 580px;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-highlight);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.founder-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.founder-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 20px;
}

.founder-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: #0077b5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 119, 181, 0.35);
}

.founder-linkedin-link:hover {
  background: #008cd5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.5);
}

.founder-badge-box {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-width: 290px;
}

/* Custom Always-Visible LinkedIn Member Card */
.custom-linkedin-card {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(8, 12, 20, 0.95));
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 119, 181, 0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.custom-linkedin-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0077b5, #00a0dc, #38bdf8);
}

.custom-li-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-li-logo {
  background: #0077b5;
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
  line-height: 1.2;
}

.custom-li-badge-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

.custom-li-body {
  display: flex;
  align-items: center;
  gap: 14px;
}

.custom-li-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077b5, #6366f1);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(0, 119, 181, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.custom-li-info {
  flex: 1;
  min-width: 0;
}

.custom-li-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-li-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: #0077b5;
  color: #ffffff;
  font-size: 10px;
  border-radius: 50%;
}

.custom-li-headline {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
  line-height: 1.4;
}

.custom-li-loc {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

.custom-li-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: #0077b5;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.custom-li-btn:hover {
  background: #008cd5;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 119, 181, 0.5);
  color: #ffffff;
}

.official-li-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Sidebar About Page Promo Card in Filter Panel */
.sidebar-about-promo {
  margin-top: 20px;
  padding: 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  background-image: radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.08) 0%, transparent 60%);
}

.sidebar-about-promo:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
  transform: translateY(-2px);
}

.sidebar-about-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-highlight);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.sidebar-about-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.sidebar-about-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sidebar-about-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.sidebar-about-btn:hover {
  background: var(--accent-cyan);
  color: #05070b;
  border-color: var(--accent-cyan);
}

/* Dedicated About Page Hero Section */
.about-hero-card {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-image: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.12) 0%, transparent 50%),
                    radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
}

.about-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-highlight);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.about-hero-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 14px;
  max-width: 820px;
}

.about-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 780px;
  margin-bottom: 28px;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.about-stat-item strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

.about-stat-item span {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* About Section Header Common */
.about-section-header {
  margin-bottom: 20px;
}

.about-section-header h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-main);
  margin-top: 4px;
  margin-bottom: 6px;
}

.about-section-header p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Problem vs Solution Comparison Grid */
.about-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.comparison-card {
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-normal);
}

.broken-card {
  border-color: rgba(244, 63, 94, 0.25);
  background: rgba(244, 63, 94, 0.02);
}

.broken-card:hover {
  border-color: rgba(244, 63, 94, 0.45);
}

.solution-card {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.03);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.06);
}

.solution-card:hover {
  border-color: var(--accent-emerald);
}

.comparison-header {
  margin-bottom: 16px;
}

.comparison-tag {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.broken-tag {
  background: rgba(244, 63, 94, 0.12);
  color: var(--accent-rose);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.solution-tag {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-list li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body);
}

.comparison-list li strong {
  color: var(--text-main);
  display: inline;
}

/* Supported ATS Integrations Grid */
.about-ats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.about-ats-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.about-ats-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.about-ats-item .ats-icon {
  font-size: 22px;
}

.about-ats-item .ats-info strong {
  display: block;
  font-size: 13px;
  color: var(--text-main);
}

.about-ats-item .ats-info span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Technical Architecture Cards */
.about-tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition-fast);
}

.about-tech-card:hover {
  border-color: var(--border-highlight);
  background: rgba(255, 255, 255, 0.05);
}

/* Call To Action (CTA) Card */
.about-cta-card {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-image: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
}

.about-cta-content h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.about-cta-content p {
  font-size: 15px;
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Dedicated About & Founder Spotlight Layout */
.founder-spotlight-card {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-image: radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.1) 0%, transparent 60%),
                    radial-gradient(circle at 85% 85%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
}

.founder-spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  margin-top: 14px;
}

.founder-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-highlight);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.founder-spotlight-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.founder-spotlight-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-top: 6px;
  margin-bottom: 14px;
}

.founder-spotlight-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}

.founder-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.founder-spec-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.founder-spotlight-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.founder-primary-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  background: #0077b5;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0, 119, 181, 0.35);
}

.founder-primary-linkedin-btn:hover {
  background: #008cd5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.5);
  color: #ffffff;
}

.founder-badge-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-founder-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid var(--border-highlight);
  transition: var(--transition-fast);
}

.footer-linkedin-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  color: #ffffff;
}

@media (max-width: 900px) {
  .founder-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-comparison-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-card {
    padding: 32px 24px;
  }
  .about-hero-title {
    font-size: 28px;
  }
  .founder-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .founder-badge-box {
    width: 100%;
    min-width: unset;
  }
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10000;
  pointer-events: none;
}

.toast {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: rgba(11, 17, 29, 0.95);
  border: 1px solid var(--border-strong);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toast-slide 0.3s ease;
  pointer-events: auto;
}

.toast.toast-success {
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
}

.toast.toast-error {
  border-color: rgba(244, 63, 94, 0.4);
  color: var(--accent-rose);
}

@keyframes toast-slide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-radar-wrapper {
    min-height: 360px;
  }
  .workspace {
    grid-template-columns: 1fr;
  }
  .filter-panel {
    position: static;
  }
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
  .intelligence-strip {
    grid-template-columns: 1fr 1fr;
  }
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .jobs {
    grid-template-columns: 1fr;
  }
  .job-card-head {
    padding-right: 0;
  }
  .compare-check {
    position: static;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .intelligence-strip {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .quick-link-buttons {
    flex-direction: column;
  }
}

/* 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;
    scroll-behavior: auto !important;
  }
}
