/* ==========================================================================
   AiJobFinder v8.1 — Cosmic Theme with Floating Paper Labels
   Minimalist Page Loader · Cosmic Radar · Zero Page Scroll (Results Scroll Only)
   ========================================================================== */

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

:root {
  --bg-cosmos:        #07070D;
  --bg-card:          rgba(14, 14, 24, 0.88);
  --bg-card-hover:    rgba(20, 20, 34, 0.97);

  --border:           rgba(255, 255, 255, 0.07);
  --border-hover:     rgba(217, 119, 87, 0.5);

  --text-primary:     #F2F2F6;
  --text-secondary:   #9898AE;
  --text-muted:       #5C5C78;

  --accent:           #D97757;
  --accent-2:         #EA8868;
  --accent-glow:      rgba(217, 119, 87, 0.32);
  --accent-bg:        rgba(217, 119, 87, 0.1);

  --purple:           #8B5CF6;
  --purple-glow:      rgba(139, 92, 246, 0.35);
  --teal:             #34D399;

  --radar-accent:     #EA8868;
  --radar-purple:     #8B5CF6;
  --radar-glow:       rgba(217, 119, 87, 0.38);

  --badge-remote-bg:  rgba(34, 197, 94, 0.1);
  --badge-remote-txt: #4ADE80;
  --badge-remote-bdr: rgba(34, 197, 94, 0.25);
  --badge-onsite-bg:  rgba(56, 189, 248, 0.1);
  --badge-onsite-txt: #38BDF8;
  --badge-onsite-bdr: rgba(56, 189, 248, 0.25);
  --badge-hybrid-bg:  rgba(245, 158, 11, 0.1);
  --badge-hybrid-txt: #FBBF24;
  --badge-hybrid-bdr: rgba(245, 158, 11, 0.22);

  --font-sans:  'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  'JetBrains Mono', monospace;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-full: 9999px;
}

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

html, body {
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  inset: 0;
  background: var(--bg-cosmos);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ─── MINIMALIST PAGE LOADER ─────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #05050A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.loader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loader-logo-glyph {
  font-size: 32px;
  animation: loaderPulse 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(217, 119, 87, 0.7));
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 16px rgba(217, 119, 87, 0.6)); }
  50%       { transform: scale(1.08); filter: drop-shadow(0 0 28px rgba(234, 136, 104, 0.9)); }
}

.loader-brand-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #FFFFFF 40%, #EA8868 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-track {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-full);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.loader-shimmer-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, #D97757 40%, #8B5CF6 80%, transparent);
  border-radius: var(--r-full);
  box-shadow: 0 0 12px rgba(217, 119, 87, 0.8);
  animation: loaderShimmer 1.4s ease-in-out infinite;
}

@keyframes loaderShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(320%); }
}

.loader-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ─── CANVAS & BACKGROUND (OPTIMIZED 60FPS) ─────────────── */
#universe-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, #0D0D1A 0%, #08080F 50%, #040409 100%);
}

.smoke-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.smoke-particle {
  position: absolute;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,87,0.08) 0%, rgba(139,92,246,0.04) 45%, transparent 70%);
  animation: smokeRise linear infinite;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateZ(0);
}

@keyframes smokeRise {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.8); }
  18%  { opacity: 0.6; }
  80%  { opacity: 0.45; }
  100% { opacity: 0; transform: translateY(-130vh) translateX(var(--drift, 70px)) scale(1.5); }
}

.job-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.atm-float {
  position: absolute;
  font-size: 24px;
  opacity: 0;
  animation: atmFloat linear infinite;
  user-select: none;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateZ(0);
}

