/* === BASE === */
:root {
  --bg: #0d0d0f;
  --bg-alt: #131316;
  --bg-card: #1a1a1e;
  --fg: #f5f0e8;
  --fg-muted: #8a8a8a;
  --fg-subtle: #555555;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --border: rgba(245, 240, 232, 0.08);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.brand-mark { color: var(--accent); font-size: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

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

/* === HERO === */
.hero {
  padding: 80px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--accent);
  color: #0d0d0f;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { background: #fbbf24; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

.btn-large { padding: 16px 32px; font-size: 17px; }

/* === HERO VISUAL === */
.hero-visual { text-align: left; }

.logo-grid-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.logo-item {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border: 1px solid var(--border);
}

.logo-item img {
  max-height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.hero-proof-note {
  font-size: 13px;
  color: var(--fg-subtle);
  font-weight: 500;
}

/* === PROOF SECTION === */
.proof-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px;
  background: var(--bg-alt);
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.stat { text-align: center; padding: 0 48px; }

.stat-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 180px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* === PROBLEM === */
.problem-section {
  padding: 100px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 36px;
  color: var(--fg);
}

.problem-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 24px;
  max-width: 680px;
}

/* === HOW === */
.how-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s ease;
}

.step:hover { border-color: rgba(245, 158, 11, 0.3); }

.step-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === COMPANIES === */
.companies-section {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.companies-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}

.companies-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.company-logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.company-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 100px;
  transition: border-color 0.2s ease;
}

.company-logo-box:hover { border-color: rgba(245, 158, 11, 0.3); }

.company-logo-box img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.company-logo-box span {
  font-size: 12px;
  color: var(--fg-subtle);
  font-weight: 500;
}

.companies-note {
  font-size: 14px;
  color: var(--fg-subtle);
}

/* === INTERFACE === */
.interface-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.interface-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.interface-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
}

.interface-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.interface-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
}

.proof-check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === RECRUITER CARD === */
.recruiter-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  font-size: 14px;
}

.rc-header {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.rc-recruiter {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.rc-recruiter:last-child { border-bottom: none; }
.rc-recruiter:hover { background: rgba(255,255,255,0.02); }

.rc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
}

.rc-info { flex: 1; }

.rc-name {
  font-weight: 600;
  color: var(--fg);
  font-size: 14px;
  line-height: 1.2;
}

.rc-title {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.rc-email {
  font-size: 12px;
  color: var(--accent);
  margin-top: 2px;
  font-family: 'Courier New', monospace;
}

.rc-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  flex-shrink: 0;
}

.rc-badge-alt {
  background: var(--accent-dim);
  color: var(--accent);
}

/* === CLOSING === */
.closing-section {
  padding: 100px 48px 120px;
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.closing-note {
  font-size: 13px;
  color: var(--fg-subtle);
  margin-top: 16px;
}

/* === FOOTER === */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg-subtle);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

.footer-note { font-size: 13px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .hero { padding: 60px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .proof-section { padding: 32px 24px; }
  .proof-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .problem-section { padding: 60px 24px; }
  .how-section { padding: 60px 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .companies-section { padding: 60px 24px; }
  .company-logo-row { gap: 10px; }
  .company-logo-box { min-width: 80px; padding: 14px 16px; }
  .interface-section { padding: 60px 24px; }
  .interface-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-section { padding: 60px 24px 80px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
}