/* === BASE === */
:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --amber: #E8A020;
  --amber-light: #F5C060;
  --gold-dim: #8B6914;
  --text: #F0EDE6;
  --text-muted: #8A8680;
  --text-dim: #555250;
  --border: #222222;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
p { font-family: var(--font-body); }

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  font-size: 1.25rem;
  color: var(--amber);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* === HERO === */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 5rem 4rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(232, 160, 32, 0.08) 0%, transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 160, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 160, 32, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1.75rem;
  line-height: 1.05;
}

.headline-accent {
  color: var(--amber);
  font-style: normal;
  display: inline-block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat { }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 0.15rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* === PROBLEM === */
.problem {
  padding: 5rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
}

.problem-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  border-left: 2px solid var(--amber);
  padding-left: 1.5rem;
}

.problem-attribution {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.problem-headline {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.problem-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* === APPROACH === */
.approach {
  padding: 5rem 4rem;
  border-top: 1px solid var(--border);
}

.approach-header {
  margin-bottom: 3.5rem;
  max-width: 560px;
}

.approach-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.approach-title {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.approach-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 960px;
}

.step { }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(232, 160, 32, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.step-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === SERVICES === */
.services {
  padding: 5rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.services-inner { }

.services-header {
  margin-bottom: 3rem;
}

.services-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.services-title {
  font-size: 1.9rem;
  color: var(--text);
  max-width: 520px;
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--surface);
  padding: 2.25rem;
}

.service-icon {
  font-size: 1.25rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.service-name {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-niches {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.niches-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-right: 0.25rem;
}

.niches-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.niche {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.niche-sep {
  color: var(--text-dim);
}

/* === MANIFESTO === */
.manifesto {
  padding: 4rem 4rem;
}

.manifesto-inner {
  max-width: 780px;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin: 2rem 0;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
}

/* === CLOSING === */
.closing {
  padding: 6rem 4rem;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(232, 160, 32, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  max-width: 640px;
}

.closing-title {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--amber);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* === FOOTER === */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-note {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .navbar, .hero, .problem, .approach, .services, .manifesto, .closing, .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }
}

@media (max-width: 600px) {
  .navbar, .hero, .problem, .approach, .services, .manifesto, .closing, .footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .closing-title {
    font-size: 1.8rem;
  }

  .manifesto-quote {
    font-size: 1.15rem;
  }
}