/* ═══════════ RESET & BASE ═══════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0f0f2d;
  --fg: #ffffff;
  --card: #16163b;
  --primary: #292978;
  --secondary: #d0d0ff;
  --muted: #22224d;
  --muted-fg: #9999cc;
  --accent: #3a3a99;
  --destructive: #f43f5e;
  --border: #22224d;
  --radius: 1rem;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: #050510;
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #2a2ab5 0%, #050510 100%);
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, #7c7cff, #d0d0ff, #a78bfa);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; margin-bottom: 16px; }
.section-header p { color: var(--muted-fg); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(41,41,120,.4); border: 1px solid rgba(208,208,255,.15);
  color: var(--secondary); font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px;
}

/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 700; font-size: .95rem;
  border: 1px solid rgba(208,208,255,.2);
  transition: all .3s; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(58,58,153,.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  background: transparent; color: var(--secondary);
  border: 1px solid rgba(208,208,255,.25); font-weight: 600; font-size: .95rem;
  transition: all .3s; cursor: pointer;
}
.btn-ghost:hover { background: rgba(208,208,255,.08); border-color: rgba(208,208,255,.4); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ═══════════ NAVBAR ═══════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px; transition: all .3s;
}
#navbar.scrolled {
  background: rgba(15,15,45,.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(208,208,255,.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900;
  background: linear-gradient(135deg, #7c7cff, #d0d0ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted-fg); font-weight: 500; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-actions .btn-ghost, .nav-actions .btn-primary { padding: 10px 20px; font-size: .85rem; }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; }
.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  padding: 24px; background: rgba(15,15,45,.95); backdrop-filter: blur(20px);
  border-radius: 16px; margin-top: 16px;
}
.mobile-menu a { color: var(--muted-fg); font-weight: 500; padding: 8px 0; }
.mobile-menu.active { display: flex; }
.mobile-menu-actions { display: flex; gap: 12px; margin-top: 8px; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ═══════════ HERO ═══════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.hero-bg-particles {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 20% 50%, rgba(58,58,153,.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(41,41,120,.25) 0%, transparent 40%);
}
.hero-content {
  max-width: 1200px; width: 100%; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(41,41,120,.5); border: 1px solid rgba(208,208,255,.15);
  color: var(--secondary); font-size: .85rem; font-weight: 600;
  margin-bottom: 24px; animation: fadeInUp .6s ease-out;
}
.hero-text h1 {
  font-family: var(--font-heading); font-size: clamp(3rem,7vw,5rem);
  font-weight: 900; line-height: 1.05; margin-bottom: 24px;
  animation: fadeInUp .6s ease-out .1s both;
}
.hero-subtitle {
  color: var(--muted-fg); font-size: 1.2rem; max-width: 480px;
  margin-bottom: 32px; animation: fadeInUp .6s ease-out .2s both;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeInUp .6s ease-out .3s both; }
.hero-stats { display: flex; gap: 32px; align-items: center; animation: fadeInUp .6s ease-out .4s both; }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; }
.hero-stat-suffix { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--secondary); }
.hero-stat-label { display: block; color: var(--muted-fg); font-size: .8rem; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-image { position: relative; display: flex; justify-content: center; animation: fadeInUp .8s ease-out .3s both; }
.hero-phone { width: 340px; border-radius: 32px; position: relative; z-index: 2; }
.hero-phone-glow {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,58,153,.6), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  filter: blur(60px); z-index: 1;
}
.hero-floating-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  background: rgba(22,22,59,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(208,208,255,.12);
  font-size: .85rem; font-weight: 600; white-space: nowrap;
}
.card-1 { top: 15%; right: -10%; animation: float 3s ease-in-out infinite; will-change: transform; }
.card-2 { bottom: 25%; left: -5%; animation: float 3s ease-in-out 1s infinite; will-change: transform; }
.card-3 { bottom: 10%; right: 0; animation: float 3s ease-in-out 2s infinite; will-change: transform; }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--muted-fg); animation: bounce 2s infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-phone { width: 260px; }
  .hero-floating-card { display: none; }
}

/* ═══════════ SOCIAL PROOF ═══════════ */
#social-proof { padding: 40px 0; border-top: 1px solid rgba(208,208,255,.06); border-bottom: 1px solid rgba(208,208,255,.06); }
.social-proof-label { text-align: center; color: var(--muted-fg); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 24px; }
.logos-track { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.logo-item {
  color: rgba(208,208,255,.3); font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 700; letter-spacing: .03em;
}

/* ═══════════ HOW IT WORKS ═══════════ */
#how-it-works { padding: 120px 0; }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.step-card {
  flex: 1; max-width: 320px; padding: 40px 32px; border-radius: 20px;
  background: rgba(22,22,59,.5); border: 1px solid rgba(208,208,255,.08);
  text-align: center; transition: all .4s;
}
.step-card:hover { transform: translateY(-8px); border-color: rgba(208,208,255,.2); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.step-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: rgba(208,208,255,.1); margin-bottom: 16px; }
.step-icon-wrap {
  width: 72px; height: 72px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px; background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--secondary);
}
.step-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--muted-fg); font-size: .95rem; }
.step-connector { color: rgba(208,208,255,.2); padding: 0 16px; }

