/* ============================================
   DRAGON CLAN TV - Landing Page Styles
   ============================================ */

/* ============================================
   CSS Variables & Theme
   ============================================ */
:root {
  --landing-bg: #0a0b10;
  --landing-bg-secondary: #12141c;
  --landing-bg-card: #1a1d28;
  --landing-bg-card-hover: #22252f;
  
  --landing-gold: #FFC34A;
  --landing-gold-light: #FFD47A;
  --landing-gold-dark: #D4A030;
  
  --landing-blue: #3b82f6;
  --landing-blue-light: #60a5fa;
  
  --landing-purple: #a855f7;
  
  --landing-text-primary: #f5f5f5;
  --landing-text-secondary: #bec6d3;
  --landing-text-muted: #9ca3af;
  --landing-text-alt: #d6dde0;
  --landing-text-alt3: #c9b598;
  
  --landing-border: #2a2d38;
  --landing-border-light: #3a3d48;
}

/* ============================================
   Optimize Legibility
   ============================================ */
    body {
      -webkit-font-smoothing: antialiased; /* Chrome, Safari, Edge */
      -moz-osx-font-smoothing: grayscale; /* Firefox */
      text-rendering: optimizeLegibility; /* Improves kerning and rendering */
}

/* ============================================
   Base Styles
   ============================================ */
.landing-page {
  background-color: var(--landing-bg);
  color: var(--landing-text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'Lato', sans-serif;
  overflow-x: clip;
}

.landing-page * {
  box-sizing: border-box;
}

/* ============================================
   Typography - Headings
   ============================================ */
/* H1 & H2: Power of Dragon font with gold gradient */
.landing-page h1,
.landing-page h2 {
  font-family: 'Power of Dragon', 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 3px;
  background: linear-gradient(180deg, #FFC34A 0%, #D47A21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* H3, H4, H5: Reckless Sans in ALL CAPS */
.landing-page h3,
.landing-page h4,
.landing-page h5 {
  font-family: 'Reckless Sans', 'Cinzel', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   Header / Navigation
   ============================================ */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: linear-gradient(180deg, rgba(10, 11, 16, 0.95) 0%, rgba(10, 11, 16, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--landing-border);
  transition: all 0.3s ease;
}

.landing-header.scrolled {
  background: rgba(10, 11, 16, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.landing-logo img {
  height: 36px;
  width: auto;
}

.landing-logo-text {
  font-family: 'Power of Dragon', 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--landing-gold);
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 195, 74, 0.3);
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

.landing-nav-link {
  color: var(--landing-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.landing-nav-link:hover {
  color: var(--landing-gold);
}

.landing-nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-height: 44px;
  touch-action: manipulation;
}

.landing-btn-ghost {
  background: transparent;
  color: var(--landing-text-primary);
  border: 1px solid var(--landing-border-light);
}

.landing-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--landing-gold);
  color: var(--landing-gold);
}

.landing-btn-primary {
  background: linear-gradient(135deg, var(--landing-gold) 0%, var(--landing-gold-dark) 100%);
  color: #0a0b10;
  box-shadow: 0 2px 8px rgba(255, 195, 74, 0.2);
  font-weight: 700;
}

.landing-btn-primary:hover {
  background: linear-gradient(180deg, #FFC34A 0%, #D47A21 100%);
  box-shadow: 0 2px 10px rgba(212, 122, 33, 0.25);
}

.landing-btn-secondary {
  background: var(--landing-bg-card);
  color: var(--landing-text-primary);
  border: 1px solid var(--landing-border-light);
}

.landing-btn-secondary:hover {
  background: var(--landing-bg-card-hover);
  border-color: var(--landing-blue);
}

/* Mobile menu toggle */
.landing-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--landing-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-height: 44px;
  min-width: 44px;
}

/* ============================================
   Hero Section with Video
   ============================================ */
.landing-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed header */
}

.landing-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
}

.landing-hero-video iframe {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 aspect ratio inverse */
  transform: translateX(-50%);
  pointer-events: auto;
}

/* Gradient overlays for better text readability */
.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(10, 11, 16, 0.5) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Scroll indicator */
.landing-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.landing-scroll-indicator-inner {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 195, 74, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.landing-scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--landing-gold);
  border-radius: 2px;
  animation: pulse 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================
   Hero Section - Text-Based Content
   ============================================ */
.landing-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 4rem 2rem;
}

.landing-hero-title {
  font-family: 'Power of Dragon', 'Cinzel', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #FFC34A 0%, #D47A21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% {
    filter: drop-shadow(0 0 60px rgba(255, 195, 74, 0.1))
            drop-shadow(0 0 120px rgba(212, 160, 48, 0.08));
  }
  50% {
    filter: drop-shadow(0 0 100px rgba(255, 195, 74, 0.35))
            drop-shadow(0 0 180px rgba(212, 160, 48, 0.25))
            drop-shadow(0 0 260px rgba(255, 195, 74, 0.15));
  }
}

