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

:root {
  --bg: #050505;
  --bg-alt: #0e0e0e;
  --surface: #141414;
  --border: #222222;
  --lime: #c8ff00;
  --lime-dim: #8ab300;
  --text: #f0ede6;
  --text-muted: #888888;
  --text-dim: #555555;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Syne', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
.section-marker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(200,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--lime);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

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

.manifesto blockquote {
  margin: 0 0 2rem;
  padding: 0;
  border: none;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  font-style: italic;
}

.manifesto-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: normal;
}

/* === PILLARS === */
.pillars {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
}

.pillars-header {
  margin-bottom: 4rem;
}

.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0.75rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: var(--bg);
  padding: 3rem 2.5rem;
}

.pillar-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.pillar-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

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

/* === STATS === */
.stats {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.stat {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* === PRINCIPLES === */
.principles {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-top: 1px solid var(--border);
}

.principles-left {
  padding: 6rem 4rem;
  border-right: 1px solid var(--border);
  background: var(--bg-alt);
}

.principles-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0.75rem;
}

.principles-list {
  display: flex;
  flex-direction: column;
}

.principle {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 4rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.principle:last-child { border-bottom: none; }

.principle-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.05em;
  min-width: 2rem;
  padding-top: 0.2rem;
}

.principle h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.principle p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 10rem 4rem;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(200,255,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lime);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .manifesto, .pillars, .principles-left { padding: 5rem 1.5rem; }
  .principles-list .principle { padding: 2rem 1.5rem; }
  .stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .principles-left { border-right: none; border-bottom: 1px solid var(--border); }
  .closing { padding: 6rem 1.5rem; }
  .footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
}