/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  opacity: 0.6;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

.hero-mockup:hover {
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .hero-content {
    text-align: left;
    flex: 1;
    margin: 0;
  }
  
  .hero-actions {
    justify-content: flex-start;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.status-dot {
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-green {
  to {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Showcase Section */
.showcase-section {
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.showcase-row {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .showcase-row {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .showcase-row.reverse {
    flex-direction: row-reverse;
  }
  
  .showcase-content, .showcase-image {
    flex: 1;
  }
}

.showcase-content {
  max-width: 500px;
}

.showcase-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.showcase-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.showcase-image-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.showcase-image-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
}

.showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
}

.showcase-row.reverse .showcase-glow {
  background: radial-gradient(circle, var(--secondary) 0%, transparent 60%);
}

/* Features Section */
.features {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-inline: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(26, 29, 36, 0.8);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--glass-border);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  position: relative;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
  filter: blur(120px);
  z-index: -1;
  opacity: 0.5;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-radius: var(--radius-xl);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-inline: auto;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-btn {
  transition: transform 0.2s ease;
  display: inline-block;
}

.store-btn:hover {
  transform: scale(1.05);
}

/* Footer Section */
footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 4rem;
  background: var(--bg-dark);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.link-group h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.link-group a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.link-group a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