.landing-hero-subtitle {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--landing-text-secondary);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.landing-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.landing-hero-creator-link {
  font-size: 0.9rem;
  color: var(--landing-text-muted);
}

.landing-hero-creator-link a {
  color: var(--landing-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-hero-creator-link a:hover {
  color: var(--landing-gold-light);
  text-decoration: underline;
}

/* ============================================
   Waitlist Box & Benefits
   ============================================ */
.landing-waitlist-box {
  max-width: 560px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
}

.landing-waitlist-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.landing-waitlist-benefits li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--landing-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.landing-waitlist-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--landing-gold);
  font-weight: 700;
}

/* ============================================
   Creators Showcase Section
   ============================================ */
.landing-creators-section {
  background: var(--landing-bg-secondary);
  max-width: 100%;
  padding: 5rem 2rem;
}

.landing-creators-section .landing-section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.landing-creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.landing-creator-card {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.landing-creator-card:hover {
  border-color: rgba(255, 195, 74, 0.3);
  transform: translateY(-4px);
}

.landing-creator-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: rgba(255, 195, 74, 0.1);
  border: 1px solid rgba(255, 195, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.landing-creator-name {
  font-family: 'Reckless Sans', 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--landing-text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.landing-creator-category {
  color: var(--landing-gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.landing-creator-quote {
  color: var(--landing-text-secondary);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .landing-creators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .landing-creators-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   Platform Overview Full-Width Background
   ============================================ */
.landing-platform-overview-bg {
  background: linear-gradient(135deg, var(--landing-bg-secondary) 0%, var(--landing-bg) 100%);
  width: 100%;
}

/* ============================================
   Section Base Styles
   ============================================ */
.landing-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.landing-section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 195, 74, 0.1);
  border: 1px solid rgba(255, 195, 74, 0.3);
  border-radius: 20px;
  color: var(--landing-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.landing-section-title {
  font-family: 'Power of Dragon', 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 400;
  background: linear-gradient(180deg, #FFC34A 0%, #D47A21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 3px;
}

.landing-section-subtitle {
  color: var(--landing-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   Feature Cards Grid (Powers of the Arcane)
   ============================================ */
.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.landing-feature-card {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.landing-feature-card:hover {
  background: var(--landing-bg-card-hover);
  border-color: var(--landing-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.landing-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 195, 74, 0.1);
  border: 1px solid rgba(255, 195, 74, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--landing-gold);
  font-size: 1.25rem;
}

.landing-feature-title {
  font-family: 'Reckless Sans', 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--landing-text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.landing-feature-text {
  color: var(--landing-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================
   Platform Overview Grid (4-Card)
   ============================================ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.platform-card {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  background: var(--landing-bg-card-hover);
  border-color: var(--landing-gold);
}

.platform-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 195, 74, 0.1);
  border: 1px solid rgba(255, 195, 74, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--landing-gold);
  font-size: 1.4rem;
}

.platform-card-title {
  font-family: 'Reckless Sans', 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--landing-text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.platform-card-text {
  color: var(--landing-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.platform-card-icon-round {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 100, 0.5);
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.platform-card-btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

@media (max-width: 640px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Category Cards (Realms of Knowledge)
   ============================================ */
.landing-categories-section {
  background: var(--landing-bg-secondary);
  padding: 5rem 0;
}

.landing-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.landing-category-card {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.landing-category-card:hover {
  border-color: var(--landing-blue);
  background: var(--landing-bg-card-hover);
}

.landing-category-icon {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--landing-blue);
  font-size: 1rem;
}

.landing-category-title {
  font-family: 'Reckless Sans', 'Cinzel', serif;
  font-weight: 600;
  color: var(--landing-text-primary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.landing-category-count {
  color: var(--landing-text-muted);
  font-size: 0.8rem;
}

.landing-category-text {
  color: var(--landing-text-secondary);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ============================================
   Stats Section (A Sanctuary for Seekers)
   ============================================ */
.landing-stats-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-stats-content {
  flex: 1;
}

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

.landing-stat-card {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.landing-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--landing-purple);
  font-size: 1rem;
}

.landing-stat-number {
  font-family: 'Power of Dragon', 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--landing-text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: 2px;
}

.landing-stat-label {
  color: var(--landing-text-muted);
  font-size: 0.85rem;
}

/* ============================================
   CTA / Waitlist Section
   ============================================ */
.landing-waitlist-section {
  background: linear-gradient(135deg, var(--landing-bg-secondary) 0%, var(--landing-bg) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.landing-waitlist-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.landing-input {
  flex: 1;
  padding: 0.875rem 1rem;
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  color: var(--landing-text-primary);
  font-size: 1rem;
  min-height: 44px;
  transition: border-color 0.3s ease;
}

.landing-input:focus {
  outline: none;
  border-color: var(--landing-gold);
}

.landing-input::placeholder {
  color: var(--landing-text-muted);
}

/* ============================================
   Contact Section
   ============================================ */
.landing-contact-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.landing-contact-card {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.landing-contact-card:hover {
  border-color: var(--landing-gold);
}

.landing-contact-title {
  font-family: 'Reckless Sans', 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--landing-text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.landing-contact-text {
  color: var(--landing-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ============================================
   Footer
   ============================================ */
.landing-footer {
  background: var(--landing-bg-secondary);
  border-top: 1px solid var(--landing-border);
  padding: 3rem 2rem 1.5rem;
}

.landing-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--landing-border);
}

.landing-footer-brand {
  max-width: 300px;
}

.landing-footer-brand p {
  color: var(--landing-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.landing-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.landing-footer-social a {
  width: 36px;
  height: 36px;
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--landing-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.landing-footer-social a:hover {
  border-color: var(--landing-gold);
  color: var(--landing-gold);
}

.landing-footer-column h4 {
  font-family: 'Reckless Sans', sans-serif;
  font-weight: 600;
  color: var(--landing-text-primary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.landing-footer-column a {
  display: block;
  color: var(--landing-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.landing-footer-column a:hover {
  color: var(--landing-gold);
}

.landing-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.landing-footer-copyright {
  color: var(--landing-text-muted);
  font-size: 0.8rem;
}

.landing-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.landing-footer-legal a {
  color: var(--landing-text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.landing-footer-legal a:hover {
  color: var(--landing-gold);
}

/* ============================================
   Login Modal
   ============================================ */
.landing-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.landing-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.landing-modal {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.landing-modal-backdrop.active .landing-modal {
  transform: scale(1);
}

.landing-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.landing-modal-title {
  font-family: 'Power of Dragon', 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--landing-text-primary);
  letter-spacing: 2px;
}

.landing-modal-close {
  background: none;
  border: none;
  color: var(--landing-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.landing-modal-close:hover {
  color: var(--landing-text-primary);
}

.landing-form-group {
  margin-bottom: 1.25rem;
}

.landing-form-label {
  display: block;
  color: var(--landing-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.landing-form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  color: var(--landing-text-primary);
  font-size: 1rem;
  min-height: 44px;
  transition: border-color 0.3s ease;
}

.landing-form-input:focus {
  outline: none;
  border-color: var(--landing-gold);
}

.landing-form-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: none;
}

.landing-form-error.show {
  display: block;
}

.landing-form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--landing-text-muted);
  font-size: 0.8rem;
}

.landing-form-divider::before,
.landing-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--landing-border);
}

.landing-demo-hint {
  background: rgba(255, 195, 74, 0.1);
  border: 1px solid rgba(255, 195, 74, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.landing-demo-hint p {
  color: var(--landing-gold);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.landing-demo-hint code {
  display: block;
  color: var(--landing-text-secondary);
  font-size: 0.8rem;
  font-family: monospace;
  margin-top: 0.25rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .landing-features-grid,
  .landing-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .landing-stats-section {
    flex-direction: column;
    text-align: center;
  }
  
  .landing-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .landing-header {
    padding: 0.75rem 1rem;
  }
  
  .landing-nav-links {
    display: none;
  }
  
  .landing-nav-buttons {
    display: none;
  }
  
  .landing-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .landing-section {
    padding: 3rem 1rem;
  }
  
  .landing-section-title {
    font-size: 1.75rem;
  }
  
  .landing-features-grid,
  .landing-categories-grid,
  .landing-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .landing-waitlist-form {
    flex-direction: column;
  }
  
  .landing-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .landing-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .landing-footer-legal {
    justify-content: center;
  }
}

/* Mobile menu overlay */
.landing-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--landing-bg-secondary);
  border-left: 1px solid var(--landing-border);
  z-index: 200;
  padding: 5rem 1.5rem 2rem;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.landing-mobile-menu.active {
  right: 0;
}

.landing-mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.landing-mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.landing-mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--landing-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-height: 44px;
  min-width: 44px;
}

.landing-mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.landing-mobile-menu-link {
  display: block;
  color: var(--landing-text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--landing-border);
  transition: color 0.3s ease;
}

.landing-mobile-menu-link:hover {
  color: var(--landing-gold);
}

.landing-mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--landing-gold); }
.text-muted { color: var(--landing-text-muted); }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }

.hidden { display: none !important; }
