/* Modern HyrLink Design System */
:root {
  --bg-dark: #0A111E;
  --bg-card: rgba(17, 26, 46, 0.85);
  --bg-card-border: #1E2D4A;
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --accent-gold: #F4C430;
  --accent-gold-glow: #E5A93C;
  --accent-cyan: #F4C430;
  --accent-blue: #E5A93C;
  --accent-purple: #8b5cf6;
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;
  --accent-amber: #E5A93C;
  --font-primary: 'Inter', system-ui, sans-serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 25px rgba(244, 196, 48, 0.2);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}


body.dark-theme {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.12) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-primary);
  line-height: 1.5;
  min-height: 100vh;
}

/* Header & Navigation */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-card-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(244, 196, 48, 0.15);
  z-index: 2;
  position: relative;
  transition: var(--transition);
}

.logo-icon .icon-dot {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  display: inline-block;
  transition: opacity 0.3s ease, max-width 0.3s ease;
  color: var(--accent-gold);
}

.app-header.scrolled .logo-icon {
  border-color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(244, 196, 48, 0.45);
}

.app-header.scrolled .logo-icon .icon-dot {
  opacity: 1;
  max-width: 20px;
}

.brand-text-slider {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 140px;
  opacity: 1;
  transform: translateX(0);
  transition: max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              margin-left 0.45s ease;
  margin-left: 0.5rem;
  z-index: 1;
  white-space: nowrap;
}

.app-header.scrolled .brand-text-slider {
  max-width: 0;
  opacity: 0;
  transform: translateX(-25px);
  margin-left: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.gold-dot {
  color: var(--accent-gold);
}

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

.badge-tag {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.mode-nav {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--bg-card-border);
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-btn:hover {
  color: var(--text-main);
}

.nav-btn.active {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--bg-card-border);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
}

/* App Container & Tabs */
.app-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Shared Components & Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.btn {
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent-cyan);
  color: #111;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #fde047;
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.btn-outline:hover {
  background: rgba(234, 179, 8, 0.1);
  color: #fde047;
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.input-field:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.2);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Landing Page Layout Styles */
.landing-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 4rem;
}

/* Header Adjustments */
.left-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-main);
}

.text-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-right: 1rem;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--accent-cyan);
}

/* Universal Hero Section */
.hero-section {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
}

.investor-callout {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.text-link-accent {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.text-link-accent:hover {
  text-decoration: underline;
}

/* Hero Layout — split screen */
.hero-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 3.5rem;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-section .hero-content {
  text-align: left;
}

.hero-section .hero-tag {
  margin-bottom: 1.25rem;
}

.hero-section .hero-headline {
  text-align: left;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #fff;
}

.hero-section .hero-headline .gold-text {
  color: var(--accent-gold);
  -webkit-text-fill-color: var(--accent-gold);
}

.hero-section .hero-subheadline {
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-section .hero-ctas {
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(244, 196, 48, 0.6);
}

/* Hero dashboard visual — Precision glass dashboard */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-dashboard {
  width: 100%;
  max-width: 560px;
  position: relative;
}

.dashboard-gold-border {
  padding: 2px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.55), rgba(244, 196, 48, 0.12) 40%, rgba(244, 196, 48, 0.35));
  box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.9);
}

.dashboard-card-inner {
  position: relative;
  width: 100%;
  border-radius: 30px;
  background: rgba(8, 14, 28, 0.98);
  backdrop-filter: blur(24px);
  padding: 2rem;
  overflow: hidden;
}

.dashboard-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(90deg, transparent 0px, rgba(255, 255, 255, 0.12) 1px, transparent 2px);
}

.dashboard-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.dashboard-glow-top {
  top: -80px;
  right: -80px;
  background: rgba(244, 196, 48, 0.12);
}

.dashboard-glow-bottom {
  bottom: -80px;
  left: -80px;
  background: rgba(59, 130, 246, 0.08);
}

.dashboard-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.dashboard-status {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.status-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.6;
  font-family: 'JetBrains Mono', monospace;
}

.status-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.dashboard-live-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 196, 48, 0.25);
  background: rgba(244, 196, 48, 0.06);
}

.live-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.live-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: livePing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}

.live-core {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.live-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.85;
  font-family: 'JetBrains Mono', monospace;
}

/* Dashboard body: candidate list + bar chart */
.dash-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.dash-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.dash-col-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.5;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.candidate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.candidate-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.candidate-row.is-top {
  border-color: rgba(244, 196, 48, 0.3);
  background: rgba(244, 196, 48, 0.06);
}

.candidate-avatar {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-gold);
  background: rgba(244, 196, 48, 0.1);
  border: 1px solid rgba(244, 196, 48, 0.25);
  font-family: 'JetBrains Mono', monospace;
}

.candidate-meta {
  text-align: left;
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.candidate-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.candidate-role {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.candidate-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.candidate-row.is-top .candidate-score {
  color: var(--accent-gold);
}

/* Bar chart */
.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  height: 150px;
  padding: 0 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-col {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.45rem;
}

.bar {
  width: 100%;
  max-width: 22px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(59, 130, 246, 0.25), #60a5fa);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.25);
}

.bar.is-gold {
  background: linear-gradient(to top, rgba(244, 196, 48, 0.25), var(--accent-gold));
  box-shadow: 0 0 14px rgba(244, 196, 48, 0.3);
}

.bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.score-box {
  margin-top: auto;
  border: 1px solid rgba(244, 196, 48, 0.35);
  background: rgba(244, 196, 48, 0.05);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.score-box-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.score-box-value {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.score-box-value .score-number {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.score-box-value .score-total {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent-gold);
  opacity: 0.5;
}


@keyframes livePing {
  75%, 100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@media (max-width: 1000px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-section .hero-content,
  .hero-section .hero-headline {
    text-align: center;
  }

  .hero-section .hero-subheadline {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .hero-ctas,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-dashboard {
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 2.5rem 1rem;
  }

  .hero-section .hero-headline {
    font-size: 2.4rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-card-inner {
    padding: 1.5rem;
  }

  .dash-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bar-chart {
    height: 120px;
  }
}

/* The Bridged Journey */
.journey-section {
  margin-top: 2rem;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
}

.text-center {
  text-align: center;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 3rem;
}

.journey-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.journey-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

.journey-step.active-node .step-visual {
  border-color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(244, 196, 48, 0.25);
}

.journey-step.reverse {
  direction: rtl;
}

.journey-step.reverse > * {
  direction: ltr;
}

.step-content {
  max-width: 450px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
  display: block;
}

.step-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.step-visual {
  padding: 2rem;
  border-width: 1px;
  border-style: solid;
}

.highlight-border-blue { border-color: rgba(59, 130, 246, 0.3); }
.highlight-border-cyan { border-color: rgba(6, 182, 212, 0.3); }
.highlight-border-emerald { border-color: rgba(16, 185, 129, 0.3); }

/* Mockups for visual flow */
.mockup-profile, .mockup-engine, .mockup-dashboard {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border: 1px solid var(--bg-card-border);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-card-border);
  padding-bottom: 1rem;
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
}

.mock-name { font-weight: 700; }
.mock-title { font-size: 0.8rem; color: var(--text-muted); }

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  margin-top: 0.3rem;
}

.engine-node, .engine-process, .engine-results {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--accent-cyan);
}

.engine-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin: 0.5rem 0;
}

.engine-results {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.competency-badge { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.fit-badge { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); }

.dash-row {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--bg-card-border);
  font-size: 0.9rem;
}
.dash-row:last-child { border-bottom: none; }

.dash-divider {
  border: none;
  height: 1px;
  background: var(--bg-card-border);
  margin: 1rem 0;
}

.score-green {
  color: var(--accent-emerald);
  font-weight: 700;
}
.dash-header {
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.journey-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.journey-cta p {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Two Sides Comparison Grid */
.comparison-section {
  margin-top: 3rem;
}

.comparison-grid {
  gap: 2rem;
}

.badge-role {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.badge-role.candidate {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-blue);
}

.badge-role.enterprise {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
}

.comparison-grid .card h3,
.comparison-grid .glass-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.benefit-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.margin-top-md {
  margin-top: 1.5rem;
}

/* Bottom CTA Banner */
.bottom-cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.bottom-cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.bottom-cta-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 640px) {
  .banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-actions .btn,
  .banner-actions .gcal-btn-wrapper,
  .banner-actions .gcal-booking-link {
    width: 100%;
  }
}


/* Trust Signals & Logo Carousel */
.trust-signals {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-card-border);
}

.trust-signals p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.logo-carousel {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 2rem;
  opacity: 0.6;
}

.logos-slide {
  display: flex;
  gap: 3.5rem;
  animation: slide 25s linear infinite;
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.company-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(244, 196, 48, 0.4));
}

.company-logo span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

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

/* Feature Grid */
.features-section {
  margin-top: 4rem;
}

.feature-grid {
  margin-top: 3rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(244, 196, 48, 0.2);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--text-main);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Mid Conversion Banner */
.mid-conversion-banner {
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.05), rgba(15, 20, 35, 0.5));
  border: 1px solid var(--bg-card-border);
}

