/* Layout & Sections */

/* Background Animation */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 15% 50%, rgba(76, 29, 149, 0.4), transparent 50%),
              radial-gradient(circle at 85% 30%, rgba(255, 0, 255, 0.15), transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.2), transparent 50%);
  filter: blur(60px);
  opacity: 0.8;
}

/* Hero Section */
.hero-section {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 80px; /* Nav spacing */
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 10;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: var(--space-md);
  background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* Demo Phone/Envelope */
.demo-stage {
  margin-top: var(--space-xl);
  perspective: 1000px;
}

.demo-card {
  width: 300px;
  height: 500px;
  border-radius: 40px;
  background: rgba(0,0,0,0.8);
  border: 4px solid #333;
  position: relative;
  transform: rotateX(10deg) rotateY(-10deg);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  transition: transform 0.5s var(--ease-spring);
}

.demo-card:hover {
  transform: rotateX(0) rotateY(0);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-sm);
}

/* Social Proof (Ticker) */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  height: 80px;
  margin: 40px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02) 20%, rgba(255,255,255,0.02) 80%, transparent);
}

.ticker {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: ticker 30s linear infinite;
}

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

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  white-space: nowrap;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  background: rgba(255,255,255,0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pricing */
.pricing-split {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-split {
    flex-direction: row;
    align-items: center;
  }
}

.pricing-card {
  flex: 1;
  text-align: center;
}

.pricing-card.featured {
  transform: scale(1.05);
  border-color: var(--accent-primary);
  box-shadow: 0 0 40px rgba(123, 140, 255, 0.2);
  z-index: 2;
}

.price-tag {
  font-size: 3rem;
  font-weight: 800;
  margin: var(--space-md) 0;
  color: var(--accent-glow);
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.5rem;
}

/* Footer */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  margin-top: 60px;
  text-align: center;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 20px));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(7, 10, 18, 0.94);
  backdrop-filter: blur(14px);
  padding: 14px;
  z-index: 1600;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.consent-banner p {
  margin: 0 0 10px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
