/* ─── Variables ─── */
:root {
  --bg: #0D0D0D;
  --bg-2: #141414;
  --bg-3: #1A1A1A;
  --fg: #F5F5F0;
  --fg-muted: #888884;
  --accent: #C41E1E;
  --accent-dim: rgba(196, 30, 30, 0.12);
  --border: rgba(245, 245, 240, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 2rem;
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(196, 30, 30, 0.07) 0%, transparent 70%),
    var(--bg);
}

.hero-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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");
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

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

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 36ch;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 42ch;
  font-weight: 300;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-box {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 400px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 200px;
}

.hero-visual-cell {
  aspect-ratio: 1;
  background: rgba(196, 30, 30, 0.08);
  border: 1px solid rgba(196, 30, 30, 0.2);
}

.hero-visual-cell:nth-child(2) { background: rgba(196, 30, 30, 0.04); }
.hero-visual-cell:nth-child(4) { background: rgba(196, 30, 30, 0.06); }
.hero-visual-cell:nth-child(6) { background: rgba(196, 30, 30, 0.10); }
.hero-visual-cell:nth-child(7) { background: rgba(196, 30, 30, 0.05); }
.hero-visual-cell:nth-child(9) { background: rgba(196, 30, 30, 0.14); }

.hero-visual-label {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--fg);
  letter-spacing: 0.05em;
  opacity: 0.15;
}

.hero-visual-sublabel {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  opacity: 0.7;
  text-transform: uppercase;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  writing-mode: vertical-rl;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 8rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-statement {
  margin-bottom: 4rem;
}

.manifesto-line {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  display: block;
}

.manifesto-line--shift {
  color: var(--fg-muted);
  padding-left: 2rem;
}

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
}

.manifesto-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
}

.manifesto-body em { color: var(--fg); font-style: normal; font-weight: 500; }

.manifesto-stat-row {
  display: flex;
  gap: 4rem;
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.manifesto-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}

.manifesto-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ─── PILLARS ─── */
.pillars {
  padding: 8rem 2rem;
  background: var(--bg);
}

.pillars-header {
  max-width: 1100px;
  margin: 0 auto 5rem;
}

.pillars-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.pillar {
  background: var(--bg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar--accent { background: var(--bg-3); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.pillar-body { display: flex; flex-direction: column; gap: 1rem; }

.pillar-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}

.pillar-list li {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 1rem;
  position: relative;
  font-weight: 300;
}

.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 0;
}

.pillar-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196, 30, 30, 0.3);
  padding: 0.4rem 0.8rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ─── PROOF ─── */
.proof {
  padding: 8rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-header {
  max-width: 1100px;
  margin: 0 auto 5rem;
}

.proof-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.proof-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.proof-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.proof-card {
  background: var(--bg-2);
  transition: background 0.3s ease;
}

.proof-card:hover { background: var(--bg-3); }

.proof-card-inner {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.proof-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.proof-card-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── CLOSING ─── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg);
}

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

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  margin-bottom: 5rem;
  font-style: normal;
}

.closing-body { border-left: 2px solid var(--accent); padding-left: 2rem; }

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.closing-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.closing-final {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  display: block;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  font-weight: 300;
}

.footer-info { text-align: right; }
.footer-location, .footer-email {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.footer-email { color: var(--accent); margin-top: 0.5rem; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--fg-muted);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-visual-box { max-width: 280px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero-visual-label { font-size: 2rem; }
  .manifesto-body { grid-template-columns: 1fr; }
  .manifesto-stat-row { gap: 2rem; flex-wrap: wrap; }
  .pillars-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; align-items: flex-start; }
  .footer-info { text-align: left; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 2rem; }
  .manifesto, .pillars, .proof, .closing { padding: 5rem 1.5rem; }
  .manifesto-stat-row { flex-direction: column; gap: 1.5rem; }
  .pillar { padding: 2rem 1.5rem; }
  .proof-card-inner { padding: 2rem 1.5rem; }
  .hero-scroll-cue { display: none; }
}