/* ==========================================================================
   ReelLuv — Dark Cinematic Theme & Design System
   ========================================================================== */

:root {
  /* Core Colors */
  --bg-dark: #0A0C10;
  --bg-card: #12151D;
  --bg-card-elevated: #181C26;
  --bg-card-hover: #1F2432;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 87, 34, 0.35);

  /* Brand Accents (Seasonal Ember / Neon Crimson) */
  --primary: #FF5722;
  --primary-glow: rgba(255, 87, 34, 0.4);
  --primary-light: #FF7043;
  --secondary: #E50914;
  --secondary-glow: rgba(229, 9, 20, 0.35);
  --accent-purple: #9C27B0;
  --accent-gold: #FFB300;

  /* Text & Typography */
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #FF7043 0%, #E50914 55%, #9C27B0 100%);
  --grad-card: linear-gradient(180deg, rgba(26, 31, 44, 0.7) 0%, rgba(18, 21, 29, 0.9) 100%);
  --grad-glow: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, rgba(10, 12, 16, 0) 70%);

  /* Transitions & Shadows */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.6), 0 0 1px 1px var(--border-subtle);
  --shadow-glow: 0 0 35px var(--primary-glow);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

/* Ambient Glow Background Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.5;
  animation: pulse 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.25), transparent);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.18), transparent);
  top: 40%;
  right: -150px;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(156, 39, 176, 0.15), transparent);
  bottom: 5%;
  left: 10%;
}

@keyframes pulse {
  0% { transform: scale(1) translateY(0); opacity: 0.4; }
  100% { transform: scale(1.15) translateY(20px); opacity: 0.65; }
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.text-center { text-align: center; }

/* Typography */
h1, h2, h3, h4, .brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.code-font {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 12, 16, 0.75);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
}

.brand-accent {
  color: var(--primary);
}

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

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-item:hover {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--grad-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 87, 34, 0.6);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 87, 34, 0.12);
  border: 1px solid rgba(255, 87, 34, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s infinite alternate;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Hero Form */
.hero-form, .cta-form {
  max-width: 520px;
  margin-bottom: 28px;
}

.input-wrapper {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 6px;
  transition: var(--transition-smooth);
}

.input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.input-wrapper input::placeholder {
  color: var(--text-dim);
}

.btn-submit {
  flex-shrink: 0;
}

.form-feedback {
  margin-top: 10px;
  font-size: 0.9rem;
  min-height: 24px;
}

.form-feedback.success {
  color: #4CAF50;
  font-weight: 600;
}

.form-feedback.error {
  color: #FF5252;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.pill svg {
  color: var(--primary);
}

/* Hero Visual Banner & Overlay */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--border-subtle);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-banner-img {
  transform: scale(1.03);
}

.hero-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(18, 21, 29, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.challenge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.live-indicator {
  width: 6px;
  height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 6px #4CAF50;
}

.card-metric-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.metric-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #FFFFFF;
}

.metric-denom {
  font-size: 1.1rem;
  color: var(--text-dim);
}

.metric-lbl {
  font-size: 0.85rem;
  color: #4CAF50;
  font-weight: 600;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}

.chart-bar {
  width: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.chart-bar.active {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

.badge-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(255, 87, 34, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 87, 34, 0.25);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Philosophy Cards */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.comparison-card.reelluv-card {
  border-color: var(--border-highlight);
  background: var(--grad-card);
  box-shadow: 0 12px 40px -10px rgba(255, 87, 34, 0.18), 0 0 1px 1px var(--border-highlight);
}

.card-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.card-tag.tag-primary {
  color: var(--primary-light);
}

.comparison-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.cross {
  color: #EF4444;
  font-weight: bold;
}

.check {
  color: #10B981;
  font-weight: bold;
}

/* Simulator Section */
.simulator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  max-width: 1000px;
  margin: 0 auto;
}

.control-group {
  margin-bottom: 28px;
}

.control-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.select-dropdown {
  width: 100%;
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

.select-dropdown:focus {
  border-color: var(--primary);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.slider-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-light);
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 6px;
  background: #1E2433;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.sim-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-tag {
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--text-dim);
}

/* Simulator Display */
.sim-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.ring-container {
  position: relative;
  width: 180px;
  height: 180px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-fill {
  transition: stroke-dashoffset 0.4s ease;
  stroke-dasharray: 464.95;
  stroke-dashoffset: 306.86;
}

.ring-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-percentage {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #FFFFFF;
}

.ring-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sim-metrics {
  width: 100%;
}

.sim-metric-card {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.sim-metric-card.ahead {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, rgba(18, 21, 29, 0.9) 100%);
}

.sim-metric-card.behind {
  border-color: rgba(239, 68, 68, 0.4);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.1) 0%, rgba(18, 21, 29, 0.9) 100%);
}

