:root {
  --black: #000000;
  --black-2: #050505;
  --white: #f7f7fb;
  --silver: #c4c6ce;
  --red: #cc0000;
  --red-bright: #ff4444;
  --red-laser: #cc0066;
  --red-soft: rgba(204, 0, 0, 0.15);
  --red-glow: rgba(204, 0, 0, 0.25);
  --gradient: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  --gradient-accent: linear-gradient(135deg, #cc0000 0%, #cc0066 100%);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 8px 32px rgba(204, 0, 0, 0.3);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: var(--gradient);
  color: var(--white);
  min-height: 100vh;
}

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

.ambient-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(204, 0, 0, 0.22), transparent 50%),
    radial-gradient(ellipse at 20% 60%, rgba(255, 68, 68, 0.16), transparent 45%),
    radial-gradient(ellipse at 60% 90%, rgba(204, 0, 102, 0.12), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 6vw;
  background: #000000;
  backdrop-filter: none;
  border-bottom: 3px solid rgba(192, 192, 192, 0.3);
  box-shadow:
    0 0 0 1px rgba(192, 192, 192, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  min-height: 30px;
}

.logo {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-left: -20px;
}

.logo img {
  height: 180px;
  width: 225px;
  display: block;
  filter: brightness(1.4) contrast(1.3) saturate(1.5);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.logo-image {
  height: 180px;
  width: 225px;
  display: block;
  object-fit: contain;
  image-rendering: crisp-edges;
}

.logo-video {
  height: 240px;
  width: 300px;
  display: block;
  opacity: 0.7;
  filter: brightness(1.3) contrast(1.2) saturate(1.5);
  background: #000;
  border-radius: 8px;
  object-fit: cover;
}

.footer-logo img {
  height: 80px;
  width: 100px;
  filter: brightness(1.3) contrast(1.2) saturate(1.4);
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.2px;
  transition: font-size 0.3s ease;
  color: var(--white);
  margin-left: -10%;
}

.nav-links a {
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-links a.active,
.nav-links a:hover {
  opacity: 1;
  color: var(--red);
  font-weight: 600;
  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.8),
    0 0 20px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mode-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: inherit;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn {
  border-radius: 999px;
  border: none;
  padding: 12px 22px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 68, 68, 0.45);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary[data-open-modal] {
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: inherit;
}

main {
  padding: 220px 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 0;
  align-items: center;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 3.5vw + 1.4rem, 4.4rem);
  margin-bottom: 20px;
}

.subhead {
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-proof {
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: var(--silver);
}

.metric {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-right: 12px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 4%;
  align-items: center;
  position: relative;
}

.hero-shot {
  width: 100%;
  max-width: 400px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  transform: translateY(0);
}

.hero-shot-grid .hero-shot:nth-child(1) {
  transform: translate(16px, 32px) scale(1.05);
  z-index: 1;
}

.hero-shot-grid .hero-shot:nth-child(2) {
  transform: translate(0, -20px) scale(1.05);
  z-index: 2;
  box-shadow: 0 18px 50px rgba(255, 0, 0, 0.5), 0 0 50px rgba(255, 0, 0, 0.45);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 18px 50px rgba(255, 0, 0, 0.5), 0 0 50px rgba(255, 0, 0, 0.45);
  }
  50% {
    box-shadow: 0 22px 65px rgba(255, 0, 0, 0.7), 0 0 75px rgba(255, 0, 0, 0.6);
  }
}

.hero-shot-grid .hero-shot:nth-child(3) {
  transform: translate(-16px, 32px) scale(1.05);
  z-index: 1;
}

/* ===== CINEMATIC HERO SECTION ===== */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

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

.light-streak {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.9) 20%, rgba(255, 0, 0, 1) 50%, rgba(255, 0, 0, 0.6) 80%, transparent 100%);
  filter: blur(0.5px);
  opacity: 0;
  animation: streak-move 3s ease-out infinite;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.4);
}

