/* Aura Boost — Dark Theme Only */

:root {
  --bg-primary: #0D1117;
  --bg-card: #161B22;
  --bg-selected: #1C2128;
  --accent: #8B5CF6;
  --accent-light: #A78BFA;
  --text-primary: #FFFFFF;
  --text-body: #C9D1D9;
  --text-secondary: #8B949E;
  --border: #1C2128;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
}

h1, h2, h3 {
  color: var(--text-primary);
  font-weight: 600;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-light);
}

/* ─── Header ─── */

header {
  text-align: center;
  padding: 3rem 1rem 1.5rem;
}

.app-icon-small {
  width: 96px;
  height: 96px;
  border-radius: 22%;
  margin-bottom: 1rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ─── Hero / Screenshot Showcase ─── */

.hero {
  padding: 3rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-text {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-text p {
  color: var(--text-body);
}

/* Screenshot showcase — 3 phones in a row */
.screenshot-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  flex-wrap: wrap;
}

.screenshot-showcase img {
  width: 250px;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
  transition: transform 0.2s ease;
}

.screenshot-showcase img:hover {
  transform: translateY(-4px);
}

/* Download / Coming Soon */
.download-buttons {
  margin-top: 2rem;
}

.download-buttons a img {
  width: 150px;
  opacity: 0.6;
}

.coming-soon-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ─── Features Grid ─── */

.features {
  background: var(--bg-card);
  padding: 3rem 1rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 2rem auto 0;
}

.feature {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--bg-selected);
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ─── Footer ─── */

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

footer p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

footer nav a {
  color: var(--accent);
  margin: 0 0.5rem;
}

footer nav a:hover {
  color: var(--accent-light);
}

/* ─── Content Pages (Privacy, Terms, Support) ─── */

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.content-wrapper h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.last-updated {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
}

.content-wrapper h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-wrapper p,
.content-wrapper li {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.content-wrapper ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-wrapper strong {
  color: var(--text-primary);
}

.contact-email {
  color: var(--accent);
  font-weight: 500;
}

.back-home {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.back-home:hover {
  background: var(--accent-light);
  color: white;
}

/* ─── Support / FAQ ─── */

.faq-section {
  margin-top: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--accent-light);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-body);
  font-size: 0.95rem;
}

/* ─── Responsive ─── */

@media (max-width: 700px) {
  .screenshot-showcase img {
    width: 180px;
  }

  header h1 {
    font-size: 1.6rem;
  }

  .hero-text h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .screenshot-showcase {
    gap: 0.75rem;
  }

  .screenshot-showcase img {
    width: 140px;
  }
}