@keyframes atmFloat {
  0%   { opacity: 0;    transform: translateY(0) rotate(0deg) scale(0.8); }
  10%  { opacity: 0.16; }
  85%  { opacity: 0.11; }
  100% { opacity: 0;    transform: translateY(-110vh) rotate(var(--rot, 30deg)) scale(1.1); }
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.universe-hero-center {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.universe-hero-center.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
}

/* Floating Cut-Paper Labels in the Universe */
.paper-labels-galaxy {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.cut-paper-tag {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 2px;
  background: #F7F3EE;
  color: #1A1A26;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.2s, color 0.2s;
  animation: paperFloat 6.5s ease-in-out infinite alternate;
  animation-delay: var(--drift-delay, 0s);
  user-select: none;
  white-space: nowrap;
}

.cut-paper-tag:hover {
  transform: rotate(0deg) scale(1.08) translateY(-4px);
  box-shadow: 0 10px 26px rgba(217, 119, 87, 0.45), 0 2px 8px rgba(0,0,0,0.4);
  background: #FFFFFF;
  color: #D97757;
}

.cut-paper-tag.tag-query {
  background: #ECE7E1;
  border-bottom: 2px solid rgba(217, 119, 87, 0.4);
}

.cut-paper-tag.tag-query:hover {
  background: #FFFFFF;
  border-bottom-color: #D97757;
}

.paper-tape {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  width: 30px;
  height: 9px;
  background: rgba(217, 119, 87, 0.42);
  border-radius: 1px;
}

.paper-clip-pin {
  position: absolute;
  top: -4px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D97757;
  box-shadow: 0 0 6px rgba(217, 119, 87, 0.8);
}

@keyframes paperFloat {
  0%   { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50%  { transform: rotate(calc(var(--rot, 0deg) + 1.5deg)) translateY(-9px); }
  100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
}

/* Dispersed positioning of paper tags — pushed far out away from the center icon & search */
.tag-resume    { top: 12%; left: 7%; }
.tag-jobs      { top: 12%; right: 7%; }
.tag-search    { top: 48%; left: 4%; }
.tag-worldwide { top: 48%; right: 4%; }
.tag-q1        { bottom: 18%; left: 7%; }
.tag-q2        { bottom: 18%; right: 7%; }
.tag-q3        { top: 7%; left: 38%; }
.tag-q4        { bottom: 7%; left: 16%; }
.tag-q5        { bottom: 7%; right: 16%; }

@media (max-width: 900px) {
  .tag-search, .tag-worldwide { display: none; }
  .tag-resume { left: 10px; top: 10%; }
  .tag-jobs   { right: 10px; top: 10%; }
  .tag-q1     { left: 10px; bottom: 15%; }
  .tag-q2     { right: 10px; bottom: 15%; }
  .tag-q3     { top: 4%; left: 25%; }
  .tag-q4     { bottom: 6%; left: 10px; }
  .tag-q5     { display: none; }
}

/* Floating Resume Icon */
.hero-float-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  animation: heroIconBob 5s ease-in-out infinite;
}

@keyframes heroIconBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-resume-glyph {
  font-size: 52px;
  filter: drop-shadow(0 0 24px rgba(217, 119, 87, 0.65));
  position: relative;
  z-index: 2;
}

.hero-icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 87, 0.3);
  animation: ringExpand linear infinite;
}

.hero-icon-ring.ring-1 {
  width: 100px; height: 100px;
  animation-duration: 3s;
  animation-delay: 0s;
}
.hero-icon-ring.ring-2 {
  width: 140px; height: 140px;
  border-color: rgba(139, 92, 246, 0.2);
  animation-duration: 3s;
  animation-delay: 1s;
}
.hero-icon-ring.ring-3 {
  width: 180px; height: 180px;
  border-color: rgba(52, 211, 153, 0.12);
  animation-duration: 3s;
  animation-delay: 2s;
}

@keyframes ringExpand {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Hero text */
.hero-drop-text {
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFFFFF 30%, #D9D9E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-sub-text {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  animation: textReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

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

/* Invisible upload zone overlay behind text */
.hero-upload-zone {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
  border-radius: 20px;
  transition: background 0.25s ease;
}

.hero-upload-zone.drag-over {
  background: rgba(217, 119, 87, 0.06);
  border: 1px dashed rgba(217, 119, 87, 0.5);
}

/* Search Bar */
.hero-search-bar {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 580px;
  height: 52px;
  background: rgba(16, 16, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-full);
  padding: 4px 6px 4px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: textReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  margin-bottom: 18px;
}

.hero-search-bar:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.22), 0 12px 40px rgba(0, 0, 0, 0.7);
  background: rgba(20, 20, 36, 0.98);
}

.search-icon-glyph {
  font-size: 17px;
  color: var(--text-muted);
  margin-right: 12px;
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  min-width: 0;
}

