:root {
  --bg: #0a0a0b;
  --surface: #111113;
  --surface2: #18181b;
  --border: #27272a;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent: #e8a43a;
  --accent-dim: rgba(232, 164, 58, 0.12);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --space: 1.5rem;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* HERO */
.hero {
  padding: 5rem 3rem 3rem;
  max-width: 900px;
}
.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-rule {
  width: 4rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}
.hero-bottom {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* STATS BAND */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem;
}
.stats-inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
}
.stats-item {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 1.5rem;
}
.stats-item:first-child { padding-left: 0; }
.stats-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.stats-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.stats-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.stats-body {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PILLARS */
.pillars {
  padding: 5rem 3rem;
  max-width: 1100px;
}
.pillars-header {
  margin-bottom: 3.5rem;
}
.pillars-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.pillars-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text);
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.pillar {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.pillar:nth-child(even) {
  padding-right: 0;
  padding-left: 2.5rem;
}
.pillar:nth-last-child(-n+2) {
  border-bottom: none;
}
.pillar-num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.pillar-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 3rem;
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.manifesto-attr {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* CLIENTS */
.clients {
  padding: 3.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.clients-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.client-logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-muted);
  padding: 0.5rem 2rem 0.5rem 0;
  opacity: 0.6;
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 5rem 3rem;
  background: var(--bg);
}
.closing-inner {
  max-width: 760px;
}
.closing-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav, .hero, .stats-band, .pillars, .manifesto, .clients, .closing, .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero { padding-top: 3rem; }
  .hero-bottom { gap: 1.5rem; }
  .stats-inner { flex-direction: column; }
  .stats-item { padding-left: 0; }
  .stats-divider { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; padding-right: 0; }
  .pillar:nth-child(even) { padding-left: 0; }
  .pillar:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer-tagline { text-align: left; }
}