.mid-conversion-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.banner-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer */
.app-footer {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: rgba(10, 17, 30, 0.85);
  border-top: 1px solid var(--bg-card-border);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(244, 196, 48, 0.35);
  background: rgba(244, 196, 48, 0.06);
  color: var(--text-muted);
  box-shadow: 0 0 12px rgba(244, 196, 48, 0.12);
  transition: var(--transition);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(244, 196, 48, 0.12);
  box-shadow: 0 0 22px rgba(244, 196, 48, 0.35);
  transform: translateY(-2px);
}

/* Pulse Ring & Glow Animations */
.pulse-ring {
  position: relative;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(244, 196, 48, 0.25);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(244, 196, 48, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(244, 196, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 196, 48, 0); }
}

/* Button Shine Sweep */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-shine:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* 3D Tilt & Radial Spotlight */
.tilt-card {
  transition: transform 0.15s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.tilt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(244, 196, 48, 0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tilt-card:hover::before {
  opacity: 1;
}

/* Motion Entrance Animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.in-view, .slide-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* On narrow screens, never animate horizontally (prevents side scrolling) */
@media (max-width: 900px) {
  .slide-in-left,
  .slide-in-right {
    transform: translateY(24px);
  }

  .slide-in-left.in-view,
  .slide-in-right.in-view {
    transform: translateY(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .journey-step {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .journey-step.reverse {
    direction: ltr;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-headline {
    font-size: 2.5rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   HyrLink1 — Navbar (gold glow) overrides & shared page styles
   ============================================================ */

.app-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 2rem;
}

/* Left: full HyrLink wordmark, fades out on scroll */
.brand-full {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.brand-full-logo {
  height: 67px;
  width: auto;
  opacity: 1;
}


/* Center nav */
.center-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: center;
}

.nav-pill {
  position: relative;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 196, 48, 0.28);
  background: rgba(244, 196, 48, 0.05);
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(244, 196, 48, 0.12);
  transition: var(--transition);
}

.nav-pill:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(244, 196, 48, 0.12);
  box-shadow: 0 0 22px rgba(244, 196, 48, 0.35);
  transform: translateY(-1px);
}

.nav-pill.active {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 24px rgba(244, 196, 48, 0.4);
}

/* Center H logo in gold circle */
.nav-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  background: var(--bg-card);
  box-shadow: 0 0 20px rgba(244, 196, 48, 0.4);
  margin: 0 0.4rem;
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-logo-badge img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.nav-logo-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(244, 196, 48, 0.65);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
}

.footer-logo {
  height: 31px;
}

/* Simple inner page hero */
.page-hero {
  text-align: center;
  padding: 1.75rem 1rem 0.25rem;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero h1,
.page-hero h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero h1 { font-size: 2.8rem; }
.page-hero h2 { font-size: 2.2rem; }

.page-hero .hero-state,
.mid-conversion-banner .banner-state {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.page-hero[data-active="job-seeker"] .hero-state[data-state="job-seeker"],
.page-hero[data-active="recruiter"] .hero-state[data-state="recruiter"],
.mid-conversion-banner[data-active="job-seeker"] .banner-state[data-state="job-seeker"],
.mid-conversion-banner[data-active="recruiter"] .banner-state[data-state="recruiter"] {
  display: block;
}

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

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}




.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin: 0.5rem 0 1rem;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.team-role {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Fluid header scaling — shrink instead of stacking */
.app-header {
  padding: clamp(0.5rem, 1.2vw, 0.9rem) clamp(0.85rem, 2.4vw, 2rem);
  gap: clamp(0.5rem, 1.4vw, 1.5rem);
  position: relative;
}

.brand-full-logo {
  height: clamp(38px, 4.8vw, 67px);
}

@media (max-width: 1400px) {
  .center-nav { gap: clamp(0.25rem, 0.6vw, 0.6rem); }
  .nav-pill {
    padding: 0.5rem clamp(0.55rem, 0.9vw, 1.1rem);
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  }
  .nav-logo-badge {
    width: clamp(34px, 3.2vw, 46px);
    height: clamp(34px, 3.2vw, 46px);
    margin: 0 0.25rem;
  }
  .nav-logo-badge img { width: 74%; height: 74%; }
  .header-actions .gcal-booking-link {
    padding: 0.5rem clamp(0.7rem, 1vw, 1.25rem) !important;
    font-size: clamp(0.75rem, 0.85vw, 0.9rem) !important;
  }
  .header-actions .text-link { font-size: 0.85rem; }
}

/* Hamburger button */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(244, 196, 48, 0.4);
  background: rgba(244, 196, 48, 0.08);
  box-shadow: 0 0 14px rgba(244, 196, 48, 0.18);
  cursor: pointer;
  justify-self: end;
}

.nav-toggle-bars { display: grid; gap: 5px; }
.nav-toggle-bars span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}
.app-header.menu-open .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.app-header.menu-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.app-header.menu-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown panel — overlays content, never grows the header */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem 1rem 1rem;
  z-index: 5;
  background: #0A0D14;
  border-bottom: 1px solid var(--bg-card-border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  max-height: calc(100vh - 100%);
  overflow-y: auto;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu-links { display: flex; flex-direction: column; }

.mobile-menu-link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--accent-gold);
  background: rgba(244, 196, 48, 0.1);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-actions .gcal-btn-wrapper { width: 100%; }
.mobile-menu-actions .gcal-booking-link { width: 100%; text-decoration: none !important; }
.mobile-menu-link { text-decoration: none; }

/* Collapse to a single compact row + dropdown */
@media (max-width: 1080px) {
  .app-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 0.75rem;
  }
  .brand-full { justify-self: start; }
  .center-nav,
  .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .page-hero h1,
  .page-hero h2,
  .product-eyebrow { font-size: 2.1rem; }
}

@media (max-width: 480px) {
  .page-hero h1,
  .page-hero h2,
  .product-eyebrow { font-size: 1.75rem; }
}

/* Fixed wrapper so the injected header is always visible */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

body.dark-theme {
  padding-top: 78px;
}


/* ============================================================
   How It Works — Elegant gold accented process
   ============================================================ */

.works-hero {
  padding: 3.5rem 1rem 1rem;
  margin-bottom: 1rem;
}

.works-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.works-journey {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.works-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-bottom: 4rem;
}

/* Vertical connecting line with flowing particles */
.journey-connector {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(244, 196, 48, 0.3), transparent);
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
  display: block;
}

.flow-particle {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
  transform: translateX(-50%);
  animation: particle-flow 7s linear infinite;
  z-index: 5;
  opacity: 0.6;
}

.particle-1 { animation-duration: 7s; animation-delay: 0s; }
.particle-2 { animation-duration: 9s; animation-delay: -3s; height: 40px; opacity: 0.3; }
.particle-3 { animation-duration: 6s; animation-delay: -1.5s; width: 1px; }
.particle-4 { animation-duration: 10s; animation-delay: -5s; height: 32px; }

@keyframes particle-flow {
  0% { top: -5%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 105%; opacity: 0; }
}

/* Journey steps */
.works-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

.works-step.delay-1.in-view { transition-delay: 0.2s; }
.works-step.delay-2.in-view { transition-delay: 0.4s; }
.works-step.delay-3.in-view { transition-delay: 0.6s; }

.works-step.reverse {
  direction: rtl;
}

.works-step.reverse > * {
  direction: ltr;
}

.works-step.reverse .step-content {
  justify-self: end;
  text-align: right;
}

.works-step.reverse .step-content p {
  margin-left: auto;
}

/* Gold intersection node */
.journey-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--accent-gold);
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  transform: translate(-50%, -50%);
  z-index: 20;
  box-shadow: 0 0 10px rgba(244, 196, 48, 0.6);
  animation: node-pulse 3s ease-in-out infinite;
  display: block;
}

@keyframes node-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 10px rgba(244, 196, 48, 0.6); }
  50% { transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 20px rgba(244, 196, 48, 0.9); }
}

/* Step content */
.works-step .step-content {
  max-width: 440px;
}

.works-step .step-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: inline-block;
  text-shadow: 0 0 10px rgba(244, 196, 48, 0.5);
  transition: text-shadow 0.4s ease, color 0.4s ease;
}

.works-step:hover .step-num {
  color: #fde68a;
  text-shadow: 0 0 20px rgba(244, 196, 48, 0.9);
}

.works-step .step-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.works-step:hover .step-content h2 {
  color: rgba(255, 255, 255, 0.95);
}

.works-step .step-role {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.2rem;
}

.works-step .step-lead {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.works-step .step-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Visual cards */
.works-card {
  position: relative;
  padding: 2.5rem;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.works-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--accent-gold);
  opacity: 0;
  filter: blur(16px);
  z-index: -1;
  transition: opacity 0.5s ease;
}

