/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:  #1a2744;
  --gold:  #c9a84c;
  --bg:    #f9f7f4;
  --card:  #ffffff;
  --text:  #2c2c2c;
  --muted: #666666;
  --radius: 12px;
}

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

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ───────────────────────────────────────────────── */
header {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.brand {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tagline {
  margin-top: 0.4rem;
  color: var(--gold);
  font-size: 1rem;
}

/* ── Sections ─────────────────────────────────────────────── */
section {
  padding: 3rem 1.5rem;
}

section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* ── App Card ─────────────────────────────────────────────── */
.app-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  flex-shrink: 0;
  object-fit: cover;
}

.app-info h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.app-info p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ── Store Badges ─────────────────────────────────────────── */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.badge:hover { opacity: 0.85; }
.badge.coming-soon { opacity: 0.6; cursor: default; }

.badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.badge-text small { font-size: 0.65rem; font-weight: 400; opacity: 0.8; }

.privacy-link {
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
}
.privacy-link:hover { text-decoration: underline; }

/* ── Support ──────────────────────────────────────────────── */
.support { background: var(--navy); color: #fff; }
.support h2 { color: #fff; border-color: var(--gold); }
.support > .container > p { color: #ccc; margin-bottom: 1.5rem; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.support-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.support-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.support-card h4 { margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--gold); }
.support-card a { color: #fff; font-size: 0.85rem; word-break: break-all; }
.support-card a:hover { color: var(--gold); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid #e0e0e0;
}

footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 520px) {
  .app-card { flex-direction: column; align-items: center; text-align: center; }
  .badges { justify-content: center; }
}
