/* === BASE === */
:root {
  --bg: #0e0e0e;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --accent: #ff4500;
  --accent-dim: rgba(255, 69, 0, 0.12);
  --text: #f0ede8;
  --text-muted: #8a8680;
  --border: rgba(240, 237, 232, 0.08);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

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

::selection { background: var(--accent); color: #fff; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* === HERO === */
.hero {
  padding: 80px 32px 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-headline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  line-height: 1;
}

.hero-stat {
  font-family: 'Syne', sans-serif;
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -4px;
  line-height: 0.9;
}

.hero-stat-label {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text);
  max-width: 400px;
  margin-bottom: 8px;
  font-weight: 400;
}

.hero-sub--secondary {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 0;
}

/* hero card mockups */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.hero-card--accent {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255,69,0,0.06) 0%, var(--surface) 60%);
}

.hero-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-card--accent .hero-card-label { color: var(--accent); }

/* before site — sad gray placeholder */
.mock-site {
  background: var(--surface-2);
  border-radius: 4px;
  padding: 16px;
  height: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-site--before { opacity: 0.45; }

.mock-bar { height: 10px; background: #444; border-radius: 2px; width: 70%; }
.mock-line { height: 6px; background: #444; border-radius: 2px; }
.mock-line--short { width: 45%; }
.mock-block { height: 40px; background: #333; border-radius: 2px; margin-top: 8px; }

/* after site — richer with nav dots */
.mock-site--after { height: 100px; }
.mock-nav { display: flex; gap: 5px; margin-bottom: 10px; }
.mock-dot { width: 18px; height: 8px; background: #555; border-radius: 2px; }
.mock-hero-block { height: 30px; background: var(--accent-dim); border: 1px solid rgba(255,69,0,0.3); border-radius: 3px; margin-bottom: 10px; }
.mock-cols { display: flex; gap: 6px; }
.mock-col-block { flex: 1; height: 20px; background: #333; border-radius: 2px; }

.mock-caption {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 48px;
  justify-content: center;
}

/* === HOW === */
.how {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.how-header { margin-bottom: 56px; }

.how-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.how-desc {
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  max-width: 500px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 24px;
}

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

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 20px;
  flex-shrink: 0;
}

/* === PACKAGES === */
.packages {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.packages-header { margin-bottom: 40px; }

.packages-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.packages-desc { font-size: 16px; color: var(--text-muted); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(255,69,0,0.08) 0%, var(--surface) 50%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-card--featured .pricing-tier { color: var(--accent); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pricing-monthly {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.pricing-features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}

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

.addons-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.addon-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* === DIFFERENCE === */
.difference {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.diff-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.diff-body {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.diff-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diff-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  align-items: center;
}

.diff-row--head {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 8px;
}

.diff-row > span:first-child {
  color: var(--text);
  font-weight: 500;
}

.diff-old {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(138,134,128,0.4);
}

.diff-new {
  color: var(--accent);
  font-weight: 600;
}

/* === CLOSING === */
.closing {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

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

.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.footer-note { font-size: 14px; color: var(--text-muted); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { flex-direction: column; }
  .steps { flex-direction: column; gap: 24px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 20px 48px; }
  .how, .packages, .difference, .closing { padding: 56px 20px; }
  .diff-row { grid-template-columns: 110px 1fr 1fr; }
  .nav-inner { padding: 14px 20px; }
}

@media (max-width: 480px) {
  .hero-stat { font-size: 80px; }
  .pricing-amount { font-size: 32px; }
  .closing-title { font-size: 26px; }
  .diff-row { grid-template-columns: 90px 1fr 1fr; font-size: 12px; }
}