:root {
  --bg: #0a0b0c;
  --bg-elevated: #16181a;
  --border: #24262b;
  --text: #f5f6f7;
  --text-muted: #9a9fa6;
  --accent: #22c55e;
  --accent-hover: #1ea34f;
  --accent-soft: rgba(34, 197, 94, 0.14);
  --brand-orange: #f97316;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  max-width: 900px;
  padding: 48px 32px;
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffab4d 0%, var(--brand-orange) 55%, #c25000 100%);
  box-shadow: 0 0 14px 2px rgba(249, 115, 22, 0.55);
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.tagline {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 720px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.1s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #06210f;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge.hidden {
  display: none;
}

.platform {
  font-size: 17px;
  font-weight: 700;
  margin-top: 8px;
}

.variant {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.download-btn {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #06210f;
  transition: background 0.15s ease;
}

.card:hover .download-btn {
  background: var(--accent-hover);
}

.note {
  margin-top: 32px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.note.hidden {
  display: none;
}