.hero-search-input::placeholder {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

/* Brand Button with Morph Hover */
.btn-brand-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #D97757 0%, #A03318 100%);
  border: none;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(217, 119, 87, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-brand-label, .btn-search-label {
  display: block;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-search-label {
  position: absolute;
  opacity: 0;
  transform: translateY(14px);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.btn-brand-search:hover .btn-brand-label {
  opacity: 0;
  transform: translateY(-14px);
}

.btn-brand-search:hover .btn-search-label {
  opacity: 1;
  transform: translateY(0);
}

.btn-brand-search:hover {
  background: linear-gradient(135deg, #E88869 0%, #B34325 100%);
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(217, 119, 87, 0.6);
}

/* Format hint */
.hero-format-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  animation: textReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hint-dot { opacity: 0.4; }
.hint-private { color: rgba(52, 211, 153, 0.7); }

/* ─── SEARCHING OVERLAY (COSMIC RADAR - ZERO PAGE SCROLL) ── */
.searching-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px;
  overflow: hidden;
}

.searching-overlay.active {
  display: flex;
  animation: fadeInOverlay 0.35s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

.radar-scope-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 440px;
}

.radar-hud-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 14, 28, 0.92);
  border: 1px solid rgba(217, 119, 87, 0.35);
  box-shadow: 0 0 20px rgba(217, 119, 87, 0.15);
  padding: 6px 16px;
  border-radius: var(--r-full);
}

.radar-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--radar-accent);
  box-shadow: 0 0 12px var(--radar-accent);
  animation: radarBlink 1.1s infinite;
}

@keyframes radarBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.radar-hud-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--radar-accent);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.radar-timer {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

/* Cosmic Radar Screen */
.radar-screen {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(30, 18, 52, 0.96) 0%, rgba(10, 8, 20, 0.98) 100%);
  border: 2px solid rgba(217, 119, 87, 0.42);
  box-shadow: 0 0 45px rgba(217, 119, 87, 0.22), inset 0 0 50px rgba(139, 92, 246, 0.25);
  overflow: hidden;
}

.radar-grid-axis {
  position: absolute;
  background: rgba(217, 119, 87, 0.14);
}

.radar-grid-axis.x-axis { top: 50%; left: 0; right: 0; height: 1px; }
.radar-grid-axis.y-axis { left: 50%; top: 0; bottom: 0; width: 1px; }

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 87, 0.16);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring-1 { width: 60px; height: 60px; }
.radar-ring-2 { width: 120px; height: 120px; border-color: rgba(139, 92, 246, 0.18); }
.radar-ring-3 { width: 180px; height: 180px; }
.radar-ring-4 { width: 240px; height: 240px; border-color: rgba(139, 92, 246, 0.18); }

.radar-sweep-beam {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
}

.radar-sweep-beam::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 50%;
  background: conic-gradient(
    from -5deg,
    transparent 0deg,
    rgba(234, 136, 104, 0.65) 25deg,
    rgba(139, 92, 246, 0.22) 50deg,
    transparent 55deg
  );
  transform-origin: 0% 0%;
  animation: radarSweepRotate 2.8s linear infinite;
}

@keyframes radarSweepRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.radar-center-hub {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--radar-accent);
  box-shadow: 0 0 16px var(--radar-accent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.radar-blips-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.radar-blip {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FBBF24;
  box-shadow: 0 0 12px #FBBF24, 0 0 20px rgba(217, 119, 87, 0.8);
  transform: translate(-50%, -50%);
  animation: blipFade 2.2s ease-out forwards;
}

.radar-blip::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(251, 191, 36, 0.6);
  animation: blipRipple 2s ease-out forwards;
}

@keyframes blipFade {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
  70%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
}

@keyframes blipRipple {
  0%   { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.radar-degree-marker {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(217, 119, 87, 0.4);
  user-select: none;
}

.deg-0   { top: 6px;   left: 50%; transform: translateX(-50%); }
.deg-90  { right: 6px; top: 50%;  transform: translateY(-50%); }
.deg-180 { bottom: 5px; left: 50%; transform: translateX(-50%); }
.deg-270 { left: 5px; top: 50%;   transform: translateY(-50%); }

/* Telemetry Panel */
.radar-telemetry-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radar-target-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(16, 14, 26, 0.94);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 12px;
}

.target-label { color: var(--text-muted); }
.target-val   { color: var(--accent); font-weight: 600; }

.radar-telemetry-log {
  background: rgba(10, 8, 18, 0.96);
  border: 1px solid rgba(217, 119, 87, 0.2);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.65;
  max-height: 110px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.7);
}

