/* Fonts */
:root {
  --bg-dark: #0D1B2A;
  --bg-cream: #F8F6F0;
  --bg-white: #FFFFFF;
  --accent: #E8A838;
  --accent-dark: #C17A20;
  --text-dark: #0D1B2A;
  --text-light: #F8F6F0;
  --text-muted: #6B7280;
  --text-warm: #4A5568;
  --green: #10B981;
  --amber: #F59E0B;
  --border: rgba(255,255,255,0.1);
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(13,27,42,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 22px; color: var(--text-light); letter-spacing: -0.5px; }
.nav-tagline { font-size: 13px; color: rgba(248,246,240,0.45); font-weight: 400; letter-spacing: 0.5px; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(232,168,56,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(248,246,240,0.65);
  margin-bottom: 48px;
  max-width: 440px;
}
.hero-stats { display: flex; flex-direction: column; gap: 20px; }
.hero-stat { display: flex; align-items: baseline; gap: 12px; }
.stat-num { font-family: var(--font-display); font-size: 28px; color: var(--accent); flex-shrink: 0; }
.stat-label { font-size: 13px; color: rgba(248,246,240,0.5); line-height: 1.4; }

/* Resume Card */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.resume-card {
  background: #1A2A3A;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,168,56,0.1);
}
.resume-card-header { margin-bottom: 20px; }
.resume-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(248,246,240,0.4); margin-bottom: 4px; }
.resume-job { display: block; font-size: 14px; font-weight: 500; color: var(--text-light); }
.resume-score-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.score-label { font-size: 12px; color: rgba(248,246,240,0.5); }
.score-val { font-size: 13px; font-weight: 600; color: var(--accent); }
.score-track { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 20px; overflow: hidden; }
.score-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #F0C060); border-radius: 2px; transition: width 0.6s ease; }
.resume-sections { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.r-section { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(248,246,240,0.6); }
.r-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.r-dot.green { background: var(--green); }
.r-dot.amber { background: var(--amber); }
.resume-cta-preview { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; text-align: center; }
.resume-cta-preview span { font-size: 12px; color: var(--accent); font-weight: 500; letter-spacing: 0.5px; }

/* Problem Section */
.problem { background: var(--bg-dark); padding: 100px 48px; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-header { text-align: center; margin-bottom: 64px; }
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text-light);
  letter-spacing: -0.5px;
}
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease;
}
.problem-card:hover { transform: translateY(-4px); }
.problem-icon { color: var(--accent); margin-bottom: 20px; }
.problem-card h3 { font-size: 17px; font-weight: 600; color: var(--text-light); margin-bottom: 12px; }
.problem-card p { font-size: 14px; line-height: 1.7; color: rgba(248,246,240,0.55); }

/* How Section */
.how { background: var(--bg-cream); padding: 100px 48px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-header { margin-bottom: 64px; }
.section-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.steps { display: flex; align-items: center; gap: 0; }
.step { flex: 1; padding: 32px; background: white; border-radius: 16px; border: 1px solid rgba(0,0,0,0.06); }
.step-num { font-family: var(--font-display); font-size: 48px; color: var(--accent); opacity: 0.4; margin-bottom: 20px; }
.step h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.step p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.step-connector { width: 40px; flex-shrink: 0; position: relative; }
.step-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

/* Score Section */
.score-section { background: var(--bg-dark); padding: 100px 48px; border-top: 1px solid rgba(255,255,255,0.05); }
.score-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.score-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text-light);
  letter-spacing: -0.5px;
  margin: 16px 0 24px;
  line-height: 1.15;
}
.score-body { font-size: 16px; line-height: 1.7; color: rgba(248,246,240,0.6); margin-bottom: 32px; }
.score-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.score-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(248,246,240,0.8); }
.check-icon { color: var(--green); flex-shrink: 0; }

.score-card {
  background: #141F2E;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
}
.sc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sc-role { font-size: 13px; font-weight: 500; color: var(--text-light); }
.sc-date { font-size: 12px; color: rgba(248,246,240,0.35); }
.sc-score-display { margin-bottom: 16px; }
.big-score { font-family: var(--font-display); font-size: 72px; color: var(--green); line-height: 1; }
.big-score-label { font-size: 28px; color: rgba(248,246,240,0.4); margin-left: 4px; }
.sc-comment { font-size: 13px; line-height: 1.7; color: rgba(248,246,240,0.6); margin-bottom: 20px; font-style: italic; }
.sc-tags { display: flex; gap: 8px; }
.sc-tag { font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.sc-tag.pass { background: rgba(16,185,129,0.15); color: var(--green); }
.sc-tag.strong { background: rgba(232,168,56,0.15); color: var(--accent); }

/* Closing */
.closing { background: var(--accent); padding: 100px 48px; }
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(30px, 4vw, 52px); color: var(--bg-dark); letter-spacing: -0.5px; margin-bottom: 24px; line-height: 1.1; }
.closing-body { font-size: 17px; line-height: 1.7; color: rgba(13,27,42,0.7); }

/* Footer */
.footer { background: #080F18; padding: 40px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-family: var(--font-display); font-size: 18px; color: var(--text-light); }
.footer-copy { font-size: 13px; color: rgba(248,246,240,0.35); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .resume-card { max-width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { width: 100%; height: 24px; }
  .step-connector::after { top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(90deg); width: 1px; height: 24px; }
  .score-inner { grid-template-columns: 1fr; }
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .problem { padding: 80px 24px; }
  .how { padding: 80px 24px; }
  .score-section { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}