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

:root {
  --bg: #0e0e0f;
  --bg-alt: #141416;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #f0ede8;
  --text-muted: #8a8780;
  --text-dim: #555350;
  --border: rgba(240, 237, 232, 0.08);
}

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(14,14,15,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Section Shared ─── */
section { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ─── Hero ─── */
.hero {
  padding: 100px 0 96px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-top {
  margin-bottom: 1.5rem;
}
.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 2px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 620px;
}
.hero-stat {
  padding: 1.25rem 1.75rem;
  flex: 1;
}
.hero-stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}
.hero-stat-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.manifesto-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 800px;
}
.manifesto-text strong {
  color: var(--text);
  font-weight: 500;
}

/* ─── Services ─── */
.services { border-bottom: 1px solid var(--border); }
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card:nth-child(2n) { border-right: none; }
.service-card:nth-last-child(-n+2) { border-bottom: none; }
.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Pricing ─── */
.pricing { border-bottom: 1px solid var(--border); }
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pricing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.pricing-card--accent {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.pricing-card-top { margin-bottom: 1.5rem; }
.pricing-tier {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pricing-per {
  font-size: 1.25rem;
  color: var(--text-muted);
}
.pricing-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.pricing-features {
  list-style: none;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-footnote {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-dim);
  max-width: 500px;
  line-height: 1.6;
}

/* ─── Closer ─── */
.closer {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.closer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.closer-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  max-width: 700px;
}
.closer-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.closer-sub:last-child { margin-bottom: 0; }

/* ─── Footer ─── */
.footer { padding: 48px 0; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ─── Mobile Responsive ─── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero { padding: 72px 0 64px; }
  .manifesto { padding: 60px 0; }

  .hero-stat-row {
    flex-direction: column;
    max-width: 100%;
  }
  .hero-stat-sep { width: 100%; height: 1px; }
  .hero-stat { padding: 1rem 1.25rem; }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .service-card:last-child { border-bottom: none; }

  .pricing-grid { grid-template-columns: 1fr; }

  .hero-headline { font-size: 3.2rem; }
  .pricing-headline { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.75rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stat-num { font-size: 1.6rem; }
  .nav-tagline { display: none; }
}