.streak-1 { width: 80%; top: 8%; left: -80%; height: 4px; animation-delay: 0s; }
.streak-2 { width: 70%; top: 14%; left: -70%; height: 3px; animation-delay: 0.3s; }
.streak-3 { width: 90%; top: 20%; left: -90%; height: 5px; animation-delay: 0.6s; }
.streak-4 { width: 60%; top: 26%; left: -60%; height: 2px; animation-delay: 0.9s; }
.streak-5 { width: 75%; top: 32%; left: -75%; height: 3px; animation-delay: 1.2s; }

@keyframes streak-move {
  0% { transform: translateX(0) scaleX(0.5); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(250vw) scaleX(1); opacity: 0; }
}

.particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 0, 0, 0.35), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 0, 0, 0.25), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 80% 50%, rgba(255, 0, 0, 0.3), transparent),
    radial-gradient(1px 1px at 10% 80%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(2px 2px at 70% 85%, rgba(255, 0, 0, 0.25), transparent),
    radial-gradient(1px 1px at 90% 15%, rgba(255, 0, 0, 0.35), transparent),
    radial-gradient(1px 1px at 35% 55%, rgba(255, 255, 255, 0.15), transparent);
  background-size: 200% 200%;
  animation: particle-drift 20s linear infinite;
}

@keyframes particle-drift {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

.hero-centered {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo-animated {
  position: relative;
  margin-bottom: 50px;
  animation: logo-entrance 1.5s ease-out forwards;
  width: 100%;
  max-width: 800px;
}

@keyframes logo-entrance {
  0% { transform: translateY(-80px) scale(0.7); opacity: 0; }
  60% { transform: translateY(15px) scale(1.05); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.hero-logo-animated .logo-main {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 0;
  border: none;
  background: transparent;
  filter: drop-shadow(0 0 60px rgba(255, 0, 0, 1)) drop-shadow(0 0 120px rgba(255, 0, 0, 0.6));
  animation: logo-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes logo-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 80px rgba(255, 0, 0, 0.4)); }
  50% { filter: drop-shadow(0 0 60px rgba(255, 0, 0, 1)) drop-shadow(0 0 120px rgba(255, 0, 0, 0.6)); }
}

.logo-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.6) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  animation: glow-breathe 2.5s ease-in-out infinite;
}

.hero-bg-cascade {
  position: fixed;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 170%;
  max-width: 1600px;
  height: auto;
  aspect-ratio: 16/9;
  pointer-events: none;
  z-index: -2;
  opacity: 0.25;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.8) contrast(1.2) saturate(1.3);
  transition: transform 0.05s ease-out, opacity 0.3s ease-out;
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

.logo-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.2), transparent);
  transform: translate(-50%, -50%);
  filter: blur(3px);
  opacity: 0;
  animation: trail-flash 1.5s ease-out forwards;
}

@keyframes trail-flash {
  0% { width: 0; opacity: 1; }
  30% { width: 150%; opacity: 1; }
  100% { width: 150%; opacity: 0; }
}

.hero-tagline {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 5.5vw + 1.2rem, 5.5rem);
  letter-spacing: 6px;
  color: var(--white);
  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.5),
    0 0 30px rgba(255, 0, 0, 0.3),
    0 0 50px rgba(255, 0, 0, 0.2);
  margin-bottom: 24px;
  animation: tagline-fade 1s ease-out 0.5s forwards;
  opacity: 0;
}

@keyframes tagline-fade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
  animation: tagline-fade 1s ease-out 0.8s forwards;
  opacity: 0;
}

.hero-buttons {
  animation: tagline-fade 1s ease-out 1.1s forwards;
  opacity: 0;
  justify-content: center;
}

.btn-neon {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.site-header.scrolled {
  transform: translateY(-8px);
  padding: 1px 6vw;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  min-height: 25px;
}

.site-header.scrolled .nav-links { font-size: 12px; }
.site-header.scrolled .logo img { height: 120px; width: 150px; }
.site-header.scrolled .logo-image { height: 120px; width: 150px; }
.site-header.scrolled .logo-video { height: 120px; width: 150px; }
.site-header.scrolled .btn { padding: 6px 12px; font-size: 10px; }
.site-header.scrolled .mode-toggle { padding: 6px 10px; font-size: 10px; }

.btn-primary.btn-neon:hover {
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.8),
    0 0 30px rgba(255, 0, 0, 0.6),
    0 0 45px rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-outline.btn-neon:hover {
  border-color: rgba(255, 0, 0, 0.8);
  color: rgba(255, 0, 0, 0.8);
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.8),
    0 0 30px rgba(255, 0, 0, 0.6),
    0 0 45px rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
}

