:root {
  --bg: #0d0d12;
  --bg-2: #13131a;
  --surface: #1a1a24;
  --accent: #f5a623;
  --accent-dim: #b87a12;
  --text: #f0ede8;
  --text-muted: #8a8799;
  --text-dim: #5a5768;
  --teal: #2dd4bf;
  --violet: #a78bfa;
  --rose: #fb7185;
  --border: #252535;
}

*, *::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: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.stat-badge {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── HERO VISUAL (product grid) ── */
.hero-visual { position: relative; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 1rem;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.card-tall { grid-row: span 2; }
.card-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1.5rem; }
.card-accent {
  width: 48px;
  height: 4px;
  border-radius: 99px;
}
.card-accent.amber { background: var(--accent); }
.card-accent.teal { background: var(--teal); }
.card-accent.violet { background: var(--violet); }
.card-accent.rose { background: var(--rose); }
.card-lines { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.line { height: 5px; background: var(--border); border-radius: 3px; }
.line.long { width: 100%; }
.line.medium { width: 70%; }
.line.short { width: 45%; }
.card-icon {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
}
.card-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  position: absolute;
  bottom: 0.75rem;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 3rem;
}
.manifesto-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 99px;
  margin: 0 auto 2.5rem;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── CATEGORIES ── */
.categories { padding: 7rem 2rem; }
.categories-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.category-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.cat-icon {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.cat-icon svg { width: 20px; height: 20px; }
.cat-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.cat-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.cat-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(245,166,35,0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  width: fit-content;
  margin-top: 0.5rem;
}

/* ── PROCESS ── */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2rem;
}
.process-inner { max-width: 1000px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 4rem;
}
.step {
  flex: 1;
  padding: 0 1.5rem;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 2.5rem;
  flex-shrink: 0;
}
.process-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}
.process-quote p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing { padding: 8rem 2rem; text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.closing-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 2rem;
}
.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .step-connector { width: 2px; height: 30px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .manifesto, .categories, .process, .closing { padding: 4rem 1.5rem; }
  .category-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}