:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --fg-primary: #f5f5f0;
  --fg-secondary: #a0a0a0;
  --accent: #FF6B2C;
  --accent-glow: rgba(255, 107, 44, 0.15);
  --yellow: #FFD600;
  --teal: #00E5A0;
  --purple: #B366FF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(15rem, 30vw, 40rem);
  font-weight: 800;
  color: rgba(255, 107, 44, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.hero-stat-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ===== SECTION SHARED ===== */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

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

.section-header h2,
.products-text h2,
.community-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}

.pillar-events::before { background: var(--accent); }
.pillar-products::before { background: var(--yellow); }
.pillar-media::before { background: var(--teal); }
.pillar-mentorship::before { background: var(--purple); }

.pillar-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-secondary);
  margin-bottom: 1.2rem;
  display: block;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pillar-events h3 { color: var(--accent); }
.pillar-products h3 { color: var(--yellow); }
.pillar-media h3 { color: var(--teal); }
.pillar-mentorship h3 { color: var(--purple); }

.pillar-card p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
}

.products-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.products-text p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-item {
  background: rgba(255, 214, 0, 0.08);
  border: 1px solid rgba(255, 214, 0, 0.2);
  color: var(--yellow);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.product-item:hover {
  background: rgba(255, 214, 0, 0.15);
}

/* ===== COMMUNITY ===== */
.community {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.community-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.community-block p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 107, 44, 0.06) 50%, var(--bg-primary) 100%);
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing-sub {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fg-primary);
}

.footer-tagline {
  color: var(--fg-secondary);
  font-size: 0.85rem;
}

.footer-location {
  color: var(--fg-secondary);
  font-size: 0.85rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 2rem;
    min-height: 90vh;
  }

  .hero-bg-text {
    font-size: 10rem;
    right: -10%;
  }

  .hero-stat-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .pillars {
    padding: 5rem 1.5rem;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .products {
    padding: 5rem 1.5rem;
  }

  .products-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .community {
    padding: 5rem 1.5rem;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}