.hero-cinematic .hero-visual {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

/* ===== END CINEMATIC HERO ===== */

.phone-stack { display: grid; gap: 18px; }

.phone-card {
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.phone-card.alt { border-color: rgba(255, 0, 0, 0.4); }
.phone-header { font-weight: 600; margin-bottom: 12px; }

.phone-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.pill {
  background: var(--red-soft);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.chart {
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(255, 0, 0, 0.55), rgba(255, 255, 255, 0.08));
  margin: 12px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 3.0vw + 1.2rem, 3.4rem);
  margin-bottom: 12px;
  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.5),
    0 0 30px rgba(255, 0, 0, 0.3),
    0 0 50px rgba(255, 0, 0, 0.2);
}

.section-title p { color: var(--silver); }

.value-grid,
.proof-grid,
.faq-grid,
.about-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card,
.proof-card,
.faq-item,
.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover,
.proof-card:hover,
.faq-item:hover,
.about-card:hover {
  border: 1px solid rgba(255, 0, 0, 0.8);
  box-shadow:
    0 0 0 1px rgba(255, 0, 0, 0.8),
    0 0 15px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4),
    0 0 45px rgba(255, 0, 0, 0.2),
    var(--shadow);
  transform: translateY(-2px);
}

.value-card h3,
.proof-card h3,
.about-card h2 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 0;
}

.how-it-works { padding: 60px 0; }

.steps {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
}

.signup-strip {
  margin: 60px 0;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255, 0, 0, 0.28), rgba(255, 255, 255, 0.03));
}

.page-hero {
  padding: 70px 0 40px;
  display: grid;
  gap: 20px;
}

.page-hero h1 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 3.0vw + 1.2rem, 3.4rem);
  margin-bottom: 20px;
}

.value-ticker {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.12), rgba(0, 0, 0, 0.7));
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 0;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(192, 192, 192, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.value-ticker .ticker-track { animation: ticker-scroll-value 40s linear infinite; }

.value-ticker .ticker-item {
  min-width: 380px;
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.value-ticker .ticker-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 0, 0, 0.5);
}

.value-ticker .ticker-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 255, 255, 0.03));
}

.value-ticker .ticker-content h4 { font-size: 1.1rem; margin-bottom: 8px; }
.value-ticker .ticker-content p { font-size: 14px; line-height: 1.4; }

@keyframes ticker-scroll-value {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feature-ticker {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(0, 0, 0, 0.8));
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px 0;
  margin: 40px 6vw;
  overflow: hidden;
  position: relative;
}

.ticker-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  width: fit-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 30px;
  min-width: 350px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.ticker-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 0, 0, 0.6);
}

.ticker-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.5));
}

.ticker-content h4 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: var(--white);
}

.ticker-content p {
  margin: 0;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.4;
}

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

.ticker-wrapper:hover .ticker-track { animation-play-state: paused; }

/* ===== FEATURE SLIDESHOW ===== */

.feature-slideshow {
  padding: 80px 0;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(0, 0, 0, 0.8));
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(204, 0, 0, 0.4),
    0 0 60px rgba(204, 0, 0, 0.2),
    inset 0 0 50px rgba(255, 255, 255, 0.02);
  /* NO padding here — padding breaks overflow:hidden clipping.
     Spacing lives on each .slide instead. */
  padding: 0;
}

/* The track perfectly matches the container width; overflow children spill out. */
.slides-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide perfectly matches the track width (100% of container) */
.slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 45px;
  min-height: 450px;
  box-sizing: border-box;
}

