:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --accent: #f5a623;
  --accent-dim: #c4841c;
  --text: #f0ede8;
  --text-muted: #888;
  --text-subtle: #555;
  --border: #222;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav-tag {
  font-size: 12px;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
}

/* HERO */
.hero {
  padding: 100px 64px 80px;
  border-bottom: 1px solid var(--border);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
}
.hero-headline-line { display: block; }
.hero-headline-accent { color: var(--accent); }
.hero-right {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero-sub {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero-sub--secondary {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 48px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 48px;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-mark {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 48px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* PRODUCTS */
.products {
  padding: 100px 64px;
  border-bottom: 1px solid var(--border);
}
.products-header {
  margin-bottom: 72px;
}
.products-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.products-sub {
  font-size: 16px;
  color: var(--text-muted);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--accent); }
.product-card--featured {
  border-color: var(--accent);
}
.product-card--featured:hover { border-color: var(--accent-dim); }
.product-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}
.product-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 24px;
  line-height: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.product-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* PROCESS */
.process {
  padding: 100px 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.process-header { margin-bottom: 72px; }
.process-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 64px;
}
.process-step {
  background: var(--bg);
  padding: 40px 32px;
}
.process-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 24px;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.process-cta {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.process-cta-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

/* CLOSING */
.closing {
  padding: 140px 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 760px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 64px;
}
.closing-rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px 64px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-byline {
  font-size: 13px;
  color: var(--text-subtle);
}
.footer-tag {
  font-size: 12px;
  color: var(--text-subtle);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: clamp(48px, 12vw, 72px); }
  .hero-right { padding-top: 32px; }
  .hero-stats { margin-top: 48px; }
  .manifesto { padding: 80px 24px; }
  .products { padding: 80px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .process { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(40px, 14vw, 56px); }
  .hero-stats { flex-direction: row; gap: 32px; }
  .hero-stat { padding-right: 0; }
  .hero-stat-divider { margin-right: 32px; }
}