/* ============================================
   Careers Lift — Main Website Styles
   ============================================ */

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

:root {
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-light: #EEF2FF;
  --success: #10B981;
  --text: #0F172A;
  --text-sub: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --radius: 16px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
  font-family: var(--font);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-lg { padding: 15px 32px; font-size: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: transparent;
  color: var(--text-sub);
  border: none;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
  text-decoration: none;
}
.btn-ghost:hover { color: var(--primary); background: var(--primary-light); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
  text-decoration: none;
}
.btn-outline:hover { background: var(--primary-light); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-family: var(--font);
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-sub);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-signin  { font-size: 13.5px; padding: 8px 14px; }
.nav-cta     { font-size: 13.5px; padding: 9px 18px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  background: white;
}
.nav-mobile a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  transition: all 0.15s;
}
.nav-mobile a:hover { color: var(--primary); background: var(--primary-light); }
.nav-mobile .btn-primary { text-align: center; justify-content: center; margin-top: 6px; border-radius: 12px; }
.nav-mobile.open { display: flex; }

/* ── HERO ────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #FAFAFE 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-light);
  border: 1px solid #C7D2FE;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 56px;
}

/* ── EXTENSION MOCKUP ────────────────────── */
.hero-mockup {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.mockup-browser {
  background: white;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.browser-bar {
  background: #F1F3F4;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #E0E0E0;
}

.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E0E0E0;
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url {
  flex: 1;
  background: white;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: #666;
  border: 1px solid #E0E0E0;
  text-align: left;
}

.browser-body {
  display: flex;
  height: 340px;
}

.browser-body::before {
  content: '';
  flex: 1;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 24px, #E8EAED 24px, #E8EAED 25px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, #E8EAED 80px, #E8EAED 81px);
  opacity: 0.5;
}

.panel-mockup {
  width: 280px;
  flex-shrink: 0;
  background: #F8FAFC;
  border-left: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: white;
  border-bottom: 1px solid #E2E8F0;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0F172A;
}

.usage-chip {
  font-size: 10px;
  font-weight: 600;
  color: #6366F1;
  background: #EEF2FF;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid #C7D2FE;
}

.panel-tabs {
  display: flex;
  background: white;
  border-bottom: 1px solid #E2E8F0;
  padding: 0 8px;
}

.ptab {
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  color: #94A3B8;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.ptab.active { color: #6366F1; border-bottom-color: #6366F1; font-weight: 600; }

.panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.panel-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px;
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.step-dot {
  width: 18px;
  height: 18px;
  background: #6366F1;
  color: white;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title { font-size: 11px; font-weight: 700; color: #0F172A; }
.step-hint { font-size: 9.5px; color: #94A3B8; margin-top: 1px; }

.fake-textarea {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 9.5px;
  color: #64748B;
  line-height: 1.5;
  min-height: 40px;
}

.panel-generate {
  margin-top: 2px;
}

.gen-btn {
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  color: white;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 3px 10px rgba(99,102,241,0.35);
}

.mockup-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── WORKS ON ─────────────────────────────── */
.works-on {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.works-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.works-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.works-logos span {
  padding: 6px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  box-shadow: var(--shadow-sm);
}

/* ── SECTIONS ─────────────────────────────── */
.section { padding: 96px 0; }
.section-gray { background: var(--bg); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--text-sub);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ── HOW IT WORKS ─────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ── FEATURES ─────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.feature-large { grid-column: span 2; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ── PRICING ─────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 740px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-popular {
  background: linear-gradient(135deg, #3730A3 0%, #4F46E5 100%);
  border-color: transparent;
  color: white;
}

.pricing-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  width: fit-content;
}

.free-badge { background: #ECFDF5; color: #059669; }
.pro-badge  { background: rgba(255,255,255,0.15); color: white; }

.pricing-price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.pricing-price span { font-size: 16px; font-weight: 500; opacity: 0.6; }

.pricing-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.pricing-popular .pricing-features li { color: rgba(255,255,255,0.9); }

/* ── CTA ──────────────────────────────────── */
.cta-section { padding: 80px 0; }

.cta-card {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #8B5CF6 100%);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 64px rgba(99,102,241,0.35);
}

.cta-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.8px;
  max-width: 500px;
}

.cta-card p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 400px;
}

.cta-note {
  font-size: 13px !important;
  opacity: 0.6 !important;
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: #0F172A;
  color: white;
  padding: 48px 0 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.footer-tagline {
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

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

.footer-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: #94A3B8;
  font-weight: 500;
  transition: all 0.15s;
}
.footer-links a:hover { color: white; background: rgba(255,255,255,0.07); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid #1E293B;
  font-size: 12.5px;
  color: #475569;
}

/* ── PRIVACY PAGE ─────────────────────────── */
.prose-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.prose-page h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.prose-date {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.prose-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 10px;
  color: var(--text);
}

.prose-page h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0 6px;
  color: var(--text);
}

.prose-page p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 14px;
}

.prose-page ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.prose-page ul li {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 4px;
}

.prose-page a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .nav-links   { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .steps-grid { grid-template-columns: 1fr; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-large { grid-column: span 1; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }

  .browser-body::before { display: none; }
  .panel-mockup { width: 100%; border-left: none; border-top: 1px solid #E2E8F0; }
  .browser-body { flex-direction: column; height: auto; }

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

@media (max-width: 600px) {
  .hero { padding: 56px 0 40px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { justify-content: center; }
  .cta-card { padding: 40px 24px; }
  .section { padding: 64px 0; }
}
