/* Landing Page Styles - CSS-only animations for SEO-friendly server rendering */

.landing-page {
  margin: -1rem;
  padding: 0;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  text-align: center;
  /* Extra top padding to account for fixed transparent header */
  padding: 8rem 2rem 10rem;
  position: relative;
  overflow: hidden;
  /* Fallback gradient if image fails to load */
  background: linear-gradient(135deg, #2a1206 0%, #3d1a0a 100%);
}

/* Smooth wave curve at bottom of hero - matches features section background */
.hero .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 4;
}

@media (max-width: 768px) {
  .hero {
    padding: 7rem 1.5rem 7rem;
  }
  .hero .hero-wave {
    height: 40px;
  }
}

/* Hero background image wrapper */
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  object-fit: cover;
  object-position: center center;
  filter: blur(1px);
}

/* Dark warm overlay gradient */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 18, 6, 0.75) 0%,
    rgba(42, 18, 6, 0.85) 100%
  );
  z-index: 1;
}

/* Vignette effect */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Subtle pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.hero h1 {
  font-size: 1.75rem;
  margin: 0 0 1.25rem;
  color: white;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 3;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 20px rgba(0, 0, 0, 0.6),
    0 8px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
}

.hero .tagline {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 3;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 3;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #8b4513;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cta-primary svg {
  animation: wiggle 0.5s ease-in-out infinite;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Floating Records - CSS-only animations */
.floating-record {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #444 0%, #222 70%, #111 100%);
  box-shadow:
    inset 0 0 15px rgba(0, 0, 0, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.08);
  z-index: 3;
  opacity: 1;
}

.floating-record::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.7);
}

.floating-record::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 10%;
  border-radius: 50%;
  background: #111;
}

/* Rotating records (slow spin) */
.record-1 { width: 100px; height: 100px; top: 10%; left: 5%; animation: floatAndSpin 6s ease-in-out infinite; }
.record-3 { width: 80px; height: 80px; bottom: 15%; left: 15%; animation: floatAndSpinReverse 5s ease-in-out infinite 1.5s; }
.record-6 { width: 70px; height: 70px; top: 5%; right: 25%; animation: floatAndSpin 4.5s ease-in-out infinite 2.5s; }

/* Bobbing records (gentle float only) */
.record-2 { width: 60px; height: 60px; top: 20%; right: 10%; animation: bob 3.5s ease-in-out infinite 0.5s; }
.record-4 { width: 50px; height: 50px; bottom: 25%; right: 5%; animation: bob 4s ease-in-out infinite 1s; }
.record-5 { width: 40px; height: 40px; top: 60%; left: 8%; animation: bob 3s ease-in-out infinite 2s; }

/* Early Adopter Text - Two-line treatment */
.early-adopter {
  position: relative;
  z-index: 3;
  text-align: center;
}

.early-adopter-primary {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.early-adopter-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  margin: 0;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* App Preview Placeholder - Stylized jukebox slot illustration */
.app-preview {
  display: none;
  position: relative;
  z-index: 3;
  max-width: 400px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, #2d1810 0%, #1a0f08 100%);
  border-radius: 16px;
  border: 3px solid #4a2c17;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .app-preview {
    display: block;
  }
}

.app-preview-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.app-preview-dot:nth-child(1) { background: #ff6b6b; }
.app-preview-dot:nth-child(2) { background: #ffd93d; }
.app-preview-dot:nth-child(3) { background: #6bcb77; }

.app-preview-title {
  margin-left: auto;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stylized record slots */
.app-preview-slots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-preview-slot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-preview-slot-code {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #daa520;
  background: rgba(218, 165, 32, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
}

.app-preview-slot-record {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #333 0%, #111 70%, #000 100%);
  position: relative;
  flex-shrink: 0;
}

.app-preview-slot-record::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.app-preview-slot-record::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #111;
}

.app-preview-slot-info {
  flex: 1;
  min-width: 0;
}

.app-preview-slot-title {
  height: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 4px;
  margin-bottom: 4px;
}

.app-preview-slot:nth-child(1) .app-preview-slot-title { width: 70%; }
.app-preview-slot:nth-child(2) .app-preview-slot-title { width: 85%; }
.app-preview-slot:nth-child(3) .app-preview-slot-title { width: 60%; }
.app-preview-slot:nth-child(4) .app-preview-slot-title { width: 75%; }

.app-preview-slot-artist {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  width: 50%;
}

.app-preview-slot:nth-child(2) .app-preview-slot-artist { width: 40%; }
.app-preview-slot:nth-child(3) .app-preview-slot-artist { width: 55%; }
.app-preview-slot:nth-child(4) .app-preview-slot-artist { width: 45%; }

/* Vary the label colors */
.app-preview-slot:nth-child(1) .app-preview-slot-record::before { background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); }
.app-preview-slot:nth-child(2) .app-preview-slot-record::before { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); }
.app-preview-slot:nth-child(3) .app-preview-slot-record::before { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); }
.app-preview-slot:nth-child(4) .app-preview-slot-record::before { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); }

