/* NeverHire — Dark, Sharp, Confident */

:root {
  --bg: #080b12;
  --bg2: #0d1117;
  --fg: #f0f4f8;
  --fg-muted: #8892a4;
  --fg-dim: #4a5568;
  --accent: #00d4ff;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --danger: #ff4757;
  --card: #0f1923;
  --card-border: #1a2436;
  --card-hover: #152030;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--fg);
  letter-spacing: -0.04em;
  text-decoration: none;
}
.wordmark span { color: var(--accent); }
.site-header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site-header nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--fg); }
.btn-cta-small {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-cta-small:hover { opacity: 0.85; }

/* ── Section commons ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 540px;
}
.section-sub--center { margin: 0 auto; text-align: center; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(0, 212, 255, 0); }
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.btn-primary:hover { transform: translateY(-1px); opacity: 0.9; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--fg); }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}
.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
  margin-top: 0.2rem;
}

/* Task queue visual */
.hero-visual { position: relative; }
.task-queue {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4), 0 0 120px rgba(0, 212, 255, 0.04);
}
.tq-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1.5rem;
}
.tq-dot--live {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(0, 255, 136, 0); }
}
.tq-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-dim);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--card-border);
}
.tq-item:last-child { border-bottom: none; }
.tq-item--done { color: var(--fg-muted); text-decoration: line-through; }
.tq-item--active { color: var(--fg); font-weight: 500; }
.tq-item--queued { color: var(--fg-dim); }
.tq-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.12);
  border: 1.5px solid rgba(0, 255, 136, 0.4);
  flex-shrink: 0;
}
.tq-item--done .tq-check::after {
  content: '';
  display: block;
  width: 10px; height: 6px;
  border-left: 2px solid #00ff88;
  border-bottom: 2px solid #00ff88;
  transform: translate(3.5px, 1px) rotate(-45deg);
}
.tq-spin {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  border-top-color: var(--accent);
  flex-shrink: 0;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tq-dot--sm {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--card-border);
  flex-shrink: 0;
}

/* ── Roles (What it does) ── */
.roles { padding: 7rem 2rem; background: var(--bg2); }
.roles-inner { max-width: 1200px; margin: 0 auto; }
.roles-header {
  text-align: center;
  margin-bottom: 4rem;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.role-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.role-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(0, 212, 255, 0.05);
}
.role-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.role-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.role-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── How It Works ── */
.how { padding: 7rem 2rem; background: var(--bg); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--card-border);
  position: relative;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
}
.step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.how-visual {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
}
.how-visual-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1.5rem;
}
.how-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.how-cat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.how-cat-row:hover { border-color: rgba(0, 212, 255, 0.25); }
.how-cat-icon {
  width: 36px; height: 36px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.how-cat-text { flex: 1; }
.how-cat-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.how-cat-desc {
  font-size: 0.75rem;
  color: var(--fg-dim);
}
.how-cat-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.2);
  white-space: nowrap;
}

/* ── Who it's for ── */
.who { padding: 7rem 2rem; background: var(--bg2); }
.who-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.who-header { margin-bottom: 4rem; }
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.persona {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 2rem;
  text-align: left;
}
.persona-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.persona h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.persona p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.persona-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #00ff88;
  margin-top: 1rem;
}

/* ── Pricing ── */
.pricing { padding: 7rem 2rem; background: var(--bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-header { margin-bottom: 3.5rem; }
.pricing-card {
  display: inline-block;
  background: var(--card);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.06), 0 20px 60px rgba(0,0,0,0.3);
  text-align: left;
  max-width: 480px;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-amount span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0;
}
.pricing-period {
  font-size: 0.875rem;
  color: var(--fg-dim);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.pricing-check {
  width: 20px; height: 20px;
  background: rgba(0, 255, 136, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #00ff88;
  font-size: 0.65rem;
}
.pricing-cta {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s, transform 0.15s;
}
.pricing-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-trial {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--fg-dim);
}
.pricing-trial strong { color: var(--fg-muted); }

/* ── Footer ── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--card-border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-left: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg-muted); }
.footer-brand {
  font-size: 0.8rem;
  color: var(--fg-dim);
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
}
.footer-brand a { color: var(--fg-muted); text-decoration: none; }
.footer-brand a:hover { color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 3rem; }
}
@media (max-width: 900px) {
  .hero-inner,
  .how-grid,
  .roles-grid,
  .personas { grid-template-columns: 1fr; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .roles { padding: 5rem 1.5rem; }
  .how { padding: 5rem 1.5rem; }
  .who { padding: 5rem 1.5rem; }
  .pricing { padding: 5rem 1.5rem; }
  .pricing-card { padding: 2.5rem 2rem; }
  .site-header nav { gap: 1rem; }
}
@media (max-width: 600px) {
  .site-header nav a:not(.btn-cta-small) { display: none; }
  .hero-stats { gap: 1.5rem; }
  .hero-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .footer-links { margin-left: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}