@media (max-width: 768px) {
  .steps-grid { flex-direction: column; gap: 24px; }
  .step-connector { transform: rotate(90deg); }
}

/* ═══════════ FEATURES ═══════════ */
#features { padding: 120px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  padding: 32px; border-radius: 20px;
  background: rgba(22,22,59,.4); border: 1px solid rgba(208,208,255,.08);
  transition: all .4s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(208,208,255,.2); }
.feature-large { grid-column: span 2; grid-row: span 2; padding: 48px; position: relative; overflow: hidden; }
.feature-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--secondary); margin-bottom: 20px;
}
.feature-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--muted-fg); font-size: .9rem; line-height: 1.6; }

.feature-visual { position: relative; margin-top: 32px; height: 180px; }
.mini-card {
  position: absolute; padding: 16px 24px; border-radius: 16px;
  background: rgba(41,41,120,.6); border: 1px solid rgba(208,208,255,.15);
  backdrop-filter: blur(8px);
}
.mini-card span { display: block; font-weight: 700; font-size: 1rem; }
.mini-card small { color: var(--secondary); font-size: .85rem; }
.mc-1 { top: 0; left: 10%; transform: rotate(-3deg); animation: float 4s ease-in-out infinite; will-change: transform; }
.mc-2 { top: 30px; left: 40%; transform: rotate(2deg); animation: float 4s ease-in-out 1s infinite; will-change: transform; }
.mc-3 { top: 70px; left: 20%; transform: rotate(-1deg); animation: float 4s ease-in-out 2s infinite; will-change: transform; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; grid-row: span 1; }
}

/* ═══════════ EMPLOYERS ═══════════ */
#employers { padding: 120px 0; }

/* Stats row */
.emp-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 96px;
  background: rgba(22,22,59,.5); border: 1px solid rgba(208,208,255,.08);
  border-radius: 20px; padding: 40px 48px; flex-wrap: wrap;
}
.emp-stat-item { text-align: center; flex: 1; min-width: 160px; }
.emp-stat-value {
  font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(135deg, #7c7cff, #d0d0ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.emp-stat-label { color: var(--muted-fg); font-size: .82rem; margin-top: 8px; max-width: 140px; margin-inline: auto; }
.emp-stat-divider { width: 1px; height: 60px; background: rgba(208,208,255,.1); flex-shrink: 0; }

/* How it works for employers */
.emp-sub-heading {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  text-align: center; margin-bottom: 48px;
}
.emp-how-wrap { margin-bottom: 96px; }
.emp-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.emp-step {
  flex: 1; max-width: 240px; padding: 32px 24px; border-radius: 20px;
  background: rgba(22,22,59,.4); border: 1px solid rgba(208,208,255,.08);
  text-align: center; transition: all .4s;
}
.emp-step:hover { transform: translateY(-6px); border-color: rgba(208,208,255,.2); }
.emp-step-num {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  color: rgba(208,208,255,.1); margin-bottom: 12px;
}
.emp-step-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--secondary);
}
.emp-step h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.emp-step p { color: var(--muted-fg); font-size: .85rem; line-height: 1.6; }
.emp-step-arrow { color: rgba(208,208,255,.2); padding: 60px 12px 0; flex-shrink: 0; }

