@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #121212;
  --surface: #1f1f1f;
  --surface-2: #242424;
  --border: #353535;
  --text: #f5f7fb;
  --muted: #aab2c0;
  --accent: #4c8df6;
  --md-sys-color-primary: var(--accent);
  --md-sys-color-surface: var(--surface);
  --md-sys-color-on-surface: var(--text);
  --md-sys-color-outline-variant: var(--border);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', 'Segoe UI', sans-serif;
}

body {
  padding: 32px;
}

.page-shell {
  display: grid;
  gap: 32px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 32px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-header h2,
.download-card h3 {
  margin: 0;
}

.hero-copy h1 {
  font-size: 40px;
  line-height: 1.08;
}

.hero-copy p,
.download-card p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.action-link,
.download-card a {
  text-decoration: none;
}

.hero-meta {
  display: grid;
  gap: 14px;
  align-content: center;
}

.hero-stat {
  padding: 18px;
  border-radius: 24px;
  background: var(--surface-2);
  color: var(--text);
}

.hero-stat strong {
  display: block;
  font-size: 18px;
  margin-top: 6px;
}

.hero-stat-label {
  color: var(--muted);
  font-size: 13px;
}

.downloads-section {
  display: grid;
  gap: 20px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  padding: 24px;
  border-radius: 28px;
  background: var(--surface);
  color: var(--text);
}

.links-section {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-link {
  color: #aecdff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.platform {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(76, 141, 246, 0.18);
  color: #dce7ff;
  font-size: 13px;
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .hero-card,
  .download-grid {
    grid-template-columns: 1fr;
  }
}
