/* ── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TOKENS ────────────────────────────────────────────────────────── */
:root {
  /* Surface */
  --bg:      #05080f;
  --bg2:     #080d18;
  --bg3:     #0c1422;
  --surface: #111827;
  --overlay: rgba(5,8,15,0.85);

  /* Borders */
  --border:   rgba(255,255,255,0.06);
  --border2:  rgba(255,255,255,0.10);
  --border3:  rgba(255,255,255,0.18);

  /* Brand */
  --blue:      #3b82f6;
  --blue-lt:   #60a5fa;
  --blue-glow: rgba(59,130,246,0.25);
  --cyan:      #22d3ee;
  --indigo:    #818cf8;
  --red:       #f43f5e;
  --amber:     #f59e0b;
  --emerald:   #10b981;

  /* Text */
  --text:  #f1f5f9;
  --text2: #94a3b8;
  --dim:   #475569;

  /* Radius */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Font */
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(59,130,246,0.15);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
}

/* ── TICKER ─────────────────────────────────────────────────────────── */
.ticker {
  position: relative;
  background: #0a0d18;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  z-index: 300;
}
.ticker-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0 14px;
  height: 100%;
  text-transform: uppercase;
}
.ticker-pulse {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.ticker-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: ticker-move 50s linear infinite;
  font-size: 0.75rem;
  color: var(--text2);
  letter-spacing: 0.02em;
}
.ticker-track span::before { content: '◆ '; color: var(--blue); font-size: 0.55rem; }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAV ────────────────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 4px;
  width: min(1120px, 100%);
  height: 52px;
  background: rgba(8,13,24,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 0 8px 0 20px;
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  height: 44px;
  background: rgba(5,8,15,0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: -0.3px;
  white-space: nowrap;
  margin-right: 8px;
}
.nav-brand-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 var(--blue-glow);
  animation: brand-pulse 2.5s ease-in-out infinite;
}
@keyframes brand-pulse {
  0%,100% { box-shadow: 0 0 0 0 var(--blue-glow); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text2);
  padding: 6px 12px;
  border-radius: 50px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--border); }
.nav-links a.active { color: var(--blue-lt); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-left: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(244,63,94,0.4); }
.nav-hamburger {
  display: none;
  color: var(--text2);
  font-size: 1.2rem;
  padding: 8px;
  margin-left: auto;
}
/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 16px; right: 16px;
  background: rgba(8,13,24,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 16px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-drawer a:hover { color: var(--text); background: var(--border); }
.nav-drawer a.active { color: var(--blue-lt); }
.nav-drawer-cta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px;
  border-radius: var(--r-sm);
}

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: var(--bg);
}
/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -20%; right: -10%;
  animation: orb-float-1 10s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, transparent 70%);
  bottom: -10%; left: -5%;
  animation: orb-float-2 13s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(129,140,248,0.08) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orb-float-3 16s ease-in-out infinite alternate;
}
@keyframes orb-float-1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,40px) scale(1.15); } }
@keyframes orb-float-2 { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,-40px) scale(1.2); } }
@keyframes orb-float-3 { from { transform: translate(0,0); } to { transform: translate(-30px,30px); } }
/* Dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--blue-lt);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue-lt);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue-lt) 0%, var(--cyan) 60%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
/* Floating stats panel in hero (desktop only) */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-stat-card:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: var(--shadow-glow);
}
.hero-stat-icon {
  font-size: 1.5rem;
  opacity: 0.8;
  flex-shrink: 0;
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dim);
  margin-top: 3px;
  font-weight: 600;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(59,130,246,0.5); }
.btn-danger {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(244,63,94,0.3);
}
.btn-danger:hover { box-shadow: 0 6px 24px rgba(244,63,94,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); color: var(--text); }
.btn-outline {
  background: transparent;
  color: var(--blue-lt);
  border: 1px solid rgba(59,130,246,0.3);
}
.btn-outline:hover { background: rgba(59,130,246,0.08); border-color: var(--blue); }

