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

:root {
  --navy: #0F1C2E;
  --navy-light: #1A2D45;
  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --amber-dark: #D97706;
  --bg: #FAFAF8;
  --surface: #F4F3EF;
  --surface-2: #ECEAE4;
  --text: #1C1C1E;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --border: #E2E0DA;
  --white: #FFFFFF;
  --success: #22c55e;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 48px 96px;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 28, 46, 0.06) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  top: 30%;
  left: 40%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-light);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
}

/* Hero Card (fake resume) */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 32px rgba(15, 28, 46, 0.06), 0 1px 4px rgba(15, 28, 46, 0.04);
}

.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 16px;
}

.fake-resume {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.fr-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 4px;
}

.fr-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber-dark);
  margin-bottom: 12px;
}

.fr-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 12px;
}

.fr-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.fr-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
  width: 100%;
}

.fr-line--short { width: 65%; }
.fr-line--med { width: 80%; }

.mt { margin-top: 12px; }

.fr-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.fr-skill {
  font-size: 0.65rem;
  font-weight: 500;
  background: var(--navy);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ats-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
}

.format-badge {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===== PROOF BAR ===== */
.proof {
  background: var(--navy);
  padding: 48px;
}

.proof-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.proof-stat {
  flex: 1;
  padding: 0 40px;
}

.proof-stat:first-child { padding-left: 0; }
.proof-stat:last-child { padding-right: 0; }

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.proof-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 96px 48px;
  background: var(--bg);
}

.products-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(15, 28, 46, 0.08);
  transform: translateY(-2px);
}

.product-card--featured {
  border-color: var(--amber);
  border-width: 2px;
}

.product-card--bundle {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
}

.product-card--bundle .section-eyebrow,
.product-card--bundle .product-price,
.product-card--bundle .product-name,
.product-card--bundle .product-features li,
.product-card--bundle .product-note,
.product-card--bundle .bundle-save {
  color: inherit;
}

.product-card--bundle .product-features li::before {
  background: var(--amber);
}

.product-card--bundle .product-note {
  color: rgba(255,255,255,0.6);
}

.product-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
}

.product-card--bundle .product-badge {
  background: var(--amber);
  color: var(--navy);
}

.product-icon {
  margin-bottom: 20px;
}

.product-name {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card--bundle .product-name {
  color: var(--white);
}

.product-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber-dark);
  margin-bottom: 4px;
}

.product-card--bundle .product-price {
  color: var(--amber);
}

.was-price {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-weight: 400;
}

.bundle-save {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-weight: 500;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.product-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.outcomes-header {
  margin-bottom: 48px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.outcome-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.outcome-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outcome-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.outcome-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 96px 48px;
  background: var(--bg);
}

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

.closing-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 56px;
}

.closing-rule:last-child {
  margin-top: 56px;
  margin-bottom: 0;
}

.closing-headline {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.closing-promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  background: var(--navy);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }

  .hero { padding: 48px 24px 64px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-card { max-width: 360px; margin: 0 auto; }
  .hero-headline { font-size: 2.25rem; }
  .hero-lede { font-size: 1rem; }

  .proof { padding: 40px 24px; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-stat { padding: 0; }
  .proof-divider { display: none; }
  .proof-number { font-size: 2rem; }

  .products { padding: 64px 24px; }
  .products-grid { grid-template-columns: 1fr; }

  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }

  .closing { padding: 64px 24px; }

  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-trust-row { gap: 10px; }
  .trust-badge { font-size: 0.75rem; padding: 6px 12px; }
}
