:root {
  color-scheme: light;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --bg: #05090f;
  --bg-alt: #0d111a;
  --text: #f8fbff;
  --muted: #cfd7ff;
  --card: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #76e4ff;
  --accent-strong: #82f6d8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #182845, #05090f 60%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(118, 228, 255, 0.25), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(130, 246, 216, 0.2), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 4rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 2rem 0 4rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(248, 251, 255, 0.85);
  margin-bottom: 1.5rem;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #041018;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(118, 228, 255, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(118, 228, 255, 0.45);
}

.cta-note {
  font-size: 0.85rem;
  color: rgba(248, 251, 255, 0.65);
}

.cta.large {
  flex-direction: column;
  min-width: 220px;
  padding: 1rem 2rem;
}

.cta.large small {
  font-size: 0.9rem;
  color: rgba(4, 16, 24, 0.7);
}

.hero__media {
  display: flex;
  justify-content: center;
}

.screenshot-frame {
  margin: 0;
  width: min(360px, 100%);
  padding: 1rem;
  border-radius: 36px;
  background: linear-gradient(180deg, #0d1c28, #070b12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(10px);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(5, 9, 15, 0.65);
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: rgba(248, 251, 255, 0.75);
}

.gallery {
  display: grid;
  gap: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 15, 0.65);
  overflow: hidden;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-grid figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.9rem;
  color: rgba(248, 251, 255, 0.75);
}

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: center;
}

.highlight-card {
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 600;
}

.stat-label {
  color: rgba(248, 251, 255, 0.65);
}

.download {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.download p {
  max-width: 520px;
  color: rgba(248, 251, 255, 0.8);
}

.footer {
  text-align: center;
  margin-top: 3rem;
  color: rgba(248, 251, 255, 0.55);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .hero {
    text-align: center;
  }

  .cta-group {
    align-items: center;
  }

  .screenshot-frame {
    width: min(320px, 100%);
  }

  .gallery {
    text-align: center;
  }

  .download {
    flex-direction: column;
  }
}
