:root {
  --bg: #0c0c0c;
  --bg-2: #111111;
  --fg: #f5f0e8;
  --fg-muted: #9a918a;
  --accent: #f59e0b;
  --accent-dim: #b37309;
  --border: #252525;
  --card: #161616;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAVBAR ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--accent);
}

.nav-tagline {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  padding: 80px 48px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.stat { padding-right: 40px; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  margin-right: 40px;
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border-radius: 2px;
}

.shape-1 {
  width: 320px;
  height: 320px;
  border: 1px solid var(--accent-dim);
  top: 15%;
  right: -40px;
  transform: rotate(15deg);
  opacity: 0.3;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 10%;
  right: 80px;
  opacity: 0.06;
}

.shape-3 {
  width: 180px;
  height: 2px;
  background: var(--accent);
  bottom: 35%;
  right: 40px;
  opacity: 0.4;
}

.shape-4 {
  width: 2px;
  height: 180px;
  background: var(--accent);
  bottom: 30%;
  right: 100px;
  opacity: 0.4;
}

/* ── PROBLEM ── */
.problem { background: var(--bg); padding: 120px 64px; }

.problem-inner { max-width: 1100px; margin: 0 auto; }

.problem-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 64px;
  color: var(--fg);
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.problem-card {
  background: var(--card);
  padding: 40px;
  border-left: 3px solid var(--accent);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
  opacity: 0.7;
  line-height: 1;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── SOLUTION ── */
.solution { background: var(--bg-2); padding: 120px 64px; }

.solution-inner { max-width: 1100px; margin: 0 auto; }

.solution-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.solution-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 72px;
  color: var(--fg);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.solution-item:nth-child(even) { border-right: none; }
.solution-item:nth-last-child(-n+2) { border-bottom: none; }

.solution-number {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--accent);
  opacity: 0.4;
  min-width: 52px;
  line-height: 1;
  padding-top: 4px;
}

.solution-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.solution-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--accent);
  color: #0c0c0c;
  padding: 100px 64px;
}

.manifesto-inner { max-width: 1100px; margin: 0 auto; }

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 32px;
}

.manifesto-sub p {
  font-size: 20px;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 48px;
  color: #1a1400;
}

.manifesto-industries {
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 32px;
}

.industry-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.6;
}

.industry-list {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* ── CLOSING ── */
.closing { background: var(--bg); padding: 120px 64px; }

.closing-inner { max-width: 1100px; margin: 0 auto; }

.closing-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 40px;
  color: var(--fg);
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 64px;
}

.closing-promise {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.promise-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-right: 40px;
}

.promise-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin-right: 40px;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 64px;
  background: var(--bg);
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: #4a4642;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-inner { padding: 60px 24px; }
  .hero-visual { display: none; }
  .problem { padding: 80px 24px; }
  .problem-cards { grid-template-columns: 1fr; }
  .solution { padding: 80px 24px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-item { border-right: none; }
  .solution-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .solution-item:last-child { border-bottom: none; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .closing-promise { flex-direction: column; align-items: flex-start; gap: 20px; }
  .promise-sep { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { padding-right: 24px; margin-bottom: 16px; }
  .footer { padding: 48px 24px; }
}