/* ============================================
   VoirPlay Design System
   European. Clean. Professional.
   ============================================ */

:root {
  --blue-900: #1a237e;
  --blue-800: #283593;
  --blue-700: #303f9f;
  --blue-600: #3949ab;
  --blue-100: #e8eaf6;
  --blue-50: #f5f6ff;
  --teal-600: #00897b;
  --teal-500: #009688;
  --teal-400: #26a69a;
  --teal-100: #e0f2f1;
  --gray-900: #1a1a2e;
  --gray-800: #2d2d44;
  --gray-700: #4a4a5a;
  --gray-600: #6b6b7b;
  --gray-500: #8e8e9e;
  --gray-400: #b0b0be;
  --gray-300: #d1d1db;
  --gray-200: #e5e5ed;
  --gray-100: #f3f3f8;
  --gray-50: #f9f9fc;
  --white: #ffffff;
  --red-500: #ef4444;

  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(26, 35, 126, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 35, 126, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 35, 126, 0.12);
  --shadow-xl: 0 16px 48px rgba(26, 35, 126, 0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --nav-height: 64px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.hidden { display: none !important; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius-sm);
  padding: 0.625rem 1.25rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-900);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-800);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-900);
  border: 1.5px solid var(--blue-900);
}
.btn-outline:hover {
  background: var(--blue-50);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}
.btn-ghost:hover {
  color: var(--blue-900);
  background: var(--blue-50);
}

.btn-sm { padding: 0.4rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-900);
}

.nav-search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  color: var(--gray-500);
}

.nav-search:focus-within {
  border-color: var(--blue-900);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.08);
  color: var(--blue-900);
}

.nav-search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-900);
}

.nav-search input::placeholder {
  color: var(--gray-400);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--gray-700);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

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

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--blue-50) 0%, var(--white) 40%, var(--teal-100) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 35, 126, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 137, 123, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue-900);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-accent {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--teal-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
}

.hero-feature svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-900);
}

.hero-stat span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ========== BROWSE / VIDEO FEED ========== */
.browse {
  padding: 4rem 0 5rem;
}

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