/* ── LAYOUT ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-dark { background: var(--bg2); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--blue);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.2;
}
.section-sub { color: var(--text2); font-size: 0.92rem; margin-top: 6px; }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  transition: gap 0.2s;
}
.link-more:hover { gap: 10px; }

/* ── VIDEO CARDS ─────────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.25s,
              box-shadow 0.25s;
  will-change: transform;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.1);
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg3);
  overflow: hidden;
}
.video-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .video-card-thumb img { transform: scale(1.04); }
.video-card-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.3;
  background: linear-gradient(135deg, var(--bg3), var(--surface));
}
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,15,0.7) 0%, transparent 50%);
  pointer-events: none;
}
.video-card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}
.video-card-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  padding: 2px 7px;
  border-radius: 4px;
}
.video-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-card-title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  color: var(--dim);
}
.video-card-views { color: var(--blue-lt); font-weight: 600; }
.video-card-dot { opacity: 0.4; }
.video-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--blue-lt);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px;
  border-radius: var(--r-sm);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.video-card-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ── CATEGORY TAGS ───────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}
.tag-ai       { background: rgba(59,130,246,0.15);  color: var(--blue-lt);  border: 1px solid rgba(59,130,246,0.2); }
.tag-security { background: rgba(244,63,94,0.12);   color: #fb7185;         border: 1px solid rgba(244,63,94,0.2); }
.tag-model    { background: rgba(16,185,129,0.12);  color: #34d399;         border: 1px solid rgba(16,185,129,0.2); }
.tag-tech     { background: rgba(129,140,248,0.12); color: var(--indigo);   border: 1px solid rgba(129,140,248,0.2); }
.tag-shorts   { background: rgba(245,158,11,0.12);  color: var(--amber);    border: 1px solid rgba(245,158,11,0.2); }
.tag-live     { background: rgba(244,63,94,0.15);   color: #fb7185;         border: 1px solid rgba(244,63,94,0.3);
                animation: tag-live-pulse 2s ease-in-out infinite; }
@keyframes tag-live-pulse {
  0%,100% { box-shadow: none; }
  50%      { box-shadow: 0 0 12px rgba(244,63,94,0.3); }
}

/* ── SUBSCRIBE BANNER ────────────────────────────────────────────────── */
.sub-banner {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0f2344 50%, #0a1628 100%);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--r-xl);
  padding: 64px 40px;
  text-align: center;
  overflow: hidden;
  margin: 0 0 80px;
}
.sub-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(59,130,246,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.sub-banner-ring {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.12);
  pointer-events: none;
}
.sub-banner-ring-2 {
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.06);
  pointer-events: none;
}
.sub-banner-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  position: relative;
}
.sub-banner-sub {
  color: var(--text2);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto 32px;
  position: relative;
}
.sub-banner .btn { position: relative; }

/* ── ABOUT TEASER (2 col on home) ────────────────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-teaser-quote {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.about-teaser-quote::before {
  content: '"';
  position: absolute;
  top: -16px; left: 20px;
  font-family: var(--font-head);
  font-size: 8rem;
  color: rgba(59,130,246,0.06);
  line-height: 1;
  pointer-events: none;
}
.about-teaser-quote blockquote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  font-style: italic;
  position: relative;
  margin-bottom: 12px;
}
.about-teaser-quote cite {
  font-size: 0.78rem;
  color: var(--dim);
  font-style: normal;
}
.about-teaser-text p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── PAGE HEADER ─────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 130px 24px 64px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.1;
}
.page-hero p { color: var(--text2); font-size: 1rem; }

/* ── AUDIO QUOTE HERO ────────────────────────────────────────────────── */
.quote-hero {
  background: rgba(59,130,246,0.04);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--r-xl);
  padding: 48px 52px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.quote-hero::after {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--font-head);
  font-size: 12rem;
  color: rgba(59,130,246,0.06);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.quote-text .word { transition: color 0.1s, background 0.1s; border-radius: 3px; padding: 0 1px; display: inline; }
.quote-text .word.active { color: var(--blue-lt); background: rgba(59,130,246,0.15); }
.quote-attr { font-size: 0.82rem; color: var(--dim); font-style: italic; margin-bottom: 24px; position: relative; z-index: 1; }
.audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 1;
}
.audio-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.4); }
.audio-progress-bar {
  display: none;
  margin-top: 12px;
  height: 3px;
  background: rgba(59,130,246,0.15);
  border-radius: 50px;
  max-width: 400px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.audio-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 50px;
  width: 0%;
  transition: width 0.1s linear;
}
.audio-hint { font-size: 0.7rem; color: var(--dim); margin-top: 8px; position: relative; z-index: 1; }