.works-step:hover .works-card::before {
  opacity: 0.15;
}

.works-step:hover .works-card {
  border-color: rgba(244, 196, 48, 0.4);
  box-shadow: 0 0 40px rgba(244, 196, 48, 0.1);
}

/* Mockup cards */
.mockup-card {
  width: 100%;
  max-width: 360px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mockup-avatar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mock-avatar-gold {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 20px rgba(244, 196, 48, 0.5);
  flex-shrink: 0;
}

.mock-card-label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.engine-card {
  border: 2px dashed rgba(244, 196, 48, 0.35);
  background: rgba(15, 23, 42, 0.4);
  text-align: center;
  padding: 2rem 1.5rem;
}

.engine-label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dashboard-card {
  background: rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
}

.dashboard-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.25rem;
}

.dashboard-bar {
  height: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.dashboard-bar.short {
  width: 60%;
}

/* Responsive */
@media (max-width: 900px) {
  .works-step {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .works-step.reverse {
    direction: ltr;
  }

  .works-step.reverse .step-content,
  .works-step .step-content {
    justify-self: center;
    text-align: center;
    max-width: 520px;
  }

  .works-step.reverse .step-content p,
  .works-step .step-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .journey-connector,
  .journey-node {
    display: none;
  }

  .works-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ============================================================
   How It Works — Insights Additions
   ============================================================ */

.page-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.step-features {
  list-style: none;
  margin-top: 1.25rem;
}

.step-features li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.step-features li strong {
  color: #fff;
  font-weight: 600;
}

.value-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0.75rem auto 2.5rem;
  line-height: 1.6;
}

.value-grid {
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  border-color: rgba(244, 196, 48, 0.35);
  box-shadow: 0 0 40px rgba(244, 196, 48, 0.08);
}

.value-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.candidate-icon {
  background: rgba(244, 196, 48, 0.12);
  color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(244, 196, 48, 0.15);
}

.recruiter-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.value-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.value-list {
  list-style: none;
}

.value-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.value-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.value-list li strong {
  color: #fff;
  font-weight: 600;
}

.approach-list {
  list-style: none;
  margin-top: 1.25rem;
}

.approach-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.approach-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.approach-list li strong {
  color: #fff;
  font-weight: 600;
}

.trust-section {
  margin-bottom: 6rem;
}

.trust-grid {
  gap: 1.5rem;
}

.trust-pillar {
  padding: 2rem;
  text-align: center;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.trust-pillar:hover {
  border-color: rgba(244, 196, 48, 0.35);
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.trust-pillar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.trust-pillar p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .value-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .trust-pillar {
    padding: 1.5rem;
  }
}

/* ============================================================
   Pricing Page — Audience Toggle & Plan Tabs
   ============================================================ */

.pricing-toggle-section {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.pricing-mode-nav {
  position: relative;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bg-card-border);
  border-radius: 999px;
  padding: 5px;
}

.pricing-toggle-btn {
  position: relative;
  z-index: 2;
  padding: 0.75rem 1.75rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.pricing-toggle-btn:hover {
  color: var(--text-main);
}

.pricing-toggle-btn.active {
  color: var(--bg-dark);
}

.pricing-toggle-slider {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 50%;
  background: var(--accent-gold);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(244, 196, 48, 0.45);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.pricing-mode-nav[data-active="recruiter"] .pricing-toggle-slider {
  transform: translateX(100%);
}

.pricing-plans-section {
  margin-top: 0;
  min-height: 520px;
}

.pricing-tab-content {
  display: none;
}

.pricing-tab-content.active {
  display: block;
  animation: pricingFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pricing-card-wrapper {
  position: relative;
  display: flex;
  height: 100%;
}

.pricing-card-wrapper .pricing-popular {
  width: 100%;
}

.pricing-popular {
  position: relative;
  border-color: rgba(244, 196, 48, 0.45);
  box-shadow: 0 0 30px rgba(244, 196, 48, 0.12);
}

.pricing-popular:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 40px rgba(244, 196, 48, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(244, 196, 48, 0.35);
  z-index: 10;
  white-space: nowrap;
}

.pricing-trial-note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

.pricing-enterprise-cta {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-enterprise-cta .feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.pricing-enterprise-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  margin: 0.9rem 0 0.7rem;
}

.pricing-enterprise-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.pricing-enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .pricing-toggle-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
  }

  .pricing-plans-section {
    min-height: auto;
  }
}

/* Maintenance banner — floating, centered, dismissible pill */
.maintenance-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: min(720px, calc(100vw - 2rem));
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(244, 196, 48, 0.35);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(244, 196, 48, 0.15);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.maintenance-banner.dismissed {
  opacity: 0;
  transform: translateX(-50%) translateY(0.5rem);
  pointer-events: none;
}

.maintenance-close {
  position: absolute;
  top: -0.55rem;
  right: -0.55rem;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(244, 196, 48, 0.45);
  background: rgba(10, 13, 20, 0.95);
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.maintenance-close:hover,
.maintenance-close:focus-visible {
  background: rgba(244, 196, 48, 0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.maintenance-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(244, 196, 48, 0.14), transparent 60%);
  pointer-events: none;
}

.maintenance-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.55rem 0.9rem 0.55rem 1.1rem;
  position: relative;
  z-index: 1;
}

.maintenance-carousel {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.maintenance-carousel-track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  width: 100%;
}

.maintenance-slide {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.maintenance-slide.active {
  opacity: 1;
  transform: translateY(0);
}


.maintenance-icon {
  font-size: 1rem;
  filter: drop-shadow(0 0 6px rgba(244, 196, 48, 0.5));
  flex-shrink: 0;
}

.maintenance-form {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.maintenance-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 196, 48, 0.35);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  color: var(--text-main);
  font-size: 0.9rem;
  min-width: 220px;
  outline: none;
  transition: var(--transition);
}

.maintenance-input::placeholder {
  color: var(--text-muted);
}

.maintenance-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(244, 196, 48, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.maintenance-submit {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-glow));
  color: var(--bg-dark);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.maintenance-submit:hover {
  box-shadow: 0 0 20px rgba(244, 196, 48, 0.4);
  transform: translateY(-1px);
}

.maintenance-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.maintenance-success.visible {
  display: flex;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .maintenance-banner {
    bottom: 0.75rem;
    max-width: calc(100vw - 1.25rem);
    border-radius: 18px;
  }

  .maintenance-banner-inner {
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .maintenance-carousel {
    height: auto;
    min-height: 1.35rem;
  }

  .maintenance-slide {
    white-space: normal;
    line-height: 1.35;
  }

  .maintenance-submit {
    width: 100%;
    padding: 0.6rem 1rem;
  }

  .maintenance-form {
    width: 100%;
    justify-content: center;
  }

  .maintenance-input {
    min-width: 0;
    flex: 1 1 auto;
  }
}







/* ===== Notify sign-up modal ===== */
.notify-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 7, 12, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.notify-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.notify-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 34px 30px 30px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(160deg, rgba(20, 23, 32, 0.98), rgba(11, 13, 18, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.notify-overlay.visible .notify-modal {
  transform: translateY(0) scale(1);
}

.notify-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: color 0.2s ease;
}

.notify-close:hover {
  color: #d4af37;
}

.notify-title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: #fff;
}

.notify-sub {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notify-label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.85);
  margin-top: 8px;
}

.notify-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.notify-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.notify-input:focus {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

.notify-choices {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.notify-choice {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.notify-choice:hover {
  border-color: rgba(212, 175, 55, 0.45);
}

.notify-choice input {
  accent-color: #d4af37;
}

.notify-choice:has(input:checked) {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.08);
  color: #fff;
}

.notify-submit {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

.notify-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 18px 4px 6px;
}

.notify-thanks.visible {
  display: flex;
}

.notify-thanks p {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}

@media (max-width: 560px) {
  .notify-choices {
    flex-direction: column;
  }
}

/* Google Calendar booking links open as top-level pages because Google blocks
   its appointment page from being embedded in an iframe on some browsers. */

.gcal-btn-wrapper,
.gcal-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gcal-booking-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.75rem 1.5rem !important;
  height: auto !important;
  min-height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid var(--accent-gold) !important;
  background: rgba(244, 196, 48, 0.12) !important;
  color: var(--accent-gold) !important;
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  box-shadow: 0 0 18px rgba(244, 196, 48, 0.25) !important;
  transition: var(--transition) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.gcal-booking-link:hover {
  background: rgba(244, 196, 48, 0.22) !important;
  box-shadow: 0 0 28px rgba(244, 196, 48, 0.45) !important;
  transform: translateY(-1px) !important;
}

.gcal-booking-link:active {
  transform: translateY(0) !important;
}

/* Header-specific sizing */
.header-actions .gcal-booking-link {
  padding: 0.6rem 1.25rem !important;
  font-size: 0.9rem !important;
}

/* Outline/ghost variant used in heroes and banners */
.gcal-btn-wrapper.gcal-outline .gcal-booking-link {
  border: 1px solid var(--accent-gold) !important;
  background: rgba(244, 196, 48, 0.08) !important;
  color: var(--accent-gold) !important;
}

.gcal-btn-wrapper.gcal-outline .gcal-booking-link:hover {
  background: rgba(244, 196, 48, 0.18) !important;
}

/* Primary filled variant */
.gcal-btn-wrapper.gcal-primary .gcal-booking-link,
.gcal-header-btn .gcal-booking-link {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-glow)) !important;
  color: #0A111E !important;
  font-weight: 700 !important;
  border: none !important;
}

.gcal-btn-wrapper.gcal-primary .gcal-booking-link:hover,
.gcal-header-btn .gcal-booking-link:hover {
  background: linear-gradient(135deg, #FFD54F, #F4C430) !important;
  box-shadow: 0 0 32px rgba(244, 196, 48, 0.5) !important;
}




/* ===== How It Works — step mockup panel contents ===== */
.wm-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.1rem 0;
}

.wm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
}

.wm-row-label { color: var(--text-muted); }
.wm-row-value { color: var(--accent-gold); font-weight: 600; }

.wm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.wm-chip {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 196, 48, 0.3);
  background: rgba(244, 196, 48, 0.08);
  color: var(--text-muted);
}

.wm-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  align-items: center;
  margin-top: 1.2rem;
}

.wm-meter-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wm-meter-value {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.wm-meter-track {
  grid-column: 1 / -1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wm-meter-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 196, 48, 0.6), var(--accent-gold));
}