/* Wave Divider - DEPRECATED, now using hero-wave inside hero section */
/* Keeping minimal styles in case any old markup remains */
.wave-divider {
  display: none;
}

/* Launch Banner - Inline promo section */
.launch-banner {
  background: linear-gradient(135deg, #1a0f08 0%, #3d2314 50%, #1a0f08 100%);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 3px solid #daa520;
  border-bottom: 3px solid #daa520;
  position: relative;
  overflow: hidden;
  animation: glowPulse 2.5s ease-in-out infinite;
}

.launch-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.launch-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a0f08;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.launch-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .launch-title {
    font-size: 1.75rem;
  }
}

.launch-desc {
  color: #ffe4b5;
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
}

.launch-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.launch-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffe4b5;
  font-size: 0.85rem;
  background: rgba(218, 165, 32, 0.15);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.launch-feature svg {
  color: #ffd700;
}

.launch-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a0f08;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.launch-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
}

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

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
}

.feature-card {
  background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 24px;
  border: 2px solid #efe8e0;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f0a500;
  color: #1a0d03;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background:
    linear-gradient(135deg, #faf8f5 0%, #fff 100%) padding-box,
    linear-gradient(135deg, #daa520 0%, #cd853f 50%, #8b4513 100%) border-box;
  box-shadow:
    0 20px 40px rgba(139, 69, 19, 0.15),
    0 0 20px rgba(218, 165, 32, 0.2),
    0 0 40px rgba(218, 165, 32, 0.1);
}

.feature-card:hover .icon {
  animation: bounce 0.6s ease-in-out;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.25);
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-card p {
  color: #666;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(180deg, #fdfcfa 0%, #f5f0e8 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.how-it-works h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0 0 1rem;
  font-weight: 800;
}

.how-it-works h2 span {
  color: #8b4513;
}

.how-it-works .subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #cd853f 0px,
    #cd853f 8px,
    transparent 8px,
    transparent 16px
  );
  border-radius: 2px;
}

/* Arrow indicators between steps */
.steps::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(66.67% - 80px);
  height: 12px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6L8 6M8 6L5 3M8 6L5 9' stroke='%23cd853f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat 25% center,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6L8 6M8 6L5 3M8 6L5 9' stroke='%23cd853f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat 75% center;
}

@media (max-width: 768px) {
  .steps::before,
  .steps::after {
    display: none;
  }
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b4513;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
  border: 4px solid #8b4513;
  position: relative;
}

.step-icon::after {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
}

.step h3 {
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.step p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fun Fact Section */
.fun-fact {
  background: white;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #eee;
}

.fun-fact .emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

.fun-fact p {
  color: #666;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.fun-fact strong {
  color: #8b4513;
}

/* Bottom CTA Section */
.bottom-cta {
  background: linear-gradient(135deg, #5d4037 0%, #6d4c41 50%, #8b4513 100%);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.bottom-cta h2 {
  font-size: 2.25rem;
  color: white;
  margin: 0 0 0.75rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .bottom-cta h2 {
    font-size: 2.75rem;
  }
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.bottom-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.bottom-cta .cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.bottom-cta .cta-button svg {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-5deg); }
}

/* Floating with slow rotation (one full spin every 5-6s) */
@keyframes floatAndSpin {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(180deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes floatAndSpinReverse {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-180deg); }
  100% { transform: translateY(0px) rotate(-360deg); }
}

/* Gentle bobbing motion */
@keyframes bob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* Pulsing glow for launch banner */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.3),
                0 0 20px rgba(218, 165, 32, 0.2),
                inset 0 0 20px rgba(218, 165, 32, 0.05);
  }
  50% {
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5),
                0 0 40px rgba(218, 165, 32, 0.3),
                0 0 60px rgba(218, 165, 32, 0.1),
                inset 0 0 30px rgba(218, 165, 32, 0.1);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .floating-record,
  .cta-primary svg,
  .fun-fact .emoji,
  .bottom-cta .cta-button svg,
  .launch-banner {
    animation: none !important;
  }

  .feature-card,
  .cta-primary,
  .cta-secondary,
  .launch-cta,
  .bottom-cta .cta-button {
    transition: none !important;
  }
}