/* ── PROFILE ─────────────────────────────────────────────────────────── */
.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.profile-sticky { position: sticky; top: 80px; }
.profile-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  object-fit: cover;
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-lg);
  background: var(--bg3);
}
.profile-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-top: 16px;
  text-align: center;
}
.profile-name { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--text); }
.profile-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-top: 4px; }
.profile-channel-link { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.75rem; color: var(--blue-lt); margin-top: 12px; }
.about-body h2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.about-body h2:first-child { margin-top: 0; }
.about-body p { color: var(--text2); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.about-body strong { color: var(--text); font-weight: 600; }
.team-row { display: flex; gap: 12px; flex-wrap: wrap; }
.team-card {
  flex: 1; min-width: 150px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
}
.team-name { font-weight: 700; color: var(--text); font-size: 0.88rem; }
.team-role { font-size: 0.72rem; color: var(--blue); font-weight: 500; margin-top: 3px; }
.team-desc { font-size: 0.75rem; color: var(--dim); margin-top: 6px; line-height: 1.5; }
.events-box {
  background: linear-gradient(135deg, var(--bg3), var(--surface));
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 28px;
}
.events-heading {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.events-list { display: flex; flex-wrap: wrap; gap: 8px; }
.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 5px 13px;
  font-size: 0.75rem;
  color: var(--text2);
}
.event-chip::before { content: '✈'; opacity: 0.5; font-size: 0.65rem; }

/* ── STATS PAGE ──────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.stat-card:hover { border-color: var(--border2); box-shadow: var(--shadow-card); }
.stat-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.stat-card-icon { font-size: 1.4rem; margin-bottom: 14px; display: block; opacity: 0.9; }
.stat-card-val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dim);
  font-weight: 600;
}
.stat-card-sub { font-size: 0.72rem; color: var(--text2); margin-top: 4px; line-height: 1.4; }
.growth-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.growth-box h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.progress-wrap { margin-bottom: 20px; }
.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 8px;
}
.progress-track {
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
}
.progress-fill { height: 100%; border-radius: 50px; transition: width 1.2s cubic-bezier(0.34,1.56,0.64,1); }
.progress-sub { font-size: 0.7rem; color: var(--dim); margin-top: 5px; }
.top-list-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.top-list-box h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.top-video-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.top-video-row:last-child { border-bottom: none; }
.top-rank { font-family: var(--font-mono); font-size: 0.68rem; color: var(--dim); width: 24px; flex-shrink: 0; text-align: right; }
.top-title { flex: 1; color: var(--text); font-weight: 500; line-height: 1.4; }
.top-views { font-family: var(--font-mono); font-size: 0.72rem; color: var(--blue-lt); font-weight: 600; white-space: nowrap; }
.top-link {
  font-size: 0.7rem;
  color: var(--dim);
  border: 1px solid var(--border2);
  padding: 3px 10px;
  border-radius: 4px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.top-link:hover { color: var(--blue-lt); border-color: rgba(59,130,246,0.3); }
.stats-source { text-align: center; padding: 20px 0; color: var(--dim); font-size: 0.82rem; }
.stats-updated { font-family: var(--font-mono); font-size: 0.68rem; color: var(--dim); margin-bottom: 32px; }

/* ── VIDEOS PAGE ─────────────────────────────────────────────────────── */
.channel-cta-bar {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(34,211,238,0.04));
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.channel-cta-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.channel-cta-desc { font-size: 0.82rem; color: var(--text2); }
.channel-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  color: var(--text2);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.filter-btn:hover { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.25); color: var(--text); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.video-count { font-size: 0.8rem; color: var(--dim); margin-bottom: 20px; font-family: var(--font-mono); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 0.82rem; color: var(--dim); line-height: 1.6; max-width: 260px; }
.footer-col-heading { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--dim); font-weight: 600; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text2); transition: color 0.15s; }
.footer-links a:hover { color: var(--blue-lt); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── SCROLL REVEALS ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── INLINE STYLE HELPERS (removes need for style="" in HTML) ─────────── */
.shimmer-card   { height: 320px; }
.shimmer-item   { height: 48px; margin-bottom: 8px; }
.shimmer-item-last { height: 48px; }
.accent-blue    { background: #3b82f6; }
.accent-indigo  { background: #818cf8; }
.accent-cyan    { background: #22d3ee; }
.accent-emerald { background: #10b981; }
.fill-blue      { background: #3b82f6; }
.fill-cyan      { background: #22d3ee; }
.progress-fill  { width: 0%; }
.profile-sub-btn { margin-top: 14px; width: 100%; justify-content: center; font-size: 0.82rem; padding: 10px; }

/* ── LOADING SHIMMER ─────────────────────────────────────────────────── */
.shimmer {
  background: linear-gradient(90deg, var(--bg3) 25%, var(--surface) 50%, var(--bg3) 75%);
  background-size: 400% 100%;
  animation: shimmer-move 1.6s infinite;
  border-radius: var(--r-lg);
}
@keyframes shimmer-move { to { background-position: -400% 0; } }
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--dim);
  font-size: 0.88rem;
}
.empty-icon { font-size: 2.5rem; opacity: 0.3; display: block; margin-bottom: 12px; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-sticky { position: static; }
  .about-teaser { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .hero { padding: 100px 20px 60px; }
  .hero-h1 { letter-spacing: -1px; }
  .video-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .quote-hero { padding: 28px 24px; }
  .quote-hero::after { font-size: 7rem; }
  .sub-banner { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .channel-cta-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
}
