/* ─── Base ─────────────────────────────────────────── */
:root {
  --bg: #0d1f12;
  --bg-2: #0a1a0e;
  --emerald: #00e676;
  --emerald-dim: rgba(0, 230, 118, 0.12);
  --gold: #c9a227;
  --gold-dim: rgba(201, 162, 39, 0.15);
  --text: #f0ede6;
  --text-muted: rgba(240, 237, 230, 0.55);
  --text-dim: rgba(240, 237, 230, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─────────────────────────────────────── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

/* ─── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(13, 31, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 230, 118, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--emerald);
}

.nav-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

/* Floodlight beam shapes */
.beam {
  position: absolute;
  pointer-events: none;
  transform-origin: top center;
}

.beam-1 {
  width: 320px;
  height: 800px;
  background: linear-gradient(180deg, rgba(0, 230, 118, 0.18) 0%, rgba(0, 230, 118, 0) 100%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
  top: 0;
  right: 10%;
  transform: rotate(-12deg);
  filter: blur(40px);
}

.beam-2 {
  width: 200px;
  height: 600px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0) 100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
  top: 0;
  left: 15%;
  transform: rotate(8deg);
  filter: blur(50px);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.glow-1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
  top: 10%;
  right: -10%;
}

.glow-2 {
  width: 400px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  bottom: 5%;
  left: 5%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.88;
  margin-bottom: 32px;
}

.hero-title-main {
  display: block;
  font-size: clamp(100px, 18vw, 220px);
  color: var(--text);
  letter-spacing: 0.02em;
}

.hero-title-accent {
  display: block;
  font-size: clamp(100px, 18vw, 220px);
  color: var(--emerald);
  letter-spacing: 0.02em;
  text-shadow: 0 0 60px rgba(0, 230, 118, 0.4);
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 56px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
}

.stat {
  padding: 20px 40px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 4px;
}

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

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 230, 118, 0.12);
}

/* ─── Section labels ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}

/* ─── Manifesto ───────────────────────────────────── */
.manifesto {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid rgba(0, 230, 118, 0.08);
  border-bottom: 1px solid rgba(0, 230, 118, 0.08);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--emerald);
  margin: 0 auto 40px;
  opacity: 0.5;
}

.manifesto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.3;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ─── Pillars ─────────────────────────────────────── */
.pillars {
  padding: 100px 40px;
}

.pillars-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.08);
}

.pillar {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.pillar:hover {
  background: rgba(0, 230, 118, 0.04);
}

.pillar-icon {
  color: var(--emerald);
  margin-bottom: 20px;
}

.pillar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── Why ─────────────────────────────────────────── */
.why {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid rgba(0, 230, 118, 0.06);
  border-bottom: 1px solid rgba(0, 230, 118, 0.06);
}

.why-left {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-body {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
}

.why-check {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
}

/* Feed card */
.feed-card {
  background: rgba(10, 26, 14, 0.6);
  border: 1px solid rgba(0, 230, 118, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.feed-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 230, 118, 0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feed-item:last-child { border-bottom: none; }

.feed-thumb {
  width: 48px;
  height: 64px;
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.feed-item:not(.feed-item-done) .feed-thumb {
  background: linear-gradient(135deg, #0d2e18 0%, #00e676 100%);
}

.feed-item:not(.feed-item-done) .feed-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,230,118,0.3), transparent);
}

.feed-item-done .feed-thumb {
  background: rgba(255,255,255,0.05);
}

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

.feed-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.feed-meta {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 400;
}

.feed-item-done .feed-title {
  color: var(--text-muted);
}

/* ─── Closing ─────────────────────────────────────── */
.closing {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 230, 118, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-statement {
  position: relative;
  z-index: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.1;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(0, 230, 118, 0.08);
  padding: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--emerald);
  opacity: 0.7;
}

.footer-sub {
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 60px; height: 1px; }
  .why-left { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .manifesto, .pillars, .why, .closing { padding: 64px 24px; }
}