.telemetry-line          { color: rgba(255, 255, 255, 0.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; animation: lineFadeIn 0.3s ease; }
.telemetry-line.active   { color: var(--radar-accent); font-weight: 500; }
.telemetry-line.done     { color: #64748B; }

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

.radar-action-row {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.btn-cancel-radar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #F87171;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel-radar:hover {
  background: rgba(239, 68, 68, 0.22);
  border-color: rgba(239, 68, 68, 0.5);
  color: #FFF;
  transform: translateY(-1px);
}

/* ─── TOP RIGHT SHARE BUTTON (INSIDE HERO ONLY) ──────────── */
.top-nav-bar {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 18, 30, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #C0BDC8;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.top-share-btn:hover {
  background: rgba(217, 119, 87, 0.18);
  border-color: rgba(217, 119, 87, 0.45);
  color: #FFF;
  transform: translateY(-1px);
}

.top-share-btn.copied {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
  color: #10B981;
}

/* ─── SHARE MODAL (NATIVE APP / WHATSAPP / EMAIL / SOCIAL) ── */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.share-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: modalBackdropFade 0.2s ease;
}

.share-modal-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: rgba(18, 16, 28, 0.96);
  border: 1px solid rgba(217, 119, 87, 0.35);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(217, 119, 87, 0.15);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: modalCardScale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

@keyframes modalBackdropFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modalCardScale {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

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

.share-modal-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #FFF;
}

.btn-close-share {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: var(--r-sm);
  transition: all 0.15s ease;
}

.btn-close-share:hover {
  color: #FFF;
  background: rgba(255, 255, 255, 0.1);
}

.share-modal-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

.share-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.share-grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  user-select: none;
}

.share-grid-item:hover {
  transform: translateY(-2px);
  color: #FFF;
}

.share-grid-item.share-wa:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.45);
}

.share-grid-item.share-mail:hover {
  background: rgba(217, 119, 87, 0.16);
  border-color: rgba(217, 119, 87, 0.45);
}

.share-grid-item.share-li:hover {
  background: rgba(10, 102, 194, 0.18);
  border-color: rgba(10, 102, 194, 0.45);
}

.share-grid-item.share-tg:hover {
  background: rgba(0, 136, 204, 0.18);
  border-color: rgba(0, 136, 204, 0.45);
}

.share-grid-icon {
  font-size: 17px;
}

.share-copy-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.share-link-input {
  flex: 1;
  background: rgba(10, 8, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  outline: none;
}

.btn-copy-share-link {
  background: var(--accent);
  border: none;
  border-radius: var(--r-sm);
  color: #FFF;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-copy-share-link:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ─── RESULTS SECTION (INTERNAL SCROLL ONLY, NO PAGE SCROLL) ─ */
.universe-results-section {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: transparent;
}

/* Minimalist Results Bar (Replaces bulky header & removes horizontal navbar) */
.results-minimal-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(9, 8, 16, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 14px;
  z-index: 40;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.btn-back-home:hover {
  background: rgba(217, 119, 87, 0.22);
  border-color: rgba(217, 119, 87, 0.5);
  color: #FFF;
  transform: translateX(-2px);
}

.results-meta-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 14px;
  border-radius: var(--r-full);
}

.results-job-title,
.results-lead-title {
  font-size: 13px;
  font-weight: 600;
  color: #F1F5F9;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}

.results-job-title strong,
.results-lead-title strong { color: var(--accent); }

.results-minimal-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detected-chips-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.universe-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.universe-chip.role-highlight {
  background: var(--accent-bg);
  border-color: rgba(217, 119, 87, 0.28);
  color: var(--accent);
}

/* Toolbar */
.results-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.universe-icon-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.universe-icon-btn:hover {
  background: rgba(217, 119, 87, 0.14);
  border-color: rgba(217, 119, 87, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.universe-icon-btn.btn-research:hover {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.universe-icon-btn.btn-clear:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.38);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.28);
}

.universe-icon-btn.btn-export-excel,
.universe-icon-btn.btn-export-csv {
  width: auto;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  gap: 5px;
}

.universe-icon-btn.btn-export-excel svg {
  color: #38BDF8;
  stroke: #38BDF8;
  flex-shrink: 0;
}

.universe-icon-btn.btn-export-csv svg {
  color: #34D399;
  stroke: #34D399;
  flex-shrink: 0;
}

.btn-export-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.universe-icon-btn.btn-export-excel:hover {
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.universe-icon-btn.btn-export-csv:hover {
  background: rgba(52, 211, 153, 0.16);
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
}

/* Results Internal Scroll Container ONLY */
.results-scroll-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 28px 60px;
  -webkit-overflow-scrolling: touch;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

/* Custom Sleek Scrollbar */
.results-scroll-container::-webkit-scrollbar {
  width: 6px;
}
.results-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.results-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(217, 119, 87, 0.35);
  border-radius: 99px;
}
.results-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 119, 87, 0.65);
}

/* ─── JOB CARDS ──────────────────────────────────────────── */
.universe-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.celestial-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  animation: cardFadeUp 0.4s ease both;
  cursor: pointer;
  user-select: none;
}

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