.section-header h2 {
  font-size: 1.75rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

/* Category Bar */
.category-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-bar::-webkit-scrollbar { display: none; }

.category-chip {
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.category-chip:hover {
  border-color: var(--blue-900);
  color: var(--blue-900);
}

.category-chip.active {
  background: var(--blue-900);
  border-color: var(--blue-900);
  color: var(--white);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--white);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-card:hover .video-thumb-overlay {
  opacity: 1;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 126, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-thumb-overlay svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.video-info {
  padding: 0.875rem 0.25rem;
  display: flex;
  gap: 0.75rem;
}

.video-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-900);
  flex-shrink: 0;
}

.video-meta {
  flex: 1;
  min-width: 0;
}

.video-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.video-creator-name {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0.125rem;
}

.video-stats {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ========== PLAYER VIEW ========== */
.player-view {
  padding: calc(var(--nav-height) + 1.5rem) 0 4rem;
  min-height: 100vh;
  background: var(--gray-50);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.back-btn:hover { color: var(--blue-900); }

.player-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.5rem;
}

.player-embed {
  aspect-ratio: 16 / 9;
  background: var(--gray-900);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.player-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.player-info {
  padding: 1.25rem 0;
}

.player-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.player-creator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.player-creator .video-avatar {
  width: 40px;
  height: 40px;
  font-size: 0.875rem;
}

.player-creator-info strong {
  display: block;
  font-size: 0.9375rem;
}

.player-creator-info span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.player-stats {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.player-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-btn:hover {
  border-color: var(--blue-900);
  color: var(--blue-900);
}

.action-btn.active {
  background: var(--blue-50);
  border-color: var(--blue-900);
  color: var(--blue-900);
}

.player-description {
  padding: 1rem 1.25rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Comments */
.comments-section {
  margin-top: 2rem;
}

.comments-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.comment-count {
  font-weight: 400;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.comment-input {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-600);
  flex-shrink: 0;
}

.comment-field {
  flex: 1;
  padding: 0.625rem 0;
  border: none;
  border-bottom: 1.5px solid var(--gray-200);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: transparent;
  transition: border-color 0.2s;
}

.comment-field:focus {
  border-color: var(--blue-900);
}

.comment {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.comment-body {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.comment-header strong {
  font-size: 0.8125rem;
}

.comment-header span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.comment-body p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.comment-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.comment-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-500);
  cursor: pointer;
}

.comment-actions button:hover { color: var(--gray-900); }

/* Player Sidebar */
.player-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.related-videos {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.related-card {
  display: flex;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.related-card:hover {
  background: var(--gray-100);
}

.related-card .related-thumb {
  width: 160px;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
}

.related-card .related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card .related-info {
  flex: 1;
  min-width: 0;
}

.related-card .related-title {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.related-card .related-creator {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.related-card .related-stats {
  font-size: 0.6875rem;
  color: var(--gray-400);
}

/* ========== CREATOR PROFILE ========== */
.creator-profile {
  padding: calc(var(--nav-height) + 1.5rem) 0 4rem;
  min-height: 100vh;
  background: var(--gray-50);
}

.creator-banner {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--teal-600) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: -3rem;
}

.creator-info-bar {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.creator-avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--blue-100);
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-900);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.creator-details {
  flex: 1;
  min-width: 0;
}

.creator-details h1 {
  font-size: 1.5rem;
  margin-bottom: 0.125rem;
}

.creator-handle {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.creator-bio {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 600px;
}

.creator-stats-bar {
  display: flex;
  gap: 2rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.creator-stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--blue-900);
}

.creator-stat-item span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ========== FOR CREATORS ========== */
.creators-info {
  padding: calc(var(--nav-height) + 3rem) 0 5rem;
  min-height: 100vh;
}

.creators-hero {
  text-align: left;
  margin-bottom: 4rem;
}

.creators-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.creators-hero p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* Comparison */
.comparison-section {
  margin-bottom: 4rem;
}

.comparison-section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.section-subtitle {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.comparison-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
}

.comparison-card.comparison-voir {
  border-color: var(--blue-900);
  background: var(--blue-50);
}

.comparison-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.comparison-voir .comparison-label {
  color: var(--blue-900);
}

.comparison-bar-wrap {
  height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.comparison-bar {
  height: 100%;
  background: var(--gray-400);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: width 1s ease;
}

.comparison-bar.voir-bar {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--teal-600) 100%);
}

.comparison-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.benefit-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: all 0.25s ease;
}

.benefit-card:hover {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Waitlist */
.waitlist-section {
  padding: 3rem;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.waitlist-section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.waitlist-section > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.waitlist-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.waitlist-form input,
.waitlist-form select {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.2s;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.waitlist-form select {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.waitlist-form select option {
  color: var(--gray-900);
  background: var(--white);
}

.waitlist-form .btn-primary {
  background: var(--white);
  color: var(--blue-900);
  font-weight: 600;
}

.waitlist-form .btn-primary:hover {
  background: var(--gray-100);
}

.form-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  text-align: center;
}

/* ========== ABOUT ========== */
.about-section {
  padding: calc(var(--nav-height) + 3rem) 0 5rem;
  min-height: 100vh;
}

.about-hero {
  margin-bottom: 3rem;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 700px;
  line-height: 1.7;
}

.about-block {
  margin-bottom: 3rem;
}

.about-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-block p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 760px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pillar-card {
  padding: 2rem;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--blue-100);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pillar-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--blue-900);
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-card {
  padding: 2rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-900), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.125rem;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--teal-600);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card > p:last-child {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Backed badge */
.about-backed {
  padding: 2rem;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--blue-100);
}

.backed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.75rem;
}

.about-backed p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--gray-700);
  font-size: 0.75rem;
  color: var(--gray-400);
}

.footer-links h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-400);
  padding: 0.375rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .player-layout {
    grid-template-columns: 1fr;
  }

  .player-sidebar {
    order: -1;
  }

  .related-videos {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .related-card {
    flex-direction: column;
    min-width: 200px;
  }

  .related-card .related-thumb {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-search {
    display: none;
  }

  .nav-btn {
    display: none;
  }

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

  .mobile-menu.open {
    display: flex;
  }

  .nav.has-mobile-menu {
    height: auto;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 2rem);
    min-height: auto;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .waitlist-section {
    padding: 2rem 1.5rem;
  }

  .creator-info-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0.5rem;
  }

  .creator-stats-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .player-sidebar .related-videos {
    flex-direction: column;
  }

  .related-card {
    flex-direction: row;
    min-width: 0;
  }

  .related-card .related-thumb {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

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

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Smooth section transitions */
section {
  animation: fadeInUp 0.35s ease;
}
