/* ===== FONTS ===== */
:root {
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* ===== COLORS ===== */
  --bg-deep: #0B1929;
  --bg-card: #0F2137;
  --bg-card-back: #0A1A2C;
  --fg: #F0F4F8;
  --fg-muted: #8BA3BE;
  --fg-faint: #4A6680;
  --accent: #F7B731;
  --accent-dim: rgba(247, 183, 49, 0.12);
  --accent-glow: rgba(247, 183, 49, 0.25);
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(247,183,49,0.3);
  --red: #E05252;
  --green: #4ADE80;
  --green-dim: rgba(74,222,128,0.1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(11,25,41,0.85);
}
.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-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F7B731 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1A3A5C 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
}
.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0F4A6E 0%, transparent 70%);
  top: 30%;
  left: 5%;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px var(--accent);
}
.eyebrow-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 11px;
  color: var(--fg-faint);
  line-height: 1.4;
  max-width: 100px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== CV CARD VISUAL ===== */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 420px;
  height: 320px;
}
.cv-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.05) inset;
}
.cv-card-back {
  width: 85%;
  height: 85%;
  top: 0;
  left: 0;
  opacity: 0.5;
  transform: rotate(-4deg);
}
.cv-card-front {
  width: 88%;
  height: 88%;
  bottom: 0;
  right: 0;
  border-color: var(--border-accent);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 1px 0 rgba(247,183,49,0.1) inset, 0 0 40px var(--accent-dim);
  position: relative;
}
.cv-card-inner { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.cv-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 4px;
}
.cv-lines { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.cv-line {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  width: 100%;
}
.cv-line-title { height: 10px; width: 55%; }
.cv-line-wide { width: 90%; }
.cv-line-mid { width: 65%; }
.cv-line-highlight { background: rgba(247,183,49,0.3); }
.cv-line-active { background: rgba(255,255,255,0.15); }
.cv-keyword-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}
.cv-tag-row {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cv-tag {
  height: 18px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  width: 60px;
}
.cv-tag-sm { width: 45px; }
.cv-tag-xs { width: 36px; }
.cv-tag-gold { background: var(--accent-dim); border: 1px solid var(--border-accent); }

.cv-score-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 5px 10px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

/* ===== DIFFERENTIATOR ===== */
.diff-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #06101A 100%);
}
.diff-inner { max-width: 1100px; margin: 0 auto; }
.diff-header { margin-bottom: 56px; }
.diff-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 600px;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.diff-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.diff-card-icon-new { color: var(--accent); border-color: var(--border-accent); background: var(--accent-dim); }
.diff-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.diff-list { display: flex; flex-direction: column; gap: 12px; }
.diff-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.diff-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-faint);
}
.diff-list-new li::before { background: var(--accent); opacity: 0.6; }
.diff-verdict {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-faint);
  line-height: 1.55;
}
.diff-verdict-new { color: var(--fg-muted); }
.verdict-x {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.verdict-check {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 48px;
  background: #06101A;
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-headline {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 600px;
  margin-bottom: 64px;
  line-height: 1.15;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(255,255,255,0.12); }
.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 4px 10px;
  border-radius: 6px;
}
.feature-card-premium {
  background: linear-gradient(135deg, var(--bg-card) 0%, #0D1F35 100%);
  border-color: var(--border-accent);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 48px;
  background: linear-gradient(180deg, #06101A 0%, var(--bg-deep) 100%);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-headline {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 56px;
  line-height: 1.15;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.price-card-featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, #0D1F35 100%);
  box-shadow: 0 0 40px var(--accent-dim);
  transform: scale(1.02);
}
.price-card-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period {
  font-size: 13px;
  color: var(--fg-faint);
  margin-top: 6px;
  margin-bottom: 32px;
}
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-feature {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.price-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg-faint);
}
.price-feature-check::before { background: var(--green); }
.price-feature-muted { opacity: 0.4; }
.price-feature-muted::before { background: var(--fg-faint); }
.price-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #0B1929;
  cursor: pointer;
  transition: opacity 0.2s;
}
.price-cta:hover { opacity: 0.9; }
.price-cta-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
}
.price-cta-gold {
  background: var(--accent);
  color: #0B1929;
  box-shadow: 0 0 24px var(--accent-glow);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-deep);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 32px;
  display: block;
}
.manifesto-text {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-style: normal;
}
.manifesto-attribution {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 40px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #06101A 100%);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 48px 40px;
  background: #06101A;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  display: block;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-faint);
  line-height: 1.65;
  max-width: 260px;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-faint);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg-muted); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-faint);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 80px; }
  .features, .diff-section, .pricing, .manifesto, .closing { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 32px; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-proof { gap: 20px; }
  .proof-num { font-size: 22px; }
}