.celestial-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(217, 119, 87, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 16px var(--accent-glow);
}

.celestial-card:hover .card-role-title {
  color: var(--accent);
}

.celestial-card:hover .btn-apply-direct-lead {
  background: var(--accent);
  color: #FFF;
  border-color: var(--accent);
  box-shadow: 0 4px 14px var(--accent-glow);
  transform: scale(1.04);
}

.card-left-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.card-role-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.015em;
}

.card-org-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.card-company-name { font-weight: 500; color: #FFFFFF; }
.card-portal-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #A78BFA;
  background: rgba(139, 92, 246, 0.1);
  padding: 2px 7px;
  border-radius: var(--r-full);
}
.card-location-text { color: var(--text-muted); }

.card-middle-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.card-mode-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-weight: 500;
}
.card-mode-badge.remote {
  background: var(--badge-remote-bg);
  color: var(--badge-remote-txt);
  border: 1px solid var(--badge-remote-bdr);
}
.card-mode-badge.onsite {
  background: var(--badge-onsite-bg);
  color: var(--badge-onsite-txt);
  border: 1px solid var(--badge-onsite-bdr);
}
.card-mode-badge.hybrid {
  background: var(--badge-hybrid-bg);
  color: var(--badge-hybrid-txt);
  border: 1px solid var(--badge-hybrid-bdr);
}

.card-salary-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #34D399;
  background: rgba(52, 211, 153, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(52, 211, 153, 0.18);
  white-space: nowrap;
}

.card-score-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.score-high { background: rgba(52,211,153,0.14); color: #34D399; border: 1px solid rgba(52,211,153,0.3); }
.score-mid  { background: rgba(245,158,11,0.14); color: #FBBF24; border: 1px solid rgba(245,158,11,0.3); }
.score-low  { background: rgba(255,255,255,0.05); color: var(--text-muted); }

.card-right-action { flex-shrink: 0; }

.btn-apply-direct-job,
.btn-apply-direct-lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #E06C47 0%, #A03318 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(217, 119, 87, 0.45);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
}

.btn-apply-direct-job:hover,
.btn-apply-direct-lead:hover {
  background: linear-gradient(135deg, #F0805C 0%, #B83A1C 100%);
  transform: translateY(-1.5px) scale(1.02);
  box-shadow: 0 6px 20px rgba(224, 108, 71, 0.65);
  color: #FFFFFF;
}

.btn-apply-direct-job:active {
  transform: translateY(0.5px) scale(0.99);
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: var(--text-secondary);
}
.empty-state-icon {
  font-size: 44px;
  margin-bottom: 14px;
  animation: floatOrb 5s ease-in-out infinite;
}
.empty-state h3 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
}

/* ─── TOAST NOTIFICATIONS ────────────────────────────────── */
.universe-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: rgba(22, 20, 36, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(217, 119, 87, 0.4);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 16px rgba(217, 119, 87, 0.25);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.universe-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── CREATOR FIXED BADGE (MINIMALIST CONNECT) ─────────────── */
.creator-fixed-badge {
  position: fixed;
  bottom: 18px;
  right: 20px;
  z-index: 98;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.creator-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 5.5px;
  background: rgba(15, 14, 24, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 10px 3px 4px;
  border-radius: var(--r-full);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), 0 0 10px rgba(10, 102, 194, 0.18);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.creator-linkedin-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 102, 194, 0.65);
  background: rgba(20, 18, 34, 0.96);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.65), 0 0 16px rgba(10, 102, 194, 0.35);
}

.creator-btn-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: #E2E8F0;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.creator-linkedin-btn:hover .creator-btn-text {
  color: #70B5F9;
}

.creator-avatar-wrap {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.creator-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: block;
}

.creator-online-pulse {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #10B981;
  border: 1px solid #0D0C18;
  box-shadow: 0 0 4px #10B981;
}