/* Why Makej */
.emp-why-wrap { margin-bottom: 96px; }
.emp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.emp-why-card {
  padding: 32px; border-radius: 20px;
  background: rgba(22,22,59,.4); border: 1px solid rgba(208,208,255,.08);
  transition: all .4s;
}
.emp-why-card:hover { transform: translateY(-4px); border-color: rgba(208,208,255,.18); }
.emp-why-highlight {
  grid-column: span 3; display: grid; grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto; gap: 0 24px;
  background: linear-gradient(135deg, rgba(41,41,120,.5), rgba(58,58,153,.3));
  border-color: rgba(208,208,255,.15);
}
.emp-why-highlight .emp-why-icon { grid-row: span 2; }
.emp-why-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--secondary); margin-bottom: 16px; flex-shrink: 0;
}
.emp-why-card h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.emp-why-card p { color: var(--muted-fg); font-size: .9rem; line-height: 1.65; }
.emp-why-compare {
  grid-column: 2; display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap;
}
.emp-compare-bad, .emp-compare-good {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 100px; font-size: .78rem; font-weight: 700;
}
.emp-compare-bad {
  background: rgba(244,63,94,.12); border: 1px solid rgba(244,63,94,.2);
  color: #f87171;
}
.emp-compare-good {
  background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.2);
  color: #4ade80;
}

/* Dashboard + CTA split */
.employer-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.employer-text h2 { font-family: var(--font-heading); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; margin-bottom: 20px; }
.employer-text > p { color: var(--muted-fg); font-size: 1.05rem; margin-bottom: 32px; }
.employer-benefits { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.employer-benefits li { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.emp-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.employer-dashboard-mock {
  padding: 32px; border-radius: 20px;
  background: rgba(22,22,59,.6); border: 1px solid rgba(208,208,255,.1);
  backdrop-filter: blur(8px);
}
.edm-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.edm-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.edm-badge {
  padding: 4px 12px; border-radius: 100px;
  background: rgba(208,208,255,.12); color: var(--secondary); font-size: .75rem; font-weight: 600;
}
.edm-job {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: 12px;
  background: rgba(41,41,120,.3); border: 1px solid rgba(208,208,255,.06);
  margin-bottom: 12px;
}
.edm-job-icon { font-size: 1.5rem; }
.edm-job-info { flex: 1; }
.edm-job-info strong { display: block; font-size: .9rem; }
.edm-job-info small { color: var(--muted-fg); font-size: .8rem; }
.edm-job-candidates { display: flex; }
.edm-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; border: 2px solid var(--card);
}
.edm-actions { display: flex; gap: 12px; margin-top: 16px; }
.edm-btn-accept, .edm-btn-reject {
  flex: 1; padding: 10px; border-radius: 10px; border: none;
  font-weight: 600; font-size: .85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.edm-btn-accept { background: rgba(34,197,94,.2); color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.edm-btn-reject { background: rgba(244,63,94,.15); color: var(--destructive); border: 1px solid rgba(244,63,94,.2); }

.edm-kpis { display: flex; gap: 12px; margin-bottom: 20px; }
.edm-kpi {
  flex: 1; padding: 12px; border-radius: 10px; text-align: center;
  background: rgba(41,41,120,.25); border: 1px solid rgba(208,208,255,.07);
}
.edm-kpi-val { display: block; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--secondary); }
.edm-kpi-lbl { font-size: .65rem; color: var(--muted-fg); margin-top: 2px; display: block; }

@media (max-width: 1024px) {
  .emp-why-grid { grid-template-columns: 1fr 1fr; }
  .emp-why-highlight { grid-column: span 2; }
}

@media (max-width: 768px) {
  .emp-stats { gap: 24px; padding: 28px 24px; }
  .emp-stat-divider { display: none; }
  .emp-steps { flex-direction: column; align-items: center; gap: 16px; }
  .emp-step { max-width: 100%; width: 100%; }
  .emp-step-arrow { transform: rotate(90deg); padding: 0; }
  .emp-why-grid { grid-template-columns: 1fr; }
  .emp-why-highlight { grid-column: span 1; grid-template-columns: 1fr; }
  .emp-why-highlight .emp-why-icon { grid-row: auto; }
  .emp-why-compare { grid-column: 1; }
  .employer-split { grid-template-columns: 1fr; }
  .emp-cta-group { flex-direction: column; }
}

/* ═══════════ TESTIMONIALS ═══════════ */
#testimonials { padding: 120px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 32px; border-radius: 20px;
  background: rgba(22,22,59,.4); border: 1px solid rgba(208,208,255,.08);
  transition: all .4s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(208,208,255,.18); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-card > p { color: var(--muted-fg); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author small { color: var(--muted-fg); font-size: .8rem; }

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

/* ═══════════ DOWNLOAD ═══════════ */
#download { padding: 120px 0; }
.download-card {
  position: relative; padding: 80px 48px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(41,41,120,.6), rgba(22,22,59,.8));
  border: 1px solid rgba(208,208,255,.12);
  text-align: center; overflow: hidden;
}
.download-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,58,153,.4), transparent 70%);
  top: -100px; right: -100px; filter: blur(80px);
}
.download-content { position: relative; z-index: 2; }
.download-content h2 { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3rem); font-weight: 800; margin-bottom: 16px; }
.download-content > p { color: var(--muted-fg); font-size: 1.1rem; margin-bottom: 32px; }
.download-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  transition: all .3s;
}
.store-btn:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.store-btn small { display: block; font-size: .7rem; color: var(--muted-fg); text-align: left; }
.store-btn strong { display: block; font-size: 1rem; text-align: left; }
.download-note { color: var(--muted-fg); font-size: .85rem; }

