/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --bg-card: #111111;
  --fg: #F5F5F0;
  --fg-muted: #94A3B8;
  --accent: #F59E0B;
  --accent-dim: #B45309;
  --border: #1E1E1E;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --max-w: 1200px;
  --radius: 6px;
}

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;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-copy {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 36px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) contrast(1.1);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 860px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.manifesto-text.secondary {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--fg-muted);
  margin-top: 28px;
  letter-spacing: 0;
}

.manifesto-text em { font-style: italic; color: var(--accent); }

/* === FEATURES === */
.features {
  padding: 100px 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-card);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 1.1;
}

.feature-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* === CLOSER === */
.closer {
  background: var(--bg);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}

.closer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: var(--max-w);
}

.closer-image-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.closer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) contrast(1.1);
}

.closer-copy {
  padding: 0 60px;
}

.closer-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.92;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.closer-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  background: #050505;
  padding: 60px 80px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-legal {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy { padding: 60px 24px 40px; }
  .hero-headline { font-size: clamp(72px, 18vw, 120px); }
  .hero-image-wrap { height: 60vw; }

  .manifesto { padding: 60px 24px; }

  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }

  .closer { padding: 60px 24px; }
  .closer-inner { grid-template-columns: 1fr; gap: 40px; }
  .closer-copy { padding: 0; }
  .closer-image-wrap { order: -1; }

  .footer { padding: 48px 24px; }
}