.linkedin-svg {
  color: #0A66C2;
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.creator-linkedin-btn:hover .linkedin-svg {
  color: #70B5F9;
}

/* ─── RESUME GUIDANCE MODAL (Standard Resume/CV Upload) ───── */
.resume-guide-card {
  max-width: 440px;
  width: 90vw;
}

.resume-guide-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  padding: 14px 16px;
}

.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.spec-row strong {
  color: #FFF;
}

.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.spec-icon.spec-ok {
  background: rgba(52, 211, 153, 0.15);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.spec-icon.spec-no {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.spec-warn {
  color: #E2E8F0;
}

.resume-guide-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.btn-primary-choose-resume {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #D97757 0%, #B84A28 100%);
  border: none;
  color: #FFF;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(217, 119, 87, 0.4);
  transition: all 0.2s ease;
}

.btn-primary-choose-resume:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 119, 87, 0.6);
}

.btn-secondary-cancel {
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #FFF;
}

/* ─── MOBILE RESPONSIVENESS & ZERO PAGE SCROLLER ARCHITECTURE ─ */
@media (max-width: 768px) {
  .creator-fixed-badge {
    bottom: 12px;
    right: 12px;
  }

  .creator-linkedin-btn {
    padding: 2.5px 8px 2.5px 3.5px;
    gap: 4.5px;
  }

  .creator-avatar-wrap {
    width: 20px;
    height: 20px;
  }

  .creator-btn-text {
    font-size: 9.5px;
    letter-spacing: 0.03em;
  }

  /* Multi-Row Results Bar on Mobile — Clean rows, zero overlapping */
  .results-minimal-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    padding: 10px 14px 8px;
    gap: 8px 10px;
    align-items: center;
  }

  .btn-back-home {
    grid-column: 1;
    grid-row: 1;
    padding: 6px 12px;
    font-size: 11.5px;
  }

  .results-minimal-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 6px;
  }

  .results-minimal-actions .universe-icon-btn {
    height: 32px;
    font-size: 13px;
  }

  .universe-icon-btn.btn-export-excel,
  .universe-icon-btn.btn-export-csv {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    gap: 4px;
  }

  .btn-export-tag {
    font-size: 9.5px;
  }

  /* Completely hide verbose chip pills on mobile screen as requested */
  .detected-chips-container {
    display: none !important;
  }

  .results-meta-pill {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-full);
  }

  .results-job-title,
  .results-lead-title {
    font-size: 11.5px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .results-scroll-container {
    padding: 12px 12px 90px;
  }

  /* Spacious Multi-Row Job Card on Mobile — No overlapping text or badges */
  .celestial-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .card-left-content {
    width: 100%;
  }

  .card-role-title {
    font-size: 15px;
    line-height: 1.35;
  }

  .card-org-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
  }

  .card-middle-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }

  .card-right-action {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 2px;
  }

  .btn-apply-direct-job,
  .btn-apply-direct-lead {
    width: 100%;
    text-align: center;
    padding: 8px 14px;
    font-size: 12.5px;
  }

  /* Compact Mobile Search Bar & Sleek Search Button */
  .hero-search-bar {
    width: 94vw;
    max-width: 420px;
    height: 44px;
    padding: 3px 5px 3px 12px;
  }

  .hero-search-input {
    font-size: 12.5px;
    padding: 0 4px;
  }

  .search-icon-glyph {
    font-size: 14px;
    margin-right: 6px;
  }

  .btn-brand-search {
    height: 32px;
    padding: 0 12px;
    font-size: 11.5px;
    box-shadow: 0 2px 8px rgba(217, 119, 87, 0.4);
    flex-shrink: 0;
  }

  .btn-brand-label {
    display: none !important;
  }

  .btn-search-label {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    font-size: 11.5px;
    font-weight: 600;
  }

  .hero-drop-text {
    font-size: 19px;
    text-align: center;
    padding: 0 10px;
    line-height: 1.3;
  }

  .hero-sub-text {
    font-size: 12px;
  }

  .radar-screen {
    width: 230px;
    height: 230px;
  }

  .radar-ring-4 { width: 200px; height: 200px; }
  .radar-ring-3 { width: 150px; height: 150px; }
  .radar-ring-2 { width: 100px; height: 100px; }
  .radar-ring-1 { width: 50px; height: 50px; }

  .radar-scope-wrapper {
    padding: 16px;
    max-width: 320px;
  }
}