.feature-mockup {
  display: flex;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.feature-shot {
  width: min(400px, 100%);
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.4),
    0 0 70px rgba(255, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.feature-shot:hover {
  transform: scale(1.05);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.5),
    0 0 90px rgba(255, 0, 0, 0.3);
}

/* Feature copy — NO default translateY, let it sit naturally */
.feature-copy {
  padding: 0;
  margin: 0;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.feature-copy h2 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw + 0.8rem, 2.6rem);
  letter-spacing: 0.5px;
  color: var(--white);
  text-shadow:
    0 0 8px rgba(255, 0, 0, 0.4),
    0 0 20px rgba(255, 0, 0, 0.2),
    0 0 35px rgba(255, 0, 0, 0.1);
  margin: 0 0 20px 0;
  line-height: 1.15;
}

.feature-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--silver);
  font-weight: 300;
}

/* Slideshow nav controls */
.slideshow-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slide-btn:hover {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 0, 0, 0.8);
  color: var(--white);
  transform: scale(1.1);
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.8),
    0 0 30px rgba(255, 0, 0, 0.6),
    0 0 45px rgba(255, 0, 0, 0.4);
}

.slide-btn:active { transform: scale(0.95); }

.slide-indicators {
  display: flex;
  gap: 14px;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 28px;
  backdrop-filter: blur(10px);
}

.indicator {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--red);
  transition: all 0.4s ease;
}

.indicator.active {
  background: var(--red);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.indicator.active::before { width: 18px; height: 18px; opacity: 0.3; }
.indicator:hover { background: rgba(255, 255, 255, 0.6); transform: scale(1.2); }

/* Mobile slideshow */
@media (max-width: 768px) {
  .slideshow-container {
    max-width: 100%;
    border-radius: 16px;
    padding: 0;
  }

  .slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 20px;
    min-height: auto;
    box-sizing: border-box;
    text-align: center;
  }

  .feature-mockup {
    order: 1;
    animation: float 6s ease-in-out infinite;
  }

  .feature-copy {
    order: 2;
    transform: none !important;
    position: static !important;
    top: auto !important;
    margin: 0 !important;
    animation: none !important;
    text-align: center;
    padding: 0 !important;
  }

  .feature-copy h2 {
    font-size: 24px !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    line-height: 1.2;
    text-align: center;
  }

  .feature-copy p {
    font-size: 16px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6;
    color: var(--silver);
    text-align: center;
  }

  .feature-shot { width: min(280px, 85%); }

  .slideshow-controls { gap: 20px; padding: 15px; }
  .slide-btn { width: 50px; height: 50px; font-size: 22px; }
  .slide-indicators { gap: 12px; padding: 8px 16px; }
  .indicator { width: 12px; height: 12px; }
  .indicator.active::before { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .slide {
    padding: 24px 15px;
    gap: 20px;
  }

  .feature-copy h2 {
    font-size: 20px !important;
    margin: 0 0 10px 0 !important;
  }

  .feature-copy p { font-size: 14px; }
  .feature-shot { width: min(240px, 80%); }
  .slideshow-controls { gap: 15px; padding: 12px; }
  .slide-btn { width: 45px; height: 45px; font-size: 20px; }
}

/* ===== END FEATURE SLIDESHOW ===== */

.feature-overview {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  margin: 40px 6vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-overview .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.feature-overview .section-title h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--white);
}

.feature-overview .section-title p {
  font-size: 18px;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 0, 0, 0.8);
  box-shadow:
    0 0 0 1px rgba(255, 0, 0, 0.8),
    0 0 15px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4),
    0 0 45px rgba(255, 0, 0, 0.2),
    var(--shadow);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.5));
  animation: feature-icon-float 3s ease-in-out infinite;
}

@keyframes feature-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.feature-info h3 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: var(--white);
}

.feature-info p {
  margin: 0;
  font-size: 16px;
  color: var(--silver);
  line-height: 1.5;
}

.mockup-screen {
  width: 100%;
  max-width: 260px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 15, 0.6);
  display: grid;
  gap: 10px;
}

.mockup-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-bar.short { width: 60%; }

.mockup-chip {
  background: var(--red-soft);
  color: var(--red);
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 12px;
  width: fit-content;
}

.mockup-stars { color: var(--red); letter-spacing: 3px; }

.mockup-chart {
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255, 0, 0, 0.5), rgba(255, 255, 255, 0.1));
}

.about-grid { padding: 30px 0 40px; }