.sim-metric-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.sim-metric-value {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.sim-metric-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sim-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-metric {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.mini-metric .lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.mini-metric .val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 16px 40px -10px rgba(255, 87, 34, 0.15);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* App Mockup Showcase */
.mockup-showcase {
  max-width: 800px;
  margin: 0 auto;
}

.mockup-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.mockup-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mockup-tab.active, .mockup-tab:hover {
  background: var(--bg-card-hover);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
}

.phone-frame {
  width: 360px;
  min-height: 640px;
  margin: 0 auto;
  background: #0D1017;
  border: 10px solid #222736;
  border-radius: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 140px;
  height: 20px;
  background: #222736;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  margin: 0 auto;
}

.phone-screen {
  flex: 1;
  padding: 16px;
  display: none;
  flex-direction: column;
}

.phone-screen.active {
  display: flex;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.app-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.app-brand span { color: var(--primary); }

.app-hero-card {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.25) 0%, rgba(26, 31, 44, 0.8) 100%);
  border: 1px solid rgba(255, 87, 34, 0.4);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.app-hero-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.06em;
}

.app-hero-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 4px 0 10px;
}

.app-hero-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.app-hero-progress-fill {
  height: 100%;
  background: var(--grad-primary);
}

.app-hero-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.app-pace-pill {
  background: #10B981;
  color: #000;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
}

.app-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.app-watch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
}

.watch-poster-stub {
  width: 40px;
  height: 56px;
  border-radius: 6px;
  flex-shrink: 0;
}

.watch-poster-stub.p1 { background: linear-gradient(135deg, #FF5722, #3E1005); }
.watch-poster-stub.p2 { background: linear-gradient(135deg, #00C853, #003310); }
.watch-poster-stub.p3 { background: linear-gradient(135deg, #9C27B0, #2A0835); }

.watch-info { flex: 1; min-width: 0; }
.watch-title { font-size: 0.85rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.watch-sub { font-size: 0.72rem; color: var(--text-muted); }
.watch-time { font-size: 0.7rem; color: var(--text-dim); }

.phone-bottom-bar {
  display: flex;
  justify-content: space-around;
  padding: 12px;
  background: #121620;
  border-top: 1px solid var(--border-subtle);
}

.bottom-icon {
  font-size: 1.1rem;
  opacity: 0.4;
  cursor: pointer;
}

.bottom-icon.active {
  opacity: 1;
}

/* Detail & Logger Styles in Mockup */
.log-stars-row {
  display: flex;
  gap: 6px;
  font-size: 1.5rem;
  color: #FFB300;
  margin: 12px 0;
}

.log-toggles {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.log-chip {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.log-chip.active {
  background: rgba(255, 87, 34, 0.2);
  color: var(--primary-light);
  border: 1px solid rgba(255, 87, 34, 0.4);
}

.log-section-lbl {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.venue-chips {
  display: flex;
  gap: 6px;
}

.venue-chip {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.venue-chip.active {
  background: #FFFFFF;
  color: #000;
  font-weight: 600;
}

.detail-backdrop {
  height: 100px;
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.4), #0D1017);
  border-radius: 12px;
  position: relative;
  margin-bottom: 12px;
  padding: 8px;
}

.detail-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: #E50914;
  color: #FFF;
  padding: 2px 6px;
  border-radius: 4px;
}

.detail-genres {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.you-are-here-badge {
  font-size: 0.75rem;
  background: rgba(255, 179, 0, 0.15);
  border: 1px solid rgba(255, 179, 0, 0.3);
  color: #FFB300;
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-weight: 600;
}

.episode-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ep-row {
  font-size: 0.75rem;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  color: var(--text-muted);
}

.ep-row.done {
  color: #10B981;
}

.ep-row.current {
  background: rgba(255, 87, 34, 0.15);
  border: 1px solid rgba(255, 87, 34, 0.3);
  color: #FFFFFF;
  font-weight: 600;
}

/* Groups Mockup */
.group-leaderboard {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.lb-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lb-row.you {
  color: var(--primary-light);
  font-weight: 700;
}

.lb-rank {
  width: 16px;
  font-weight: 800;
}

.lb-name { flex: 1; }
.lb-count { font-weight: 600; }

/* Desktop Mockup Preview */
.desktop-mockup-wrapper {
  margin-top: 60px;
}

.desktop-frame {
  background: #0D1017;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 1px 1px var(--border-highlight);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #141822;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.browser-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 16px;
  border-radius: 6px;
  flex: 1;
  max-width: 320px;
}

.desktop-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Waitlist Card */
.waitlist-card {
  background: var(--grad-card);
  border: 1px solid var(--border-highlight);
  border-radius: 28px;
  padding: 72px 40px;
  box-shadow: 0 20px 80px -10px rgba(255, 87, 34, 0.25);
  max-width: 800px;
  margin: 0 auto;
}

.cta-form {
  margin: 32px auto 20px;
}

/* Contact & Suggestions Section */
.contact-section {
  padding: 40px 0 100px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 28px;
  padding: 56px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 720px;
  margin: 0 auto;
}

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 20px; }
}

/* Footer */
.site-footer {
  background: #07090C;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 40px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.domain-info {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.domain-info a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: #FFFFFF;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.social-links a:hover {
  color: var(--primary);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .simulator-box {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .phone-frame { width: 100%; max-width: 340px; }
  .waitlist-card { padding: 40px 20px; }
}
