:root {
  --bg: #060606;
  --surface: #0d0d0d;
  --surface-2: #141414;
  --accent: #E51C00;
  --accent-dim: #8a1200;
  --text: #eaeaea;
  --text-dim: #666;
  --text-muted: #333;
  --border: #1a1a1a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow Condensed', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(229,28,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(229,28,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 40px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(96px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.hero-title .line { display: block; }
.hero-title .accent { color: var(--accent); }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 40px;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(229,28,0,0.08);
}

.ring-1 { width: 400px; height: 400px; }
.ring-2 { width: 600px; height: 600px; border-color: rgba(229,28,0,0.04); }
.ring-3 { width: 800px; height: 800px; border-color: rgba(229,28,0,0.02); }

.visual-center {
  width: 160px;
  height: 160px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(229,28,0,0.3), 0 0 160px rgba(229,28,0,0.1);
  position: relative;
  z-index: 1;
}

.center-text {
  font-family: var(--font-display);
  font-size: 56px;
  color: white;
  letter-spacing: 0.05em;
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 60px;
}

/* ===== FEATURES ===== */
.features {
  padding: 140px 80px;
  background: var(--surface);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 80px;
}

.feature-card {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}
.feature-card:first-child { padding-left: 0; }
.feature-card:last-child { border-right: none; }
.feature-card:nth-child(2) { padding-left: 40px; }

.card-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 16px;
}

.card-rule {
  width: 24px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

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

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.manifesto-inner { display: flex; flex-direction: column; justify-content: center; }

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 40px;
  font-style: normal;
}

.manifesto-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover { border-color: var(--accent); color: var(--accent); }

.manifesto-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 3px;
}

.mv-block {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.mv-1 { background: #0a0a0a; }
.mv-2 { background: #111; }
.mv-3 { background: #0e0e0e; }

.mv-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(229,28,0,0.02) 2px, rgba(229,28,0,0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(229,28,0,0.02) 2px, rgba(229,28,0,0.02) 4px);
  pointer-events: none;
}

/* ===== CLOSING ===== */
.closing {
  padding: 160px 80px;
  background: var(--bg);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

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

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 80px;
}

.closing-info {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 80px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ci-item { text-align: center; }

.ci-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.ci-val {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 0.02em;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ===== FOOTER ===== */
footer {
  padding: 80px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-meta {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

.footer-rule {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-visual { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .feature-card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .hero-content { padding: 80px 32px; }
  .features, .manifesto, .closing { padding: 80px 32px; }
  footer { padding: 60px 32px; }
  .closing-info { flex-direction: column; gap: 24px; }
  .features-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
}