/* App Page specific styles */

.app-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 1.5rem;
}

.app-hero {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 6rem) 1.5rem clamp(2rem, 4vw, 4rem);
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.app-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.75;
  margin-bottom: 1rem;
}
.app-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.app-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.app-svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.app-svg {
  width: 120px;
  height: 120px;
  color: var(--brand);
  animation: floatApp 6s ease-in-out infinite;
}

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

.download-card {
  background: var(--surface-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--brand-glass);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 600px;
  width: 100%;
  margin: 0 auto 4rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  z-index: 1;
}
.download-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 1rem;
}
.download-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

/* ── Responsive Global ── */
@media (max-width: 768px) {
  .app-hero {
    padding: 3rem 1rem 2rem;
  }
  .download-card {
    margin-bottom: 3rem;
  }
  .app-svg {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .app-hero {
    padding: 2rem 0.5rem 1.5rem;
  }
  .download-card {
    margin-bottom: 2rem;
  }
  .app-svg {
    width: 80px;
    height: 80px;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn,
  .btn-group .btn-primary,
  .btn-group .btn-secondary {
    width: 100%;
  }
}
