/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0F0F0F;
  --bg-2: #1A1A1A;
  --bg-3: #242424;
  --fg: #F5F5F5;
  --fg-2: #A0A0A0;
  --accent: #F59E0B;
  --accent-dim: rgba(245,158,11,0.12);
  --accent-2: rgba(245,158,11,0.06);
  --radius: 10px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--fg); }

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 40px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.logo-accent { color: var(--accent); }

.nav-tagline {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 20px;
  color: var(--fg-2);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-vibe-block {
  margin-bottom: 60px;
}

.vibe-label {
  font-size: 12px;
  color: var(--fg-2);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 640px;
  background: var(--bg-2);
}

.hero-stat {
  flex: 1;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.04em;
}

/* ── Stats Row ─────────────────────────────────────────────── */
.stats-row {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px;
}

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

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-big {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-desc {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── Section Labels ────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

/* ── Services ──────────────────────────────────────────────── */
.services {
  padding: 100px 40px;
  background: var(--bg);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg-2);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.service-card:hover {
  border-color: rgba(245,158,11,0.3);
  background: var(--bg-3);
}

.service-card-wide { grid-column: span 2; }

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

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,158,11,0.4), rgba(245,158,11,0.1));
  margin-top: 28px;
  flex-shrink: 0;
}

/* ── Manifesto ─────────────────────────────────────────────── */
.manifesto {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  color: var(--fg);
}

.quote-sub {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.65;
  font-style: italic;
}

/* ── Pricing ───────────────────────────────────────────────── */
.pricing {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.pricing-card-featured {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(180deg, rgba(245,158,11,0.05) 0%, var(--bg) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.pricing-tagline {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
  margin-bottom: 28px;
}

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

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

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

/* ── Closing ──────────────────────────────────────────────── */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

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

.closing-heading {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.closing-sub {
  font-size: 20px;
  color: var(--fg-2);
  font-weight: 300;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 80px 40px 40px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 320px;
}

.footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul li {
  font-size: 14px;
  color: var(--fg-2);
}

.footer-contact p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--fg-2);
  opacity: 0.6;
}

/* ── Mobile Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card-wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steps { flex-direction: column; }
  .step-connector {
    width: 40px;
    height: 1px;
    margin: 20px 0;
  }
}

@media (max-width: 640px) {
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-stat:last-child { border-bottom: none; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .navbar { padding: 0 24px; }
  .services, .how-it-works, .manifesto, .pricing, .closing { padding: 72px 24px; }
  .footer { padding: 60px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}