/* Engine pipeline */
.wm-pipeline {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.wm-stage {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wm-stage-out {
  border-color: rgba(244, 196, 48, 0.35);
  background: rgba(244, 196, 48, 0.07);
}

.wm-stage-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
}

.wm-stage-value {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.wm-arrow {
  color: rgba(244, 196, 48, 0.6);
  font-size: 0.9rem;
  line-height: 1;
}

.wm-score-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.wm-score {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.wm-score-unit {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Recruiter dashboard mock */
.wm-cand-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.wm-cand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.wm-cand-name {
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  font-weight: 600;
}

.wm-cand-role {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.wm-cand-score {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.wm-cand-top { color: var(--accent-gold); }

.wm-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.wm-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
  padding: 0.6rem 0.35rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.wm-metric-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.wm-metric-label {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Product page ===== */
.product-section-head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.product-eyebrow {
  display: inline-block; font-size: 2.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 0.75rem; font-weight: 700;
}
.product-modules, .impact-section, .matrix-section { margin: 5rem 0; }
.product-modules { margin-top: 0.5rem; }

.module-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.module-row {
  display: grid; grid-template-columns: 64px 1.2fr 1fr; gap: 1.75rem;
  align-items: start; padding: 2rem; transition: var(--transition);
}
.module-row:hover { border-color: rgba(244, 196, 48, 0.35); box-shadow: var(--shadow-glow); }
.module-index {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  color: var(--accent-gold); border: 1px solid rgba(244, 196, 48, 0.35);
  border-radius: 50%; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244, 196, 48, 0.07);
}
.module-body h2 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 0.5rem; }
.module-body > p { color: var(--text-muted); margin-bottom: 1rem; }
.module-points { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.module-points li { position: relative; padding-left: 1.15rem; color: var(--text-muted); font-size: 0.92rem; }
.module-points li::before {
  content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent-gold);
}

.module-mock {
  background: rgba(8, 14, 26, 0.7); border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md); padding: 1.1rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.mock-line-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.mock-bar { height: 8px; border-radius: 99px; background: rgba(148, 163, 184, 0.25); }
.mock-bar-gold { background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-glow)); }
.mock-chip-row { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.25rem; }
.mock-chip {
  font-size: 0.68rem; padding: 0.25rem 0.55rem; border-radius: 99px;
  border: 1px solid rgba(244, 196, 48, 0.3); color: var(--accent-gold);
  background: rgba(244, 196, 48, 0.08);
}
.verify-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--text-muted);
  padding: 0.45rem 0; border-bottom: 1px solid rgba(30, 45, 74, 0.6);
}
.verify-row:last-child { border-bottom: none; }
.verify-pill { font-size: 0.65rem; padding: 0.2rem 0.5rem; border-radius: 99px; }
.verify-pill.is-ok { color: var(--accent-emerald); background: rgba(16, 185, 129, 0.12); }
.verify-pill.is-pending { color: var(--accent-gold); background: rgba(244, 196, 48, 0.12); }
.mock-score { font-family: 'JetBrains Mono', monospace; color: var(--accent-gold); font-size: 0.85rem; }
.fit-meter { height: 10px; border-radius: 99px; background: rgba(148, 163, 184, 0.2); overflow: hidden; }
.fit-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--accent-gold-glow), var(--accent-gold)); }
.fit-legend { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-muted); }
.module-chart { height: 78px; margin-top: 0.5rem; }

/* Experience Depth mock */
.depth-mock { gap: 0.75rem; }
.depth-timeline { display: flex; flex-direction: column; gap: 0.6rem; }
.depth-node {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; color: var(--text-muted);
}
.depth-node.is-gold { color: var(--accent-gold); }
.depth-year {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  min-width: 36px; color: var(--text-muted);
}
.depth-node.is-gold .depth-year { color: var(--accent-gold); }
.depth-bar {
  height: 7px; border-radius: 99px;
  background: rgba(148, 163, 184, 0.25); display: block;
}
.depth-node.is-gold .depth-bar {
  background: linear-gradient(90deg, var(--accent-gold-glow), var(--accent-gold));
}
.depth-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem; margin-top: 0.25rem;
  padding-top: 0.6rem; border-top: 1px solid rgba(30, 45, 74, 0.6);
}
.depth-score {
  font-family: 'JetBrains Mono', monospace; font-size: 0.85rem;
  color: var(--accent-gold);
}
.depth-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.impact-stat { padding: 1.75rem 1.5rem; text-align: center; }
.impact-value {
  display: block; font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800;
  color: var(--accent-gold); margin-bottom: 0.5rem;
}
.impact-label { color: var(--text-muted); font-size: 0.88rem; }

.matrix { padding: 0.5rem 1.5rem 1rem; }
.matrix-head, .matrix-row {
  display: grid; grid-template-columns: 1fr 1.2fr 1.4fr; gap: 1rem;
  padding: 0.95rem 0; align-items: center;
}
.matrix-head {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 1px solid var(--bg-card-border);
}
.matrix-row { border-bottom: 1px solid rgba(30, 45, 74, 0.55); font-size: 0.9rem; color: var(--text-muted); }
.matrix-row:last-child { border-bottom: none; }
.matrix-gold { color: var(--accent-gold); }

@media (max-width: 900px) {
  .module-row { grid-template-columns: 48px 1fr; }
  .module-visual { grid-column: 1 / -1; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .matrix-head, .matrix-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .matrix-head { display: none; }
}
.module-mock .mock-avatar-gold { width: 28px; height: 28px; min-width: 28px; flex: 0 0 28px; }

/* ============ Market Analysis (home) ============ */
.market-section { margin: 5rem 0; }
.market-head { text-align: center; max-width: 780px; margin: 0 auto 2.25rem; }
.market-head .product-eyebrow { display: block; font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.65rem; }
.market-head .section-subtitle { margin-top: 0.5rem; }
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.market-card { padding: 1.5rem 1.65rem; }
.market-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.15rem; }
.market-card-head h3 { margin: 0; font-size: 1.1rem; }
.market-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-gold);
  border: 1px solid rgba(224, 176, 64, 0.35); border-radius: 999px; padding: 0.2rem 0.6rem;
}
.market-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.market-row {
  display: grid; grid-template-columns: 2rem minmax(0, 1fr) 5.5rem 2.5rem;
  align-items: center; gap: 0.85rem;
  padding: 0.6rem 0.7rem; border-radius: 12px;
  border: 1px solid rgba(30, 45, 74, 0.6); background: rgba(12, 20, 36, 0.45);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.market-row:hover { border-color: rgba(224, 176, 64, 0.4); transform: translateX(3px); }
.market-list-roles .market-row { grid-template-columns: 2rem minmax(0, 1fr) 4.25rem; }
.market-rank { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--accent-gold); opacity: 0.8; }
.market-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.market-name { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.market-meta { font-size: 0.78rem; color: var(--text-muted); }
.market-bar-wrap { height: 6px; border-radius: 999px; background: rgba(30, 45, 74, 0.8); overflow: hidden; }
.market-bar { display: block; height: 100%; border-radius: 999px; background: rgba(120, 150, 200, 0.65); }
.market-bar.is-gold { background: linear-gradient(90deg, var(--accent-gold), #f5d580); }
.market-value { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; text-align: right; color: var(--text-primary); }
.market-trend { font-size: 0.82rem; font-weight: 600; text-align: right; color: var(--accent-gold); }
.market-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.market-stat { padding: 1.25rem; text-align: center; display: flex; flex-direction: column; gap: 0.4rem; }
.market-stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--accent-gold); }
.market-stat-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
.market-footnote { margin-top: 1.25rem; text-align: center; font-size: 0.74rem; color: var(--text-muted); opacity: 0.75; }
@media (max-width: 900px) {
  .market-grid { grid-template-columns: 1fr; }
  .market-stats { grid-template-columns: repeat(2, 1fr); }
  .market-row { grid-template-columns: 1.75rem minmax(0, 1fr) 2.5rem; }
  .market-bar-wrap { display: none; }
}

/* ============================================================
   DEMO PAGES (candidate + recruiter)
   ============================================================ */

.demo-ribbon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem auto 0;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(244, 196, 48, 0.35);
  border-radius: 999px;
  background: rgba(244, 196, 48, 0.08);
  color: var(--text-muted);
  font-size: 0.85rem;
  width: fit-content;
  max-width: 100%;
}
.demo-ribbon strong { color: var(--accent-gold); }