/* ═══════════ FOOTER ═══════════ */
#footer { padding: 80px 0 32px; border-top: 1px solid rgba(208,208,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, #7c7cff, #d0d0ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block; margin-bottom: 12px;
}
.footer-brand > p { color: var(--muted-fg); font-size: .9rem; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(208,208,255,.06); display: flex; align-items: center; justify-content: center;
  color: var(--muted-fg); transition: all .3s;
}
.footer-social a:hover { background: rgba(208,208,255,.15); color: #fff; }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 16px; font-size: .95rem; }
.footer-col a { display: block; color: var(--muted-fg); font-size: .9rem; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 24px;
  border-top: 1px solid rgba(208,208,255,.06);
  color: var(--muted-fg); font-size: .8rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: center; }
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease-out, transform .7s ease-out; pointer-events: none; will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ═══════════ CLS FIXES ═══════════ */
/* Prevent nav from shifting when auth state resolves */
.nav-actions { min-width: 220px; justify-content: flex-end; }

/* ═══════════ AUTH MODALS ═══════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,10,30,.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal {
  display: none;
  background: var(--card); border: 1px solid rgba(208,208,255,.12);
  border-radius: 1.5rem; padding: 2.5rem;
  width: min(480px, calc(100vw - 40px));
  max-height: calc(100vh - 48px); overflow-y: auto;
  position: relative;
  transform: translateY(24px); transition: transform .3s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal.active { display: block; }

.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(208,208,255,.08); border: none; border-radius: .5rem;
  padding: .35rem; color: var(--muted-fg); cursor: pointer;
  display: flex; transition: background .2s, color .2s;
}
.modal-close:hover { background: rgba(208,208,255,.18); color: var(--fg); }

.modal-logo {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900;
  background: linear-gradient(135deg, #7c7cff, #d0d0ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-align: center; margin-bottom: 1.4rem;
}
.modal-title {
  font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800;
  text-align: center; margin-bottom: .4rem;
}
.modal-subtitle { color: var(--muted-fg); text-align: center; font-size: .9rem; margin-bottom: 1.75rem; }

.modal-error {
  background: rgba(244,63,94,.1); border: 1px solid rgba(244,63,94,.3);
  border-radius: .75rem; padding: 10px 14px;
  color: #f87171; font-size: .875rem; margin-bottom: 1rem; display: none;
}

.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--secondary); margin-bottom: .4rem; }
.form-input {
  width: 100%; padding: 11px 15px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(208,208,255,.14);
  border-radius: .75rem; color: var(--fg); font-family: var(--font-sans); font-size: .95rem;
  outline: none; transition: border-color .2s, background .2s;
}
.form-input:focus { border-color: rgba(208,208,255,.4); background: rgba(208,208,255,.06); }
.form-input::placeholder { color: var(--muted-fg); }
.btn-full { width: 100%; justify-content: center; border-radius: .75rem; margin-top: .4rem; }
.btn-full:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.modal-divider {
  display: flex; align-items: center; gap: 1rem;
  color: var(--muted-fg); font-size: .78rem; margin: 1.2rem 0;
}
.modal-divider::before, .modal-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 20px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(208,208,255,.14); border-radius: .75rem;
  color: var(--fg); font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.btn-google:hover { background: rgba(255,255,255,.1); border-color: rgba(208,208,255,.3); }

.modal-switch { text-align: center; margin-top: 1.4rem; font-size: .875rem; color: var(--muted-fg); }
.modal-switch a { color: var(--secondary); font-weight: 600; }
.modal-switch a:hover { text-decoration: underline; }

.role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: .25rem; }
.role-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(208,208,255,.1);
  border-radius: 1rem; padding: 1.5rem 1rem;
  cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--fg); font-family: var(--font-sans);
  transition: background .2s, border-color .2s, transform .2s;
}
.role-card:hover { background: rgba(208,208,255,.08); border-color: rgba(208,208,255,.3); transform: translateY(-2px); }
.role-card iconify-icon { color: var(--secondary); }
.role-card strong { font-size: .95rem; font-weight: 700; }
.role-card small { color: var(--muted-fg); font-size: .78rem; }

.modal-back {
  background: none; border: none; color: var(--muted-fg);
  font-family: var(--font-sans); font-size: .85rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: .4rem;
  margin-bottom: 1.25rem; padding: 0; transition: color .2s;
}
.modal-back:hover { color: var(--secondary); }

.nav-user-greeting { color: var(--secondary); font-weight: 600; font-size: .85rem; }

/* ═══════════ DASHBOARD PREVIEW MODAL ═══════════ */
.dash-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(5,5,20,.85); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.dash-overlay.active { opacity: 1; pointer-events: auto; }

.dash-modal {
  position: relative;
  background: #0d0d28; border: 1px solid rgba(208,208,255,.12);
  border-radius: 20px; width: 100%; max-width: 900px;
  max-height: calc(100vh - 48px); overflow-y: auto;
  transform: scale(.96) translateY(16px); transition: transform .3s;
}
.dash-overlay.active .dash-modal { transform: scale(1) translateY(0); }

.dash-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(208,208,255,.08); border: none; border-radius: 8px;
  padding: 6px; color: var(--muted-fg); cursor: pointer;
  display: flex; transition: background .2s;
}
.dash-close:hover { background: rgba(208,208,255,.18); color: #fff; }

.dash-modal-header {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 20px 24px 0;
}
.dash-modal-logo {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 900;
  background: linear-gradient(135deg, #7c7cff, #d0d0ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.dash-modal-tag {
  font-size: .75rem; font-weight: 600; color: var(--muted-fg);
  background: rgba(208,208,255,.06); border: 1px solid rgba(208,208,255,.1);
  padding: 3px 10px; border-radius: 100px;
}

/* Topbar */
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-bottom: 1px solid rgba(208,208,255,.07); margin-top: 16px;
}
.dash-topbar-left { display: flex; align-items: center; gap: 10px; }
.dash-company-logo {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(244,162,97,.2); border: 1px solid rgba(244,162,97,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: .85rem; font-weight: 800; color: #F4A261;
}
.dash-company-name { font-family: var(--font-heading); font-size: .9rem; font-weight: 700; color: #fff; }
.dash-company-plan { font-size: .7rem; color: var(--muted-fg); }
.dash-topbar-right { display: flex; align-items: center; gap: 12px; }
.dash-notif { position: relative; color: var(--muted-fg); display: flex; }
.dash-notif-dot {
  position: absolute; top: -2px; right: -2px; width: 7px; height: 7px;
  border-radius: 50%; background: #f43f5e; border: 1px solid #0d0d28;
}
.dash-avatar-sm {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800;
}

/* Body layout */
.dash-body { display: flex; min-height: 0; }

/* Sidebar */
.dash-sidebar {
  width: 160px; flex-shrink: 0; padding: 16px 12px;
  border-right: 1px solid rgba(208,208,255,.07);
  display: flex; flex-direction: column; gap: 4px;
}
.dash-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px; font-size: .8rem;
  font-weight: 600; color: var(--muted-fg); cursor: default;
  position: relative;
}
.dash-nav-active {
  background: rgba(91,107,255,.18); border: 1px solid rgba(91,107,255,.3);
  color: #fff;
}
.dash-nav-badge {
  margin-left: auto; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 100px; background: var(--primary);
  color: #fff; font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Main content */
.dash-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }

/* KPI row */
.dash-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.dash-kpi-card {
  padding: 14px; border-radius: 12px;
  background: rgba(22,22,59,.5); border: 1px solid rgba(208,208,255,.06);
  position: relative; overflow: hidden;
}
.dash-kpi-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); margin-bottom: 8px;
}
.dash-kpi-val { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: #fff; }
.dash-kpi-lbl { font-size: .68rem; color: var(--muted-fg); margin-top: 2px; }
.dash-kpi-spark { display: flex; align-items: flex-end; gap: 3px; height: 28px; margin-top: 10px; }
.dash-spark-bar { flex: 1; border-radius: 2px; background: rgba(91,107,255,.3); }
.dash-spark-active { background: rgba(91,107,255,.8); }

/* Content row */
.dash-content-row { display: flex; gap: 10px; min-width: 0; }
.dash-panel {
  padding: 14px; border-radius: 12px;
  background: rgba(22,22,59,.5); border: 1px solid rgba(208,208,255,.06);
  min-width: 0;
}
.dash-panel-title { font-family: var(--font-heading); font-size: .8rem; font-weight: 700; color: #fff; margin-bottom: 12px; }

.dash-job-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(208,208,255,.05); }
.dash-job-row:last-child { border-bottom: none; }
.dash-job-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dash-job-info { flex: 1; min-width: 0; }
.dash-job-name { font-size: .78rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-job-meta { font-size: .68rem; color: var(--muted-fg); margin-top: 1px; }
.dash-job-count { font-size: .7rem; font-weight: 700; color: var(--secondary); white-space: nowrap; flex-shrink: 0; }

.dash-candidate { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(208,208,255,.05); }
.dash-candidate:last-child { border-bottom: none; }
.dash-cand-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.dash-cand-info { flex: 1; min-width: 0; }
.dash-cand-name { font-size: .78rem; font-weight: 600; color: #fff; }
.dash-cand-meta { font-size: .65rem; color: var(--muted-fg); margin-top: 1px; }
.dash-cand-actions { display: flex; gap: 4px; flex-shrink: 0; }
.dash-btn-accept, .dash-btn-reject {
  width: 26px; height: 26px; border-radius: 6px; border: none;
  font-size: .75rem; font-weight: 700; cursor: default; display: flex; align-items: center; justify-content: center;
}
.dash-btn-accept { background: rgba(34,197,94,.2); color: #4ade80; }
.dash-btn-reject { background: rgba(244,63,94,.15); color: #f87171; }

/* Footer */
.dash-modal-footer {
  padding: 20px 24px; border-top: 1px solid rgba(208,208,255,.07);
  display: flex; justify-content: center;
}

@media (max-width: 640px) {
  .dash-sidebar { display: none; }
  .dash-kpi-row { grid-template-columns: 1fr 1fr; }
  .dash-content-row { flex-direction: column; }
}

.auth-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--card); border: 1px solid rgba(208,208,255,.18);
  border-radius: 1rem; padding: 13px 24px;
  color: var(--fg); font-weight: 600; font-size: .875rem;
  z-index: 2000; opacity: 0; transition: opacity .3s, transform .3s;
  white-space: nowrap; pointer-events: none;
}
.auth-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 500px) {
  .modal { padding: 1.75rem 1.5rem; }
  .role-cards { grid-template-columns: 1fr; }
}

/* ═══════════ MOBILE LAYOUT OVERRIDES ═══════════ */
@media (max-width: 768px) {
  /* Section paddings: 120px → 64px */
  #hero         { padding: 80px 24px 56px; }
  #how-it-works { padding: 64px 0; }
  #features     { padding: 64px 0; }
  #employers    { padding: 64px 0; }
  #testimonials { padding: 64px 0; }
  #download     { padding: 64px 0; }
  #footer       { padding: 48px 0 24px; }

  /* Section header spacing */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* Hero: hide phone image to save vertical space */
  .hero-image { display: none; }
  .hero-content { gap: 0; }

  /* Hero badge: prevent overflow on narrow screens */
  .hero-badge { font-size: .78rem; padding: 6px 12px; max-width: 100%; flex-wrap: wrap; justify-content: center; }

  /* Hero stats: tighter on small screens, hide dividers */
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-divider { display: none; }
  .hero-stat-number { font-size: 1.6rem; }
  .hero-stat-suffix { font-size: 1.2rem; }

  /* Employer section internal spacers */
  .emp-stats    { margin-bottom: 48px; }
  .emp-how-wrap { margin-bottom: 48px; }
  .emp-why-wrap { margin-bottom: 48px; }

  /* Download card */
  .download-card { padding: 48px 24px; }

  /* Footer grid: single column on very small screens */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Logos: smaller and wrap in fewer rows */
  .logos-track { gap: 16px 20px; }
  .logo-item { font-size: .85rem; }

  /* How-it-works: tighter step cards, hide decorative number */
  .step-card { padding: 20px 16px; }
  .step-number { display: none; }
  .step-icon-wrap { width: 52px; height: 52px; margin-bottom: 12px; }
  .steps-grid { gap: 12px; }

  /* Features: tighter cards, hide animated visual on mobile */
  .feature-card { padding: 20px; }
  .feature-large { padding: 24px; }
  .feature-visual { display: none; }
  .features-grid { gap: 12px; }

  /* Employers: stats → 2-column grid */
  .emp-stats { display: grid; grid-template-columns: 1fr 1fr; padding: 24px; gap: 20px; margin-bottom: 48px; }
  .emp-stat-item { min-width: unset; }

  /* Employers: steps → 2-column grid, hide arrows */
  .emp-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
  .emp-step-arrow { display: none; }
  .emp-step { padding: 20px 16px; max-width: unset; width: auto; }
  .emp-step-icon { width: 48px; height: 48px; margin-bottom: 10px; }

  /* Employers: why grid → 2-column on mobile */
  .emp-why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .emp-why-highlight { grid-column: span 2; }
  .emp-why-card { padding: 20px; }
  .emp-why-icon { width: 44px; height: 44px; margin-bottom: 12px; }

  /* Employers: hide dashboard mock, show only CTA text */
  .employer-visual { display: none; }
  .employer-split { grid-template-columns: 1fr; }
  .employer-dashboard-mock { padding: 20px; }
  .edm-kpis { flex-wrap: wrap; }

  /* Testimonials: tighter cards */
  .testimonial-card { padding: 24px; }

  /* Download card inner */
  .download-content h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .download-buttons { flex-direction: column; align-items: center; }
}
