:root {
  /* Mirrors PALETTES.dark in src/constants/theme.ts */
  --bg: #0b0b14;
  --surface: #15151f;
  --surface2: #1d1d2a;
  --border: #2b2b3b;
  --hair: #20202d;
  --text: #f3f3f8;
  --text2: #ababc0;
  --muted: #6c6c82;
  --accent: #7c78ff;
  --accent2: #9e96ff;
  --accent-press: #6a66e8;
  --accent-soft: #211f3d;
  --accent-line: #3a3570;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 24px;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--accent-soft) 0%, transparent 70%),
    var(--bg);
  color: var(--text);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
}

.card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(124, 120, 255, 0.25);
}

.name {
  margin: 20px 0 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.tagline {
  margin: 10px 0 28px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.5;
}

.phone {
  width: 232px;
  padding: 8px;
  margin: 0 0 32px;
  border-radius: 34px;
  background: linear-gradient(160deg, var(--surface2), var(--surface));
  border: 1px solid var(--border);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(124, 120, 255, 0.2);
}

.shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid var(--hair);
}

.primary-cta {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(124, 120, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.primary-cta:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 6px 16px rgba(124, 120, 255, 0.3);
}

.store-row {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

.store-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.store-btn:hover {
  background: var(--surface2);
  border-color: var(--accent-line);
}

.store-btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.store-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text);
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.store-text small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.footer {
  margin-top: 34px;
  width: 100%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  font-size: 13px;
}

.footer-links a {
  color: var(--text2);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent2);
}

.footer-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}
