:root {
  --bg: #d4d5da;
  --bg-2: #c8c9cf;
  --surface: rgba(232, 233, 237, 0.72);
  --surface-border: rgba(199, 201, 209, 0.9);
  --text: #2b2f38;
  --text-muted: #6b7280;
  --accent: #6c63ff;
  --accent-strong: #5850ec;
  --shadow: 0 20px 40px rgba(70, 73, 90, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100%;
  padding: 40px 20px 56px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
}

.hero {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.logo {
  width: clamp(120px, 20vw, 190px);
  height: auto;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1 {
  margin: 14px auto 10px;
  max-width: 760px;
  line-height: 1.15;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.subtitle {
  margin: 0 auto;
  max-width: 680px;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.7;
}

.download-btn {
  display: inline-block;
  margin-top: 24px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  padding: 13px 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.28);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(108, 99, 255, 0.34);
}

.download-btn:active {
  transform: translateY(0);
}

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

.info-card {
  padding: 20px;
}

.info-card h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(3px);
  z-index: 0;
}

.orb-1 {
  width: 300px;
  height: 300px;
  left: -120px;
  top: -90px;
  background: radial-gradient(circle at 30% 30%, rgba(108, 99, 255, 0.45), rgba(108, 99, 255, 0));
}

.orb-2 {
  width: 380px;
  height: 380px;
  right: -140px;
  bottom: -150px;
  background: radial-gradient(circle at 65% 45%, rgba(71, 122, 255, 0.28), rgba(71, 122, 255, 0));
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 0.7px, transparent 0.7px);
  background-size: 6px 6px;
  opacity: 0.35;
  z-index: 1;
}

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

  .hero {
    padding: 30px 18px;
  }
}