.demo-hero { padding-bottom: 0.25rem; }
.demo-hero-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.demo-switch-current {
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 196, 48, 0.4);
  color: var(--accent-gold);
  font-weight: 600;
}

.demo-section { margin: 2.5rem 0 0.75rem; }
.demo-section-head { margin-bottom: 0.35rem; }
.demo-muted { color: var(--text-muted); }
.demo-footnote { margin-top: 0.5rem; color: var(--text-muted); font-size: 0.82rem; }
.demo-empty { padding: 2rem; text-align: center; color: var(--text-muted); }

.demo-avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,196,48,0.9), rgba(229,169,60,0.7));
  color: #10182b;
  font-weight: 800;
  font-size: 0.95rem;
}
.demo-avatar-sm { width: 36px; height: 36px; flex-basis: 36px; font-size: 0.8rem; }
.demo-avatar-lg { width: 64px; height: 64px; flex-basis: 64px; font-size: 1.25rem; }

.demo-chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.demo-chip {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--bg-card-border);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-size: 0.75rem;
  white-space: nowrap;
}
.demo-chip-verified {
  border-color: rgba(244,196,48,0.4);
  color: var(--accent-gold);
  background: rgba(244,196,48,0.08);
}

.demo-chip-skill {
  border-color: rgba(96, 165, 250, 0.45);
  color: #60A5FA;
  background: rgba(96, 165, 250, 0.12);
  font-weight: 600;
}

.demo-chip-skill:hover {
  border-color: rgba(96, 165, 250, 0.7);
  background: rgba(96, 165, 250, 0.18);
}

.demo-fit-chip {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(244,196,48,0.4);
  background: rgba(244,196,48,0.1);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.demo-fit-lg { font-size: 0.95rem; padding: 0.4rem 0.9rem; }

.demo-status {
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.demo-status-gold { color: var(--accent-gold); border-color: rgba(244,196,48,0.4); background: rgba(244,196,48,0.1); }
.demo-status-blue { color: #7dd3fc; border-color: rgba(125,211,252,0.35); background: rgba(125,211,252,0.1); }
.demo-status-green { color: #34d399; border-color: rgba(52,211,153,0.35); background: rgba(52,211,153,0.1); }
.demo-status-muted { color: var(--text-muted); border-color: var(--bg-card-border); background: rgba(255,255,255,0.03); }

/* meters */
.demo-meter-track {
  height: 7px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.demo-meter-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold-glow), var(--accent-gold));
}
.demo-meter-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.demo-meter-head strong { color: var(--accent-gold); font-size: 1.35rem; }
.demo-meter-note { font-size: 0.78rem; margin-top: 0.5rem; }

/* candidate profile card */
.demo-profile-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.75rem;
}
.demo-profile-main { display: flex; gap: 1.1rem; align-items: flex-start; flex: 1 1 340px; }
.demo-profile-main h2 { font-family: var(--font-heading); font-size: 1.6rem; }
.demo-profile-side { flex: 0 1 280px; display: flex; flex-direction: column; gap: 1.25rem; }

.demo-visibility { display: flex; flex-direction: column; gap: 0.6rem; }
.demo-switch { display: inline-flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.demo-switch input { position: absolute; opacity: 0; pointer-events: none; }
.demo-switch-track {
  width: 44px; height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--bg-card-border);
  position: relative;
  transition: var(--transition);
}
.demo-switch-knob {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--text-muted);
  transition: var(--transition);
}
.demo-switch input:checked + .demo-switch-track { background: rgba(244,196,48,0.25); border-color: rgba(244,196,48,0.5); }
.demo-switch input:checked + .demo-switch-track .demo-switch-knob { transform: translateX(20px); background: var(--accent-gold); }
.demo-switch input:focus-visible + .demo-switch-track { box-shadow: var(--shadow-glow); }
.demo-switch-label { font-size: 0.85rem; color: var(--text-muted); }
.demo-visibility-state { font-size: 0.8rem; font-weight: 700; }
.demo-visibility-state.is-open { color: #34d399; }
.demo-visibility-state.is-private { color: var(--text-muted); }

[data-visibility-gated].is-hidden-signal { opacity: 0.25; filter: blur(2px); pointer-events: none; transition: var(--transition); }

/* stories */
.demo-story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; }
.demo-story-card { padding: 1.5rem; position: relative; }
.demo-story-card h4 { font-family: var(--font-heading); margin: 0.75rem 0 0.6rem; font-size: 1.1rem; }
.demo-story-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.45rem; }
.demo-story-card p strong { color: var(--text-main); }
.demo-story-index { font-family: var(--font-heading); color: var(--accent-gold); font-size: 0.85rem; letter-spacing: 0.1em; }

/* role fit rows */
.demo-fit-list { display: flex; flex-direction: column; gap: 1rem; }
.demo-fit-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 1.5rem; flex-wrap: wrap; }
.demo-fit-row h4 { font-family: var(--font-heading); font-size: 1.02rem; margin-bottom: 0.3rem; }
.demo-fit-main { flex: 1 1 300px; }
.demo-fit-main p { font-size: 0.85rem; }
.demo-fit-score { display: flex; align-items: center; gap: 0.85rem; min-width: 190px; flex: 0 1 200px; }
.demo-fit-score strong { color: var(--accent-gold); }

/* requests */
.demo-request-list { display: flex; flex-direction: column; gap: 1.1rem; }
.demo-request-card { padding: 1.4rem 1.5rem; transition: var(--transition); }
.demo-request-card.collapsed { opacity: 0.7; }
.demo-request-head { display: flex; align-items: center; gap: 0.9rem; }
.demo-request-meta { flex: 1 1 auto; }
.demo-request-meta h4 { font-family: var(--font-heading); font-size: 1rem; }
.demo-request-meta p { font-size: 0.8rem; }
.demo-request-note { margin: 0.9rem 0; color: var(--text-muted); font-style: italic; font-size: 0.9rem; }
.demo-slot-line { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.demo-slot-line strong { color: var(--text-main); }
.demo-request-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }

.demo-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin: 0.9rem 0 0.35rem; font-weight: 600; }
.demo-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-card-border);
  background: rgba(10, 17, 30, 0.75);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.demo-input:focus { border-color: rgba(244,196,48,0.55); box-shadow: var(--shadow-glow); }
.demo-reply-actions { display: flex; gap: 0.5rem; margin-top: 0.7rem; }

.demo-thread { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.demo-thread-item {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-card-border);
  background: rgba(255,255,255,0.03);
  font-size: 0.85rem;
}
.demo-thread-who { display: block; font-size: 0.72rem; color: var(--accent-gold); font-weight: 700; margin-bottom: 0.2rem; }
.demo-thread-you { border-color: rgba(244,196,48,0.3); }

.demo-resolved {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-card-border);
  background: rgba(255,255,255,0.03);
  font-size: 0.9rem;
}
.demo-resolved p { font-size: 0.82rem; margin-top: 0.2rem; }
.demo-resolved-accepted { border-color: rgba(52,211,153,0.4); background: rgba(52,211,153,0.08); }

/* recruiter stats */
.demo-stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.demo-stat { padding: 1.25rem 1.4rem; display: flex; flex-direction: column; gap: 0.3rem; }
.demo-stat-value { font-family: var(--font-heading); font-size: 1.8rem; color: var(--accent-gold); font-weight: 800; }

/* tabs */
.demo-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--bg-card-border);
  background: rgba(10,17,30,0.7);
  margin-bottom: 1.25rem;
}
.demo-tab-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.demo-tab-btn.active { background: rgba(244,196,48,0.15); color: var(--accent-gold); box-shadow: var(--shadow-glow); }
.demo-tab-panel { display: none; }
.demo-tab-panel.active { display: block; }
.demo-panel-head { margin-bottom: 0.9rem; color: var(--text-muted); font-size: 0.85rem; }

