:root {
  --bg: #0b1f4d;
  --panel: #14306b;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --border: rgba(255, 255, 255, 0.25);
}

* {
  box-sizing: border-box;
}

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

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

h1 {
  margin: 22px 0 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.subtitle {
  margin: 0;
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.store-btn {
  margin-top: 26px;
  display: inline-block;
  opacity: 0.95;
}

.store-btn img {
  height: 56px;
  width: auto;
}

.email-btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
}

.footer {
  margin-top: 36px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-links a,
.link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.page {
  min-height: 100vh;
  padding: 40px 0 64px;
}

.page h1 {
  margin-top: 0;
}

.page p,
.page li {
  line-height: 1.7;
  color: var(--muted);
}

.page ul {
  padding-left: 20px;
}
