* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 50% -10%, #1e293b, #0f172a);
  color: #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.card {
  max-width: 420px;
  width: 100%;
  background: #020617;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* Header */

.logo {
  width: 84px;
  border-radius: 18px;
  margin-bottom: 14px;
}

.title {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0;
}

.subtitle {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-top: 4px;
}

.tagline {
  margin: 18px 0 28px;
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* Branding */

.logo {
  width: 72px;
  margin-bottom: 12px;
}

.brand {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1;
}

.brand .dotcom {
  font-size: 0.55em;
  font-weight: 400;
  opacity: 0.75;
}

/* Buttons */

.buttons {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.store-btn {
  width: 100%;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Links */

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.links > a {
  font-size: 0.85rem;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.15s ease;
}

.links a:hover {
  color: #38bdf8;
}

.small-link {
  font-size: 0.72rem;
  opacity: 0.7;
  font-weight: 500;
}

/* App Buttons */

.app-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.app-btn {
  flex: 1;
  background: radial-gradient(1200px 600px at 50% -10%, #1e293b, #0f172a);
  border-radius: 14px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ccc;
  transition: all 0.18s ease;
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.app-btn img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.app-btn span {
  font-size: 1rem;
  font-weight: 600;
}

/* Footer */

footer {
  font-size: 0.75rem;
  color: #9ca3af;
}