.demo-pool-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.demo-search { max-width: 320px; }
.demo-filter-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.demo-filter-chip {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--bg-card-border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition);
}
.demo-filter-chip:hover { border-color: rgba(244,196,48,0.4); color: var(--text-main); }
.demo-filter-chip.active { border-color: rgba(244,196,48,0.55); color: var(--accent-gold); background: rgba(244,196,48,0.1); }

/* candidate rows */
.demo-candidate-list { display: flex; flex-direction: column; gap: 0.75rem; }
.demo-candidate-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-card-border);
  background: var(--bg-card);
  color: var(--text-main);
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition);
}
.demo-candidate-row:hover { border-color: rgba(244,196,48,0.45); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.demo-row-main { flex: 1 1 auto; display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.demo-row-name { font-family: var(--font-heading); font-weight: 700; }
.demo-row-main .demo-muted { font-size: 0.82rem; }
.demo-row-side { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; }

/* roles + job form */
.demo-two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }
.demo-role-list { display: flex; flex-direction: column; gap: 0.9rem; }
.demo-role-card { padding: 1.15rem 1.3rem; }
.demo-role-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.demo-role-head h4 { font-family: var(--font-heading); font-size: 1.02rem; }
.demo-role-card .demo-muted { font-size: 0.82rem; margin-top: 0.2rem; }
.demo-role-stats { display: flex; gap: 1.25rem; margin-top: 0.8rem; font-size: 0.82rem; color: var(--text-muted); }
.demo-role-stats strong { color: var(--accent-gold); }
.demo-job-form { padding: 1.5rem; }
.demo-job-form button[type="submit"] { margin-top: 1.25rem; width: 100%; }
.demo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* drawer */
.demo-drawer { position: fixed; inset: 0; z-index: 1200; pointer-events: none; }
.demo-drawer.visible { pointer-events: auto; }
.demo-drawer-scrim {
  position: absolute; inset: 0;
  background: rgba(4, 8, 16, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.demo-drawer.visible .demo-drawer-scrim { opacity: 1; }
.demo-drawer-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(480px, 100%);
  padding: 2rem 1.75rem;
  overflow-y: auto;
  background: rgba(12, 20, 36, 0.97);
  border-left: 1px solid rgba(244,196,48,0.25);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-drawer.visible .demo-drawer-panel { transform: translateX(0); }
.demo-drawer-head { display: flex; gap: 1rem; align-items: flex-start; flex-wrap: wrap; margin-bottom: 1.5rem; }
.demo-drawer-head h3 { font-family: var(--font-heading); font-size: 1.3rem; }
.demo-drawer-head p { font-size: 0.85rem; }
.demo-drawer-label { font-family: var(--font-heading); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-gold); margin: 1.5rem 0 0.6rem; }
.demo-bullets { padding-left: 1.1rem; color: var(--text-muted); font-size: 0.88rem; display: flex; flex-direction: column; gap: 0.5rem; }
.demo-drawer-actions { display: flex; gap: 0.6rem; margin-top: 2rem; flex-wrap: wrap; }

/* intro modal */
.demo-modal { position: fixed; inset: 0; z-index: 1300; display: none; }
.demo-modal.visible { display: grid; place-items: center; }
.demo-modal-scrim { position: absolute; inset: 0; background: rgba(4,8,16,0.7); backdrop-filter: blur(4px); }
.demo-modal-panel { position: relative; width: min(440px, calc(100vw - 2rem)); padding: 2rem 1.75rem; }
.demo-modal-panel h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 0.4rem; }
.demo-modal-panel .demo-muted { font-size: 0.85rem; }
.demo-full-btn { width: 100%; margin-top: 1.4rem; }

/* cta band */
.demo-cta-band { text-align: center; padding: 2.5rem 1.5rem; border: 1px solid rgba(244,196,48,0.25); border-radius: var(--radius-lg); background: rgba(244,196,48,0.05); }
.demo-cta-band h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; }
.demo-cta-actions { display: flex; justify-content: center; gap: 0.8rem; margin-top: 1.5rem; flex-wrap: wrap; align-items: center; }

/* toasts */
.demo-toast-host { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1400; display: flex; flex-direction: column; gap: 0.6rem; }
.demo-toast {
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(244,196,48,0.45);
  background: rgba(12, 20, 36, 0.96);
  color: var(--text-main);
  font-size: 0.85rem;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  max-width: 320px;
}
.demo-toast.visible { opacity: 1; transform: translateY(0); }
.demo-toast-muted { border-color: var(--bg-card-border); box-shadow: none; }

@media (max-width: 900px) {
  .demo-two-col { grid-template-columns: 1fr; }
  .demo-fit-row { flex-direction: column; align-items: flex-start; }
  .demo-fit-score { width: 100%; }
  .demo-candidate-row { flex-wrap: wrap; }
  .demo-row-side { justify-content: flex-start; }
  .demo-form-row { grid-template-columns: 1fr; }
}

/* demo button variants */
.btn-ghost {
  background: transparent;
  border: 1px solid var(--bg-card-border);
  color: var(--text-main);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: rgba(244, 196, 48, 0.5); color: var(--accent-gold); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }

/* anchors styled as buttons */
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.demo-section-head { text-align: center; }
.demo-section .product-eyebrow { font-size: 1.45rem; letter-spacing: 0.06em; color: var(--accent-gold); }
.demo-section .section-subtitle { margin-top: 0.35rem; text-align: center; }
.demo-hero + .demo-section { margin-top: 2.5rem; }

/* respect the hidden attribute even on flex/grid demo blocks */
[hidden] { display: none !important; }

/* ===== Talent Acquisition demo request modal ===== */
.tad-modal {
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.tad-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 18px;
}

.tad-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tad-field-full {
  grid-column: 1 / -1;
}

.tad-hint {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.tad-textarea {
  font-family: inherit;
  resize: vertical;
  min-height: 76px;
}

.tad-error {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #ff7b7b;
  display: none;
}

.tad-error.visible {
  display: block;
}

.tad-form .notify-submit {
  margin-top: 18px;
  width: 100%;
}

@media (max-width: 620px) {
  .tad-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------- */
/* Talent console shell (recruiter demo) — dashboard style reference */
/* ---------------------------------------------------------------- */
.console-wrap { max-width: 1360px; }
.console-shell {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 3rem;
  padding: 1rem;
  border-radius: 26px;
  border: 1px solid var(--bg-card-border);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.75);
}
.console-sidebar {
  border-radius: 20px;
  padding: 1.25rem 1rem;
  background: rgba(10, 16, 32, 0.72);
  border: 1px solid var(--bg-card-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 110px;
  align-self: start;
}
.console-brand { display: flex; align-items: center; gap: 0.7rem; }
.console-brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 800;
  color: var(--accent-gold);
  border: 1px solid rgba(244,196,48,0.5);
  background: rgba(244,196,48,0.12);
  box-shadow: var(--shadow-glow);
}
.console-brand-text { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; }
.console-brand-text small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.console-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.console-nav-item {
  text-decoration: none;
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition);
}
.console-nav-item:hover { color: var(--text-main); background: rgba(255,255,255,0.05); }
.console-nav-item.active {
  color: #0b1020;
  background: linear-gradient(120deg, var(--accent-gold), #ffdf80);
  box-shadow: var(--shadow-glow);
}
.console-nav-item.active .console-nav-badge { background: rgba(11,16,32,0.18); color: #0b1020; }
.console-nav-icon { font-size: 0.95rem; opacity: 0.9; }
.console-nav-badge {
  margin-left: auto; font-size: 0.7rem; font-weight: 700;
  padding: 0.1rem 0.45rem; border-radius: 999px;
  background: rgba(244,196,48,0.16); color: var(--accent-gold);
}
.console-sidebar-foot { margin-top: auto; font-size: 0.85rem; }

.console-main { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }
.console-topbar {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  background: rgba(10, 16, 32, 0.6);
  border: 1px solid var(--bg-card-border);
}
.console-title { font-family: var(--font-heading); font-size: 1.75rem; margin: 0; }
.console-sub { color: var(--text-muted); font-size: 0.88rem; margin: 0.3rem 0 0; }
.console-topbar-actions { display: flex; align-items: center; gap: 0.6rem; }
.console-round-btn, .console-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--bg-card-border);
  background: rgba(255,255,255,0.05);
  color: var(--text-muted); font-size: 0.95rem;
}
.console-round-btn-gold { color: var(--accent-gold); border-color: rgba(244,196,48,0.45); background: rgba(244,196,48,0.12); }
.console-avatar { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; color: var(--text-main); }

