/* SluggyWare — same palette as the apps, so the brand feels like one thing. */

:root {
  color-scheme: dark;
  --bg: #12121f;
  --surface: #1a1a2e;
  --surface-2: #22223a;
  --border: #32324e;
  --text: #e6e6f0;
  --muted: #9a9ab8;
  --primary: #7c5cff;
  --primary-hover: #9179ff;
  --primary-active: #5f3fd6;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- hero --- */

.hero {
  text-align: center;
  padding: 64px 20px 40px;
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.14), transparent);
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__tagline { color: var(--muted); margin-top: 6px; }

/* --- software list --- */

main {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  flex: 1;
}

.software-list { list-style: none; }

.software {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.software__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  flex-shrink: 0;
}

.software__info { flex: 1; min-width: 0; }

.software__name { font-size: 19px; font-weight: 600; }

.software__desc { color: var(--muted); font-size: 14px; margin-top: 2px; }

.software__meta { color: var(--muted); font-size: 12px; margin-top: 8px; }

.download-btn {
  flex-shrink: 0;
  padding: 12px 26px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: background-color 0.13s ease, transform 0.07s ease, box-shadow 0.13s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.download-btn:active {
  background: var(--primary-active);
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Phones: stack the row so the button stays reachable. */
@media (max-width: 560px) {
  .software { flex-direction: column; text-align: center; }
  .download-btn { width: 100%; text-align: center; }
}

.note {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-top: 24px;
}

/* --- footer --- */

.footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 24px 20px;
  border-top: 1px solid var(--border);
}
