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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 40%, #cd853f 100%);
  text-align: center;
  padding: 5rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  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.05'%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;
}

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

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

.hero .tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

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

.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%, #333 0%, #111 70%, #000 100%);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0.9;
}

.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 10px rgba(255, 107, 53, 0.5);
}

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

.record-1 { width: 100px; height: 100px; top: 10%; left: 5%; animation: float 7s ease-in-out infinite; }
.record-2 { width: 60px; height: 60px; top: 20%; right: 10%; animation: floatReverse 5s ease-in-out infinite 1s; }
.record-3 { width: 80px; height: 80px; bottom: 15%; left: 15%; animation: float 6s ease-in-out infinite 2s; }
.record-4 { width: 50px; height: 50px; bottom: 25%; right: 5%; animation: floatReverse 8s ease-in-out infinite 0.5s; }
.record-5 { width: 40px; height: 40px; top: 60%; left: 8%; animation: float 5.5s ease-in-out infinite 1.5s; }
.record-6 { width: 70px; height: 70px; top: 5%; right: 25%; animation: floatReverse 6.5s ease-in-out infinite 3s; }

/* Early Adopter Text (replaced social proof) */
.early-adopter {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  margin: 0;
  font-style: italic;
}

/* Wave Divider */
.wave-divider {
  height: 80px;
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 40%, #cd853f 100%);
  position: relative;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

/* 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;
}

.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(3, 1fr);
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  background: white;
}

@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.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.12);
  border-color: #e0d5c8;
}

.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(139, 69, 19, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.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: 60px;
  left: 20%;
  right: 20%;
  height: 4px;
  background: linear-gradient(90deg, #8b4513, #cd853f);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .steps::before {
    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); }
}

@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; }
}