.console-section { margin: 0; scroll-margin-top: 120px; }
.console-panel {
  border-radius: 20px;
  border: 1px solid var(--bg-card-border);
  background: rgba(10, 16, 32, 0.62);
  padding: 1.4rem 1.5rem;
}
.console-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 1.1rem;
}
.console-panel-head h2 { font-family: var(--font-heading); font-size: 1.05rem; margin: 0; }
.console-pill {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  color: var(--accent-gold); border: 1px solid rgba(244,196,48,0.4); background: rgba(244,196,48,0.1);
}
.console-chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.25rem; }
.console-chart { display: flex; flex-direction: column; }
.console-bars {
  display: flex; align-items: flex-end; justify-content: space-around;
  gap: 1rem; height: 190px;
  padding: 0.75rem 0.25rem 0;
  border-bottom: 1px solid var(--bg-card-border);
}
.console-bar-col { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; flex: 1 1 0; gap: 0.5rem; }
.console-bar-col small { color: var(--text-muted); font-size: 0.72rem; }
.console-bar {
  width: 26px; border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--accent-gold), rgba(244,196,48,0.35));
  box-shadow: 0 0 18px -6px rgba(244,196,48,0.6);
}
.console-bar-alt { background: linear-gradient(180deg, #7dd3fc, rgba(125,211,252,0.3)); box-shadow: 0 0 18px -6px rgba(125,211,252,0.55); }
.console-bar-pair { flex-direction: row; align-items: flex-end; gap: 0.35rem; position: relative; padding-bottom: 1.4rem; }
.console-bar-pair small { position: absolute; bottom: 0; }
.console-legend { display: flex; gap: 1.25rem; margin-top: 0.85rem; font-size: 0.75rem; color: var(--text-muted); }
.console-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-gold); margin-right: 0.35rem; }
.console-dot-alt { background: #7dd3fc; }
.console-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.25rem; align-items: start; }
.console-panel .demo-job-form { padding: 0; background: none; border: none; box-shadow: none; }

@media (max-width: 1024px) {
  .console-shell { grid-template-columns: 1fr; }
  .console-sidebar { position: static; }
  .console-nav { flex-direction: row; flex-wrap: wrap; }
  .console-chart-grid, .console-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .console-shell { padding: 0.6rem; border-radius: 18px; }
  .console-topbar { flex-direction: column; }
  .console-panel { padding: 1.1rem; }
}

/* ---------------------------------------------------------------- */
/* Talent console v2 — fill-screen layout, light mode, richer charts */
/* ---------------------------------------------------------------- */
.console-wrap { max-width: min(1680px, 100%); }
.console-shell {
  height: clamp(560px, calc(100vh - 220px), 1000px);
  align-items: stretch;
  overflow: hidden;
}
.console-sidebar { position: static; height: 100%; align-self: stretch; }
.console-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.console-nav-item {
  width: 100%;
  font-family: var(--font-primary);
  text-align: left;
  cursor: pointer;
  background: transparent;
}
.console-main { height: 100%; overflow: hidden; }
.console-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.console-scroll::-webkit-scrollbar { width: 8px; }
.console-scroll::-webkit-scrollbar-thumb { background: rgba(244,196,48,0.28); border-radius: 999px; }
.console-topbar-copy { min-width: 0; }
.console-title { font-size: clamp(1.25rem, 1.6vw, 1.75rem); }