.podcast-section { padding: 60px 0; }

.podcast-player {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.podcast-cover-theatre {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.podcast-cover-theatre-img {
  width: 380px;
  height: 320px;
  border-radius: 16px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(196, 198, 206, 0.18),
    0 0 18px rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(196, 198, 206, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.25));
}

.podcast-cover-theatre-img:hover {
  transform: scale(1.02);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(196, 198, 206, 0.24),
    0 0 24px rgba(255, 0, 0, 0.16);
  filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.22));
}

.podcast-timestamps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.podcast-timestamps .timestamp {
  appearance: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 198, 206, 0.22);
  color: var(--white);
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.podcast-timestamps .timestamp:hover {
  background: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.14);
  transform: translateY(-1px);
}

.podcast-timestamps .timestamp:active { transform: translateY(0); }

.podcast-info h3 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--white);
}

.podcast-meta { color: var(--silver); font-size: 14px; margin-bottom: 20px; }

.audio-player {
  width: 100%;
  margin: 20px 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.9);
}

.audio-player::-webkit-media-controls-panel {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(60, 60, 60, 0.9));
  border-radius: 8px;
  border: 1px solid rgba(196, 198, 206, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.audio-player::-webkit-media-controls-timeline {
  background: #1a1a1a !important;
  border-radius: 2px !important;
  border: none !important;
  height: 4px !important;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
}

.custom-audio-player {
  width: 100%;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(60, 60, 60, 0.9));
  border-radius: 8px;
  border: 1px solid rgba(196, 198, 206, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
  padding: 15px;
  margin: 20px 0;
}

.player-controls { display: flex; align-items: center; gap: 15px; }

.play-pause-btn,
.mute-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.play-pause-btn:hover,
.mute-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  filter: saturate(1.2) brightness(1.3) hue-rotate(340deg);
}

.progress-container { flex: 1; display: flex; align-items: center; gap: 10px; }

.progress-bar {
  flex: 1;
  height: 4px;
  background: #1a1a1a;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress {
  height: 100%;
  background: #ff0000;
  border-radius: 2px;
  width: 0%;
  position: relative;
}

.progress-thumb {
  position: absolute;
  right: -6px;
  top: -4px;
  width: 12px;
  height: 12px;
  background: #ff0000;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.2s ease;
}

.progress-bar:hover .progress-thumb { opacity: 1; }

.time-display {
  color: white;
  font-size: 12px;
  font-family: "Sora", sans-serif;
  min-width: 80px;
}

.volume-container { display: flex; align-items: center; }

.volume-bar {
  width: 60px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.volume-progress {
  height: 100%;
  background: #ff0000;
  border-radius: 2px;
  width: 70%;
  position: relative;
}

.volume-thumb {
  position: absolute;
  right: -6px;
  top: -4px;
  width: 12px;
  height: 12px;
  background: #ff0000;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.2s ease;
}

.volume-bar:hover .volume-thumb { opacity: 1; }
.audio-player { display: none; }

.podcast-description { color: var(--silver); line-height: 1.6; font-size: 18px; }

.faq-section { padding-bottom: 40px; }

.faq-item h4 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 0;
  color: rgba(255, 0, 0, 0.8);
}

.contact-grid {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.waitlist-form { flex: 1; min-width: 600px; }
.contact-card { width: 300px; flex-shrink: 0; }

@media (max-width: 960px) {
  .contact-grid { flex-direction: column; }
  .waitlist-form { min-width: 100%; }
  .contact-card { width: 100%; }
  .waitlist-name-row { grid-template-columns: 1fr; }
}

.contact-card,
.contact-form,
.waitlist-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-form,
.waitlist-form { display: grid; gap: 14px; }
.waitlist-form.embedded { max-width: 520px; margin: 0 auto; }
.waitlist-name-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.waitlist-organizer-only.is-hidden {
  display: none;
}

label { display: grid; gap: 6px; font-size: 14px; }

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 15, 0.6);
  color: inherit;
}

.checkbox { grid-auto-flow: column; align-items: center; justify-content: start; gap: 10px; }

