/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");
/* Colors */
/* Buttons */
/* Layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 50% 0%, #f7f8fa 60%, #eef1f5 100%);
  color: #1f2937;
}

.page {
  max-width: 960px;
  margin: 3rem auto 4rem;
  padding: 0 1.5rem 3rem;
}

.section-title {
  font-size: 1.4rem;
  margin: 0 0 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
  border-radius: 12px;
  padding: 2.5rem 2.25rem 2.25rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.06), transparent 55%), radial-gradient(circle at 100% 0%, rgba(0, 0, 0, 0.04), transparent 55%);
  opacity: 1;
  pointer-events: none;
}
.hero > * {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 2.6rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.06em;
  color: #1f2937;
}

.hero__subtitle {
  margin: 0.25rem 0;
  color: #6b7280;
  line-height: 1.5;
}

.hero__collection {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: #6b7280;
  letter-spacing: 0.01em;
}
.hero__collection a {
  color: #0ea5e9;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.hero__collection a:hover {
  color: rgb(45.3943319838, 181.2331983806, 242.4056680162);
  border-color: rgb(45.3943319838, 181.2331983806, 242.4056680162);
}

/* Screenshots */
.screenshots {
  margin-top: 2.5rem;
}

.screenshot {
  background: radial-gradient(circle at 50% 0%, #f7f8fa 60%, #eef1f5 100%);
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.screenshot__image {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
}

.screenshot__caption {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  color: #6b7280;
}

/* Support */
.support {
  margin-top: 2.5rem;
  background: radial-gradient(circle at 50% 0%, #f7f8fa 60%, #eef1f5 100%);
  border-radius: 12px;
  padding: 2rem 2.25rem 2.25rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.support .support__text {
  margin: 0 0 1.25rem;
  color: #1f2937;
  line-height: 1.55;
}
.support .support__link a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0ea5e9;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.support .support__link a:hover {
  color: rgb(45.3943319838, 181.2331983806, 242.4056680162);
  border-color: rgb(45.3943319838, 181.2331983806, 242.4056680162);
}

/* Download */
.download {
  margin-top: 2.5rem;
  background: radial-gradient(circle at 50% 0%, #f7f8fa 60%, #eef1f5 100%);
  border-radius: 12px;
  padding: 2rem 2.25rem 2.25rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.download__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.btn--primary {
  background: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
}
.btn--primary:hover {
  background: rgb(26.1506072874, 174.4607287449, 241.2493927126);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.45);
}

.download__note {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 640px) {
  body {
    font-size: 0.95rem;
  }
  .page {
    margin-top: 2rem;
    padding: 0 1rem 2.5rem;
  }
  .hero {
    padding: 2rem 1.5rem 1.75rem;
  }
  .download {
    padding: 1.75rem 1.5rem 1.75rem;
  }
  .hero__title {
    font-size: 2.1rem;
  }
}/*# sourceMappingURL=s.css.map */