.console-section { display: flex; flex-direction: column; gap: 1.25rem; }
.console-chart-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); margin-top: 0; }
.console-trend { font-size: 0.74rem; font-weight: 700; }
.console-trend.up { color: #34d399; }
.console-trend.down { color: #7dd3fc; }

/* theme toggle */
.console-theme-toggle {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(244,196,48,0.4);
  background: rgba(244,196,48,0.1);
  color: var(--accent-gold);
  font-family: var(--font-primary); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.console-theme-toggle:hover { box-shadow: var(--shadow-glow); }

/* donut */
.console-donut-wrap { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.console-donut {
  width: 148px; height: 148px; border-radius: 50%;
  flex: 0 0 auto;
  mask: radial-gradient(circle, transparent 54%, #000 55%);
  -webkit-mask: radial-gradient(circle, transparent 54%, #000 55%);
  transition: background 0.4s ease;
}
.console-donut-legend { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; flex: 1 1 180px; }
.console-donut-legend li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }
.console-donut-legend strong { margin-left: auto; color: var(--text-main); }
.console-mini-tabs { margin-bottom: 0; }
.console-mini-tabs .demo-tab-btn { padding: 0.3rem 0.7rem; font-size: 0.75rem; }

/* pipeline stages */
.console-stage-list { display: flex; flex-direction: column; gap: 0.85rem; }
.console-stage { display: grid; grid-template-columns: 130px 1fr 34px; align-items: center; gap: 0.75rem; font-size: 0.8rem; color: var(--text-muted); }
.console-stage strong { text-align: right; color: var(--accent-gold); font-family: var(--font-heading); }
.console-stage .demo-meter-track { margin: 0; }

/* scrollable lists inside panels */
.demo-list-scroll { max-height: min(46vh, 460px); overflow-y: auto; padding: 2px 0.4rem 2px 2px; }
.demo-list-scroll::-webkit-scrollbar { width: 8px; }
.demo-list-scroll::-webkit-scrollbar-thumb { background: rgba(244,196,48,0.28); border-radius: 999px; }

/* ---------- light mode (scoped to the console + its overlays) ---------- */
.console-shell.is-light {
  --text-main: #0e1626;
  --text-muted: #5c6779;
  --bg-card-border: rgba(14, 22, 38, 0.1);
  background: linear-gradient(160deg, #ffffff, #f3f6fb);
  border-color: rgba(14, 22, 38, 0.12);
  box-shadow: 0 30px 80px -50px rgba(14, 22, 38, 0.4);
  color: var(--text-main);
}
.console-shell.is-light .console-sidebar,
.console-shell.is-light .console-topbar,
.console-shell.is-light .console-panel { background: #ffffff; border-color: rgba(14,22,38,0.09); }
.console-shell.is-light .console-sidebar { background: #f7f9fc; }
.console-shell.is-light .console-title,
.console-shell.is-light .console-panel h2,
.console-shell.is-light .demo-row-name,
.console-shell.is-light .console-brand-text { color: #0e1626; }
.console-shell.is-light .console-nav-item { color: #5c6779; }
.console-shell.is-light .console-nav-item:hover { background: rgba(14,22,38,0.05); color: #0e1626; }
.console-shell.is-light .console-nav-item.active { color: #0b1020; }
.console-shell.is-light .demo-candidate-row,
.console-shell.is-light .demo-role-card,
.console-shell.is-light .demo-input,
.console-shell.is-light .demo-tabs { background: #f7f9fc; color: #0e1626; border-color: rgba(14,22,38,0.1); }
.console-shell.is-light .demo-chip { background: rgba(14,22,38,0.04); color: #5c6779; border-color: rgba(14,22,38,0.1); }
.console-shell.is-light .demo-meter-track { background: rgba(14,22,38,0.08); }
.console-shell.is-light .console-bars { border-bottom-color: rgba(14,22,38,0.12); }
.console-shell.is-light .console-round-btn,
.console-shell.is-light .console-avatar { background: rgba(14,22,38,0.04); color: #5c6779; }
.console-shell.is-light .console-avatar { color: #0e1626; }
.console-shell.is-light .console-bar { background: linear-gradient(180deg, #c79a12, rgba(199,154,18,0.35)); box-shadow: none; }
.console-shell.is-light .console-bar-alt { background: linear-gradient(180deg, #1f5fa8, rgba(31,95,168,0.3)); box-shadow: none; }
.console-shell.is-light .demo-stat-value,
.console-shell.is-light .console-stage strong,
.console-shell.is-light .demo-fit-chip { color: #a97f0a; }
.console-shell.is-light .console-brand-mark { color: #a97f0a; background: rgba(199,154,18,0.12); box-shadow: none; }
.console-shell.is-light .demo-candidate-row:hover { border-color: rgba(199,154,18,0.5); box-shadow: 0 12px 24px -18px rgba(14,22,38,0.5); }

body.console-light .demo-drawer-panel,
body.console-light .demo-modal-panel {
  background: #ffffff;
  color: #0e1626;
  border-color: rgba(14,22,38,0.12);
}
body.console-light .demo-drawer-panel .demo-muted,
body.console-light .demo-modal-panel .demo-muted { color: #5c6779; }
body.console-light .demo-drawer-panel h3,
body.console-light .demo-drawer-panel h4,
body.console-light .demo-modal-panel h3 { color: #0e1626; }
body.console-light .demo-drawer-panel .demo-input,
body.console-light .demo-modal-panel .demo-input { background: #f7f9fc; color: #0e1626; border-color: rgba(14,22,38,0.12); }
body.console-light .demo-drawer-panel .demo-bullets { color: #5c6779; }
body.console-light .notify-close { color: #0e1626; }

@media (max-width: 1024px) {
  .console-shell { height: auto; overflow: visible; }
  .console-main { height: auto; overflow: visible; }
  .console-scroll { overflow: visible; }
  .console-nav { flex-direction: row; flex-wrap: wrap; }
  .console-nav-item { width: auto; }
  .demo-list-scroll { max-height: none; overflow: visible; }
}

/* console v2 — tighten vertical rhythm so the dashboard fills the fold */
.console-wrap { padding-top: 1rem; }
.console-wrap .demo-ribbon { margin: 0.25rem auto 0.5rem; }
.console-shell { margin: 0.75rem 0 2rem; }
.console-bars { height: clamp(130px, 16vh, 190px); }
.console-panel { padding: 1.2rem 1.3rem; }
.demo-stat { padding: 1rem 1.2rem; }
.demo-stat-value { font-size: clamp(1.4rem, 2vw, 1.8rem); }

/* Fictional-candidate disclaimer (Talent Acquisition demo) */
.demo-fiction-note {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #ff6b6b;
  border-left: 2px solid #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
  padding: 0.5rem 0.7rem;
  border-radius: 0 8px 8px 0;
}
.console-shell.is-light .demo-fiction-note { color: #c62828; border-left-color: #c62828; background: rgba(198, 40, 40, 0.07); }

/* ========== Candidate Demo — shared glass pane + light theme ========== */

/* Glass pane that sits behind profile → recruiter requests */
.demo-candidate-pane {
  position: relative;
  margin: 0 -1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(2px);
  transition: var(--transition);
}

/* Light mode: pane darkens slightly so white cards pop */
body.light-theme .demo-candidate-pane {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Visibility + theme toggles sit side-by-side under the score */
.demo-profile-toggles {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.candidate-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 196, 48, 0.4);
  background: rgba(244, 196, 48, 0.1);
  color: var(--accent-gold);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.candidate-theme-toggle:hover { box-shadow: var(--shadow-glow); }

/* Candidate demo light theme */
body.light-theme {
  background-color: #f7f9fc;
  background-image:
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.08) 0px, transparent 50%);
  color: #0e1626;
  --text-main: #0e1626;
  --text-muted: #5c6779;
  --bg-card-border: rgba(14, 22, 38, 0.1);
  --bg-card: rgba(255, 255, 255, 0.92);
}

body.light-theme .glass-card {
  background: #ffffff;
  border-color: rgba(14, 22, 38, 0.09);
}

body.light-theme .app-header {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(14, 22, 38, 0.1);
}

body.light-theme .brand-name,
body.light-theme .text-link,
body.light-theme .nav-pill,
body.light-theme .demo-profile-main h2,
body.light-theme .product-eyebrow,
body.light-theme .demo-section-head h3,
body.light-theme .demo-fit-main h4,
body.light-theme .demo-story-card h4,
body.light-theme .demo-story-card p strong,
body.light-theme .demo-request-card h4,
body.light-theme .page-hero h1,
body.light-theme .page-hero p {
  color: #0e1626;
}

body.light-theme .page-hero h1 {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

body.light-theme .text-link:hover,
body.light-theme .nav-pill:hover,
body.light-theme .nav-pill.active {
  color: var(--accent-gold);
}

body.light-theme .nav-logo-badge {
  background: #ffffff;
  border-color: var(--accent-gold);
}

body.light-theme .demo-chip {
  background: rgba(14, 22, 38, 0.04);
  color: #5c6779;
  border-color: rgba(14, 22, 38, 0.1);
}

body.light-theme .demo-chip-verified {
  background: rgba(244, 196, 48, 0.1);
  color: #a97f0a;
  border-color: rgba(199, 154, 18, 0.4);
}

body.light-theme .demo-chip-skill {
  border-color: rgba(96, 165, 250, 0.45);
  color: #60A5FA;
  background: rgba(96, 165, 250, 0.12);
}

body.light-theme .demo-meter-track {
  background: rgba(14, 22, 38, 0.08);
}

body.light-theme .demo-switch-track {
  background: rgba(14, 22, 38, 0.08);
  border-color: rgba(14, 22, 38, 0.15);
}

body.light-theme .demo-switch-label {
  color: #5c6779;
}

body.light-theme .app-footer {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(14, 22, 38, 0.1);
}

body.light-theme .footer-links a {
  color: #5c6779;
}

body.light-theme .footer-links a:hover {
  color: var(--accent-gold);
}

body.light-theme .demo-ribbon {
  background: rgba(14, 22, 38, 0.04);
  border-color: rgba(14, 22, 38, 0.1);
  color: #5c6779;
}

body.light-theme .demo-ribbon strong {
  color: #a97f0a;
}

body.light-theme .demo-cta-band {
  background: rgba(14, 22, 38, 0.04);
  border-color: rgba(14, 22, 38, 0.1);
}

body.light-theme .demo-cta-band h3 {
  color: #0e1626;
}

body.light-theme .demo-empty {
  color: #5c6779;
}

body.light-theme .demo-visibility-state.is-open {
  color: #0d9f6e;
}

body.light-theme .demo-visibility-state.is-private {
  color: #5c6779;
}

@media (max-width: 768px) {
  .demo-candidate-pane {
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
  }
  .demo-profile-toggles {
    gap: 0.75rem;
  }
}

/* Candidate demo page: light mode keeps the HyrLink blue background with white cards */
body.light-theme.candidate-demo-page {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.12) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --bg-card: #ffffff;
  --bg-card-border: rgba(255, 255, 255, 0.12);
}

body.light-theme.candidate-demo-page .app-header {
  background: rgba(10, 13, 20, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

body.light-theme.candidate-demo-page .app-footer {
  background: rgba(10, 13, 20, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}

body.light-theme.candidate-demo-page .brand-name,
body.light-theme.candidate-demo-page .text-link,
body.light-theme.candidate-demo-page .nav-pill,
body.light-theme.candidate-demo-page .product-eyebrow,
body.light-theme.candidate-demo-page .section-subtitle,
body.light-theme.candidate-demo-page .page-hero h1,
body.light-theme.candidate-demo-page .page-hero p,
body.light-theme.candidate-demo-page .demo-cta-band h3,
body.light-theme.candidate-demo-page .demo-footnote {
  color: var(--text-main);
}

body.light-theme.candidate-demo-page .page-hero h1 {
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-theme.candidate-demo-page .glass-card {
  background: #ffffff;
  border-color: rgba(14, 22, 38, 0.09);
}

body.light-theme.candidate-demo-page .glass-card h2,
body.light-theme.candidate-demo-page .glass-card h3,
body.light-theme.candidate-demo-page .glass-card h4,
body.light-theme.candidate-demo-page .glass-card p,
body.light-theme.candidate-demo-page .glass-card .demo-muted,
body.light-theme.candidate-demo-page .glass-card .demo-meter-head,
body.light-theme.candidate-demo-page .glass-card .demo-meter-note,
body.light-theme.candidate-demo-page .glass-card .demo-fit-main,
body.light-theme.candidate-demo-page .glass-card .demo-fit-score strong,
body.light-theme.candidate-demo-page .glass-card .demo-request-head,
body.light-theme.candidate-demo-page .glass-card .demo-request-meta,
body.light-theme.candidate-demo-page .glass-card .demo-request-note,
body.light-theme.candidate-demo-page .glass-card .demo-slot-line,
body.light-theme.candidate-demo-page .glass-card .demo-reply label,
body.light-theme.candidate-demo-page .glass-card .demo-reply textarea,
body.light-theme.candidate-demo-page .glass-card .demo-reply-actions button {
  color: #0e1626;
}

body.light-theme.candidate-demo-page .glass-card .demo-slot-line strong {
  color: #0e1626;
}

body.light-theme.candidate-demo-page .glass-card .demo-chip {
  background: rgba(14, 22, 38, 0.04);
  color: #5c6779;
  border-color: rgba(14, 22, 38, 0.1);
}

body.light-theme.candidate-demo-page .glass-card .demo-chip-verified {
  background: rgba(244, 196, 48, 0.1);
  color: #a97f0a;
  border-color: rgba(199, 154, 18, 0.4);
}

body.light-theme.candidate-demo-page .glass-card .demo-chip-skill {
  border-color: rgba(96, 165, 250, 0.45);
  color: #60A5FA;
  background: rgba(96, 165, 250, 0.12);
}

body.light-theme.candidate-demo-page .glass-card .demo-meter-track {
  background: rgba(14, 22, 38, 0.08);
}

body.light-theme.candidate-demo-page .glass-card .demo-switch-track {
  background: rgba(14, 22, 38, 0.08);
  border-color: rgba(14, 22, 38, 0.15);
}

body.light-theme.candidate-demo-page .glass-card .demo-switch-label {
  color: #5c6779;
}

body.light-theme.candidate-demo-page .demo-section-head .product-eyebrow {
  color: var(--accent-gold);
}

body.light-theme.candidate-demo-page .demo-section-head .section-subtitle {
  color: var(--text-main);
  text-align: center;
}
