/* ============================================
   YOLO — YOU ONLY LIVE ONCE
   Professional Website Styles
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-light: #111111;
  --bg-card: #161616;
  --text: #f5f5f5;
  --text-muted: #888888;
  --accent: #e8b931;
  --accent-glow: #e8b93144;
  --accent-2: #ff6b35;
  --gradient: linear-gradient(135deg, #e8b931, #ff6b35);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   LOADER
   ============================================ */

#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  display: flex;
  gap: 8px;
}

.loader-text span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--accent);
  opacity: 0;
  transform: translateY(40px);
  animation: loaderIn 0.5s var(--ease) forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.2s; }
.loader-text span:nth-child(3) { animation-delay: 0.3s; }
.loader-text span:nth-child(4) { animation-delay: 0.4s; }

@keyframes loaderIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVIGATION
   ============================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  transition: all 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.btn-nav:hover {
  background: var(--accent);
  color: var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* ============================================
   HERO
   ============================================ */

#hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 2;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-2);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #6366f1;
  top: 40%;
  left: 50%;
  animation: orbFloat 14s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-logo-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.title-line {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.95;
  letter-spacing: 6px;
  color: var(--text);
}

.title-line.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-btn-x {
  padding: 12px 16px;
}

.hero-btn-x svg {
  width: 18px;
  height: 18px;
}

.hero-btn-ca {
  position: relative;
  gap: 8px;
}

.ca-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent);
}

.ca-address {
  font-family: 'Inter', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text);
}

.ca-copy-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.hero-btn-ca:hover .ca-copy-icon {
  opacity: 1;
}

.ca-copied {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}

.hero-btn-ca.copied .ca-copied {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hero-stats {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 48px;
}

.stat {
  text-align: right;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--accent);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 6px;
  color: var(--text-muted);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS (General)
   ============================================ */

.section {
  padding: 140px 0;
}

.section-dark {
  background: var(--bg-light);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.centered {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-text strong {
  color: var(--text);
  font-weight: 600;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: translateX(-50%);
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  letter-spacing: 2px;
  width: 50%;
  padding: 0 40px;
  flex-shrink: 0;
}

.timeline-content {
  width: 50%;
  padding: 0 40px;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ============================================
   ALIVE CARDS
   ============================================ */

.philosophy-header {
  text-align: center;
  margin-bottom: 80px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.philosophy-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.philosophy-card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(232, 185, 49, 0.12), transparent 40%);
  z-index: 1;
}

.philosophy-card:hover .card-glow {
  opacity: 1;
}

.card-inner {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border-radius: 18px;
  padding: 48px 44px;
  height: 100%;
  transition: background 0.5s var(--ease);
}

.philosophy-card:hover .card-inner {
  background: rgba(22, 22, 22, 0.8);
}

.card-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  margin-bottom: 24px;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.philosophy-card:hover .card-number {
  opacity: 0.35;
  transform: translateX(4px);
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  transition: color 0.4s var(--ease);
}

.philosophy-card:hover h3 {
  color: var(--accent);
}

.philosophy-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  transition: color 0.4s var(--ease);
}

.philosophy-card:hover p {
  color: rgba(245, 245, 245, 0.7);
}

.card-line {
  width: 0;
  height: 2px;
  margin-top: 28px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.6s var(--ease);
}

.philosophy-card:hover .card-line {
  width: 60px;
}

/* ============================================
   BIG QUOTE
   ============================================ */

.section-quote {
  background: var(--bg-light);
  padding: 100px 0;
}

.big-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.big-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--text-muted);
}

.big-quote .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.video-card.video-featured {
  grid-column: 1 / -1;
}

.video-placeholder {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  aspect-ratio: 21/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.video-placeholder.small {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #2d1b69);
}

.video-placeholder:hover {
  border-color: rgba(232, 185, 49, 0.3);
  transform: scale(1.01);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232, 185, 49, 0.2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.4s var(--ease);
  z-index: 2;
}

.play-btn.small {
  width: 50px;
  height: 50px;
}

.play-btn svg {
  width: 28px;
  height: 28px;
}

.play-btn.small svg {
  width: 20px;
  height: 20px;
}

.video-placeholder:hover .play-btn {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1);
}

.video-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 100px;
}

.video-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.video-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.video-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* ============================================
   MOVEMENT
   ============================================ */

.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.movement-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

.m-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 2px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.m-stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial:hover {
  border-color: rgba(232, 185, 49, 0.15);
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
}

/* ============================================
   CTA
   ============================================ */

.section-cta {
  background: linear-gradient(180deg, var(--bg) 0%, #0f0f0f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 0;
}

.cta-title span {
  display: inline-block;
  margin: 0 8px;
}

.cta-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-minimal .footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 3px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-minimal p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   ANIMATIONS (Scroll Reveal System)
   ============================================ */

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  filter: blur(4px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  filter: blur(4px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.reveal-fade.visible {
  opacity: 1;
}

/* Split word animation */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  filter: blur(4px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.split-word.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Section float-in */
.section-float {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.section-float.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax container */
.parallax-section {
  will-change: transform;
}

/* Timeline enhanced animations */
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item.reveal-left {
  transform: translateX(-80px) rotate(-1deg);
}

.timeline-item.reveal-right {
  transform: translateX(80px) rotate(1deg);
}

.timeline-item.reveal-left.visible,
.timeline-item.reveal-right.visible {
  transform: translateX(0) rotate(0deg);
}

/* Timeline dot pulse on reveal */
.timeline-item.visible::after {
  animation: dotPulse 0.6s var(--ease) 0.3s;
}

@keyframes dotPulse {
  0% { transform: translateX(-50%) scale(1); box-shadow: 0 0 20px var(--accent-glow); }
  50% { transform: translateX(-50%) scale(2); box-shadow: 0 0 40px var(--accent); }
  100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 20px var(--accent-glow); }
}

/* Video cards stagger */
.video-card {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  filter: blur(4px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.video-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Testimonial slide-in */
.testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateX(60px) translateY(20px);
  filter: blur(4px);
}

.testimonial.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
  filter: blur(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease),
              border-color 0.4s var(--ease);
}

/* CTA words animate individually */
.cta-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) scale(0.8);
  filter: blur(10px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.cta-word.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Quote word-by-word reveal */
.quote-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.quote-word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee reveal */
.marquee-section {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.marquee-section.visible {
  opacity: 1;
}

/* Movement stats counter pop */
.m-stat {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  filter: blur(4px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.m-stat.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 60px;
    justify-content: flex-start;
  }

  .stat {
    text-align: left;
  }

  .section-grid,
  .movement-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  #navbar {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  #hero {
    padding: 80px 24px 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .section {
    padding: 80px 0;
  }

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

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-year {
    width: auto;
    padding: 0;
    margin-bottom: 8px;
  }

  .timeline-content {
    width: auto;
    padding: 0;
  }

  .timeline-item::after {
    left: 20px;
    top: 8px;
  }


  .movement-stats {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .title-line {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .cta-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}
