:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --accent: #ff4d00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --accent-soft: #ff6b2e;
  --border: #222222;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  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;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -15%;
  right: -10%;
  opacity: 0.12;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: #ff8c00;
  bottom: 10%;
  left: -5%;
  opacity: 0.08;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: #fff;
  top: 40%;
  left: 50%;
  opacity: 0.03;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.hero-sub strong {
  color: var(--fg);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  padding: 24px 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-elevated);
  position: relative;
  z-index: 1;
}

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

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
}

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

/* ===== ABOUT ===== */
.about {
  padding: 120px 24px;
  border-top: 1px solid var(--border);
}

.about-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 60px;
  align-items: start;
}

.about-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  padding-top: 12px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-text p:last-child {
  color: var(--fg);
  font-weight: 500;
  font-size: 1.1rem;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 100px 24px 120px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.pillars-header {
  max-width: 1000px;
  margin: 0 auto 60px;
}

.pillars-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pillars-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

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

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

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

/* ===== VISION ===== */
.vision {
  padding: 120px 24px;
  border-top: 1px solid var(--border);
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-quote {
  margin-bottom: 60px;
  position: relative;
  padding: 0 20px;
}

.vision-quote::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.vision-quote p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.8;
  color: var(--fg-muted);
  font-weight: 300;
  font-style: italic;
}

.vision-tagline h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 40px;
    min-height: 90vh;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    margin-top: 48px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .stat {
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-label {
    padding-top: 0;
  }

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

  .pillar {
    padding: 36px 28px;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link--active {
  color: var(--fg);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  margin-left: 8px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.nav-cta--active {
  background: var(--accent-soft);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* push page content below fixed nav */
body > .site-nav + * {
  padding-top: 64px;
}

/* ===== SECTION SHARED ===== */
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  padding: 100px 24px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.07;
  pointer-events: none;
}

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

.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 8px;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.social-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.social-header {
  margin-bottom: 48px;
}

.social-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 32px;
  background: var(--bg);
  text-decoration: none;
  color: var(--fg);
  transition: background 0.25s, transform 0.2s;
}

.social-card:hover {
  background: var(--bg-card);
  transform: translateY(-2px);
}

.social-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.social-card:hover .social-card-icon {
  transform: scale(1.08);
}

.social-card--yt .social-card-icon {
  background: rgba(255, 0, 0, 0.12);
  color: #ff0000;
}

.social-card--tt .social-card-icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
}

.social-card--ig .social-card-icon {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
}

.social-card-platform {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.social-card-handle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.social-card-cta {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* ===== CHANNEL EMBED ===== */
.channel-embed-section {
  padding: 80px 24px 60px;
  border-bottom: 1px solid var(--border);
}

.channel-embed-inner {
  max-width: 900px;
  margin: 0 auto;
}

.channel-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.channel-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.channel-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.btn-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== FEATURED VIDEOS ===== */
.featured-videos {
  padding: 80px 24px 100px;
  background: var(--bg-elevated);
}

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

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.video-card:hover {
  border-color: rgba(255, 77, 0, 0.3);
  transform: translateY(-3px);
}

.video-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--bg);
}

.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-meta {
  padding: 14px 16px;
}

.video-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 0, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.view-all-wrap {
  text-align: center;
}

/* ===== PARTNERSHIPS PAGE ===== */
.partnership-why {
  padding: 80px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.partnership-why-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.why-card {
  padding: 44px 36px;
  background: var(--bg);
  transition: background 0.2s;
}

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

.why-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ===== INQUIRY FORM ===== */
.inquiry-section {
  padding: 80px 24px 100px;
}

.inquiry-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.inquiry-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.inquiry-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
}

.inquiry-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.contact-value {
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 400;
}

/* Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.req {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 136, 136, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 77, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.btn-submit {
  align-self: flex-start;
  font-size: 0.95rem;
  padding: 14px 32px;
}

.form-error-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-success {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px 48px;
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.3);
  color: var(--accent);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== MOBILE — hub pages ===== */
@media (max-width: 900px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

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

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

  .inquiry-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
  }

  .nav-links--open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .form-row--2 {
    grid-template-columns: 1fr;
  }

  .channel-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .social-card {
    padding: 28px 24px;
  }

  .why-card {
    padding: 32px 24px;
  }
}