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

:root {
  --primary:       #2563EB;
  --primary-dark:  #1D4ED8;
  --primary-muted: #EFF6FF;
  --accent:        #E84040;
  --bg:            #FFFFFF;
  --bg-blue:       #E6F4FE;
  --text:          #1A1A1A;
  --text-secondary:#6B7280;
  --border:        #E8E8E8;
  --radius:        12px;
}

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

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────── */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.site-logo {
  height: 40px;
  width: auto;
}

/* ── Hero ───────────────────────────────────── */
.hero {
  background: var(--bg-blue);
  padding: 72px 0 64px;
  text-align: center;
}

.hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.coming-soon-pill {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 32px;
}

.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge-wrapper {
  opacity: 0.45;
  cursor: not-allowed;
  position: relative;
}

.store-badge {
  height: 48px;
  width: auto;
  display: block;
}

/* ── Features ───────────────────────────────── */
.features {
  padding: 72px 0;
  background: var(--bg);
}

.features h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}

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

.feature-card {
  background: var(--primary-muted);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.orp-highlight {
  color: var(--accent);
  font-weight: 700;
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: #fff;
  padding: 32px 0;
  text-align: center;
}

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

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-copy {
  font-size: 13px;
  color: #6B7280;
}

/* ── Support page ───────────────────────────── */
.support-hero {
  background: var(--bg-blue);
  padding: 56px 0;
  text-align: center;
}

.support-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.support-hero p {
  color: var(--text-secondary);
  font-size: 17px;
}

.support-content {
  padding: 56px 0;
}

.support-card {
  background: var(--primary-muted);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.support-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.support-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 15px;
}

.support-email-link {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.support-email-link:hover { background: var(--primary-dark); }

.support-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .features { padding: 48px 0; }
  .store-badges { flex-direction: column; align-items: center; }
}
