:root {
  color-scheme: light;
  --bg: #0b0f1a;
  --surface: #121a2b;
  --surface-strong: #1a2540;
  --accent: #47c2ff;
  --text: #f5f7ff;
  --text-muted: #b5c2e2;
  --stroke: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1d2a44 0%, #0b0f1a 55%, #06080f 100%);
  color: var(--text);
  min-height: 100vh;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: var(--surface);
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 6px;
}

h1 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0;
}

.subhead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.6;
}

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

.store-play { order: 2; }
.store-app { order: 1; }

body.platform-android .store-play { order: 1; }
body.platform-android .store-app { order: 2; }
body.platform-ios .store-play { order: 2; }
body.platform-ios .store-app { order: 1; }

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 10px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.store-button img {
  height: 44px;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.store-button.disabled {
  opacity: 0.55;
  position: relative;
  cursor: not-allowed;
}

.store-button.disabled:hover {
  transform: none;
}

.coming-soon {
  position: absolute;
  bottom: -18px;
  font-size: 12px;
  color: var(--text-muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(71, 194, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--stroke);
  padding: 20px;
  border-radius: 18px;
  min-height: 140px;
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--stroke);
  padding-top: 16px;
}

.logo-link {
  display: block;
}

.policy-date {
  margin-top: 8px;
  font-size: 14px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.policy-content h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--text);
}

.policy-content h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  color: var(--text);
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.policy-content ul {
  margin: 0 0 12px;
  padding-left: 24px;
}

.policy-content ul li {
  margin-bottom: 6px;
}

.policy-contact {
  color: var(--accent);
  text-decoration: none;
}

.policy-contact:hover {
  text-decoration: underline;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .logo-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-button img {
    height: 36px;
  }

  .footer {
    flex-direction: column;
    gap: 6px;
  }
}
