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

:root {
  --bg: #060a14;
  --surface: #0b1120;
  --surface-2: #0f1628;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #e8eaf0;
  --text-dim: #8892a4;
  --border: rgba(255,255,255,0.06);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(6, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-brand {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  color: var(--accent);
  font-size: 14px;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* === SECTION SHARED === */
section { padding: 96px 48px; }
.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-geo-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-geo-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  bottom: -50px; left: 20%;
}
.hero-geo-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
  top: 40%; left: 60%;
}
.hero-content { max-width: 780px; position: relative; z-index: 1; }
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 160px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 48px;
}

/* === PROBLEM === */
.problem { background: var(--surface); }
.problem-header { max-width: 640px; margin-bottom: 64px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.problem-card {
  background: var(--surface-2);
  padding: 40px;
  border: 1px solid var(--border);
}
.problem-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: monospace;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.problem-card p { color: var(--text-dim); font-size: 15px; line-height: 1.65; }

/* === FEATURES === */
.features-header { max-width: 600px; margin-bottom: 64px; }
.features-sub { color: var(--text-dim); font-size: 17px; margin-top: 8px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245,158,11,0.3); }
.feature-num {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card > p { color: var(--text-dim); font-size: 14px; line-height: 1.65; margin-bottom: 24px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
}

/* === PACKAGES === */
.packages { background: var(--bg); }
.packages-header { max-width: 600px; margin-bottom: 64px; }
.packages-sub { color: var(--text-dim); font-size: 17px; margin-top: 8px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}
.pkg-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--surface) 100%);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #060a14;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}
.pkg-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dim);
}
.pkg-price {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pkg-price span { font-size: 18px; color: var(--text-dim); font-weight: 400; }
.pkg-tagline { color: var(--text-dim); font-size: 13px; margin-bottom: 32px; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pkg-features li {
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-features li .check { color: var(--accent); font-weight: 700; }
.pkg-features li .muted { color: rgba(136,146,164,0.4); font-size: 16px; }
.pkg-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* === PROCESS === */
.process { background: var(--surface); }
.process-header { max-width: 560px; margin-bottom: 64px; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.step {
  flex: 1;
  padding: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: rgba(245,158,11,0.15);
  margin-bottom: 20px;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step-body p { color: var(--text-dim); font-size: 14px; line-height: 1.65; }
.step-connector {
  font-size: 24px;
  color: var(--accent);
  padding-top: 120px;
  flex-shrink: 0;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg);
  padding: 96px 48px;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
blockquote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 32px;
}
.manifesto-sub {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: var(--surface);
  padding: 64px 48px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-tagline {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-legal { font-size: 12px; color: rgba(136,146,164,0.5); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  section { padding: 64px 24px; }
  .nav { padding: 16px 24px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; }
  .hero { padding: 80px 24px 60px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-connector { display: none; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .stat { flex-direction: row; align-items: center; gap: 16px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
}