:root {
  --bg: #0e1a0e;
  --bg-alt: #142014;
  --surface: #1c2b1c;
  --accent: #d4922a;
  --accent-dim: #a87020;
  --text: #f4f0e8;
  --text-muted: #a09880;
  --border: rgba(212, 146, 42, 0.15);
  --font-display: 'Bitter', 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;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: #0e1a0e !important;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-dim) !important; }

/* HERO */
.hero {
  position: relative;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 60% 100%, rgba(212,146,42,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  pointer-events: none;
}
.hero-bg-texture::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C200,90 400,30 600,60 C800,90 1000,30 1200,60 L1200,120 L0,120 Z' fill='%23142014'/%3E%3C/svg%3E") center/cover no-repeat;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 14ch;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.7;
}

/* CATEGORIES */
.categories {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.category-card:hover {
  border-color: rgba(212,146,42,0.4);
}
.category-icon {
  margin-bottom: 1.25rem;
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.category-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-style: italic;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 65ch;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.step-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 0;
}
.step {
  padding: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--surface);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  -webkit-text-stroke: 1px rgba(212,146,42,0.3);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 6rem 2rem 8rem;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(212,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 55ch;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  max-width: 30ch;
}
.footer-links span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-headline { font-size: 2.5rem; }
  .categories, .manifesto, .howitworks, .closing { padding: 3.5rem 1.5rem; }
  .category-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .category-card { padding: 1.5rem; }
}