.form-success { display: none; color: var(--red); font-size: 13px; margin: 0; }
.form-success.visible { display: block; }

.social-links { display: flex; flex-direction: column; gap: 20px; margin-top: 14px; }

.social-logo { display: inline-block; transition: transform 0.3s ease, opacity 0.3s ease; }

.social-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-logo:hover img { opacity: 1; transform: scale(1.1); }

.waitlist-section { padding-bottom: 40px; }

.site-footer {
  margin-top: 40px;
  padding: 30px 6vw 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links { display: flex; gap: 16px; align-items: center; }

.cta-float { position: fixed; bottom: 20px; right: 20px; z-index: 12; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.modal.active { opacity: 1; pointer-events: auto; }

.modal-card {
  background: var(--black-2);
  border-radius: var(--radius);
  padding: 30px;
  width: min(420px, 92vw);
  box-shadow: var(--shadow);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 22px;
  cursor: pointer;
}

.center-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.center-actions .btn-outline:hover {
  border-color: rgba(255, 0, 0, 0.8);
  color: rgba(255, 0, 0, 0.8);
  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.9),
    0 0 40px rgba(255, 0, 0, 0.7),
    0 0 60px rgba(255, 0, 0, 0.5);
  transform: translateY(-3px) scale(1.05);
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .site-header { flex-direction: column; gap: 16px; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .header-actions { flex-wrap: wrap; justify-content: center; }
}

@media (min-width: 1200px) {
  .hero-shot-grid { max-width: 1200px; margin: 0 auto; }
  .hero-shot { max-width: 450px; }
}

@media (max-width: 1199px) and (min-width: 1024px) {
  .hero-shot { max-width: 380px; }
  .value-ticker .ticker-item { min-width: 340px; }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .hero-shot-grid { grid-template-columns: repeat(2, 1fr); gap: 2%; }
  .hero-shot { max-width: 320px; }
  .hero-shot-grid .hero-shot:nth-child(3) { grid-column: 1 / -1; justify-self: center; max-width: 400px; }
  .nav-links { font-size: 22px; gap: 32px; margin-left: 0; justify-content: center; }
  .value-ticker .ticker-item { min-width: 320px; padding: 12px 20px; }
}

@media (max-width: 767px) and (min-width: 600px) {
  .hero-shot-grid { grid-template-columns: 1fr; gap: 20px; max-width: 400px; margin: 0 auto; padding: 0 20px; }
  .hero-shot { max-width: 100%; width: 100%; height: auto; object-fit: contain; }
  .hero-shot-grid .hero-shot { transform: none !important; justify-self: center; position: static; }
  .nav-links { font-size: 20px; gap: 24px; margin-left: 0; justify-content: center; }
  .value-ticker .ticker-item { min-width: 280px; padding: 10px 16px; }
  .value-ticker .ticker-icon { font-size: 24px; width: 48px; height: 48px; }
  .value-ticker .ticker-content h4 { font-size: 0.9rem; }
  .value-ticker .ticker-content p { font-size: 12px; }
}

@media (max-width: 599px) and (min-width: 480px) {
  .nav-links { font-size: 18px; gap: 20px; margin-left: 0; justify-content: center; letter-spacing: 0.8px; }
  .site-header { padding: 1px 4vw; }
  main { padding: 200px 4vw 60px; }
  .hero-shot-grid { grid-template-columns: 1fr; gap: 16px; max-width: 350px; margin: 0 auto; padding: 0 15px; }
  .hero-shot { max-width: 100%; width: 100%; height: auto; object-fit: contain; }
  .hero-shot-grid .hero-shot { transform: none !important; justify-self: center; position: static; }
  .value-ticker { margin-top: 60px; }
  .value-ticker .ticker-item { min-width: 260px; padding: 8px 12px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .signup-strip { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 479px) {
  .site-header { padding: 8px 3vw; min-height: 25px; flex-direction: column; gap: 10px; }
  .nav-links { font-size: 14px; gap: 12px; margin-left: 0; justify-content: center; letter-spacing: 0.5px; flex-wrap: wrap; text-align: center; }
  main { padding: 180px 3vw 40px; }
  .hero-shot-grid { grid-template-columns: 1fr; gap: 12px; max-width: 300px; margin: 0 auto; padding: 0 10px; }
  .hero-shot { max-width: 100%; width: 100%; height: auto; object-fit: contain; }
  .hero-shot-grid .hero-shot { transform: none !important; justify-self: center; position: static; }
  .hero h1 { font-size: 2rem; }
  .hero-description { font-size: 16px; }
  .value-ticker { margin-top: 40px; padding: 16px 0; }
  .value-ticker .ticker-item { min-width: 240px; padding: 6px 10px; flex-direction: column; text-align: center; gap: 8px; }
  .value-ticker .ticker-icon { font-size: 20px; width: 40px; height: 40px; }
  .value-ticker .ticker-content h4 { font-size: 0.85rem; }
  .value-ticker .ticker-content p { font-size: 11px; }
  .section-title h2 { font-size: 1.5rem; }
  .section-title p { font-size: 14px; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .step-number { font-size: 2rem; }
  .step h3 { font-size: 1.2rem; }
  .step p { font-size: 14px; }
  .faq-grid { grid-template-columns: 1fr; gap: 16px; }
  .signup-strip { flex-direction: column; text-align: center; gap: 12px; padding: 20px; }
  .btn { padding: 10px 16px; font-size: 11px; }
  .site-footer { padding: 20px 3vw 40px; }
  .footer-links { flex-direction: column; gap: 8px; font-size: 12px; }

  .feature-overview { margin: 30px 4vw; padding: 60px 0; border-radius: 18px; }
  .feature-overview .section-title { margin-bottom: 40px; }
  .feature-overview .section-title h2 { font-size: 28px; }
  .feature-overview .section-title p { font-size: 16px; }
  .feature-list { grid-template-columns: 1fr; gap: 20px; padding: 0 15px; }
  .feature-item { padding: 20px; gap: 15px; }
  .feature-icon { font-size: 28px; width: 50px; height: 50px; }
  .feature-info h3 { font-size: 18px; }
  .feature-info p { font-size: 14px; }
}

@media (max-width: 320px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-description { font-size: 14px; }
  .value-ticker .ticker-item { min-width: 200px; }
  .value-ticker .ticker-icon { font-size: 18px; width: 36px; height: 36px; }
  .btn { padding: 8px 12px; font-size: 10px; }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-shot, .feature-shot { image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
}

@media (hover: none) and (pointer: coarse) {
  .ticker-wrapper:hover .ticker-track { animation-play-state: running; }
  .btn:hover { transform: none; }
  .hero-shot:hover { transform: none; }
}

@media (prefers-color-scheme: dark) {
  :root { --black: #000000; --white: #f7f7fb; --silver: #c4c6ce; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .ticker-track { animation: none; }
  .hero-shot-grid .hero-shot { animation: none; }
}

@media (max-width: 600px) {
  .logo img { height: 120px; width: 150px; }
  .logo-image { height: 120px; width: 150px; }
  .logo-video { height: 120px; width: 150px; }
  .podcast-cover-theatre-img { width: 220px; height: 220px; }
  .footer-logo img { height: 60px; width: 75px; }
  .hero-shot-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-shot-grid .hero-shot { transform: none; justify-self: center; }
}

/* Mobile background logo fixes */
@media (max-width: 767px) {
  .hero-bg-cascade {
    width: 100% !important;
    max-width: 100vw !important;
    aspect-ratio: 16/9 !important;
    background-size: contain !important;
    background-position: center !important;
  }
}

@media (max-width: 767px) and (min-width: 600px) {
  .hero-bg-cascade {
    width: 100% !important;
    max-width: 100vw !important;
    aspect-ratio: 16/9 !important;
    background-size: contain !important;
  }
}

@media (max-width: 599px) and (min-width: 480px) {
  .hero-bg-cascade {
    width: 100% !important;
    max-width: 100vw !important;
    aspect-ratio: 16/9 !important;
    background-size: contain !important;
  }
}

@media (max-width: 479px) {
  .hero-bg-cascade {
    width: 100% !important;
    max-width: 100vw !important;
    aspect-ratio: 16/9 !important;
    background-size: contain !important;
  }
}
