/* 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");
/* Light Theme 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: #ffffff;
  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 #e5e7eb;
  box-shadow: 0 8px 22px 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: #111827;
}

.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: #38bdf8;
  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(95.413592233, 202.0718446602, 249.386407767);
  border-color: rgb(95.413592233, 202.0718446602, 249.386407767);
}

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

.screenshot {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.screenshot__image {
  width: 93px;
  height: 93px;
  object-fit: contain;
  display: block;
  margin: 0;
  margin-bottom: 0.75rem;
  border: none;
  background: transparent;
}

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

/* Support (About the author) */
.support {
  margin-top: 2.5rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 2.25rem 2.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.support .support__text {
  color: #1f2937;
}
.support .support__text a {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.support .support__text a:hover {
  color: rgb(95.413592233, 202.0718446602, 249.386407767);
  border-color: rgb(95.413592233, 202.0718446602, 249.386407767);
}
.support .support__link a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #38bdf8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.support .support__link a:hover {
  color: rgb(95.413592233, 202.0718446602, 249.386407767);
  border-color: rgb(95.413592233, 202.0718446602, 249.386407767);
}

/* CTA-style Freeware block */
.support--cta {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 2.25rem 2.25rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin-top: 3rem;
}
.support--cta h2 {
  color: #38bdf8;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.support--cta .support__text {
  color: #1f2937;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.support--cta .support__text a {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.support--cta .support__text a:hover {
  color: rgb(95.413592233, 202.0718446602, 249.386407767);
  border-color: rgb(95.413592233, 202.0718446602, 249.386407767);
}
.support--cta .support__button {
  display: inline-block;
  background: #38bdf8;
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.support--cta .support__button:hover {
  background: rgb(75.7067961165, 195.5359223301, 248.6932038835);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.45);
  transform: translateY(-1px);
}

/* Download */
.download {
  margin-top: 2.5rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 2.25rem 2.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px 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: #38bdf8;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
}
.btn--primary:hover {
  background: rgb(75.7067961165, 195.5359223301, 248.6932038835);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.45);
}

/* Socials / Tools */
.tool {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.tool__icon {
  width: 93px;
  height: 93px;
  object-fit: contain;
  flex-shrink: 0;
  border: none;
  background: transparent;
}

.tool__text {
  flex: 1;
}

.tool__caption {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
}
.tool__caption a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}
.tool__caption a:hover {
  color: rgb(95.413592233, 202.0718446602, 249.386407767);
  border-color: rgb(95.413592233, 202.0718446602, 249.386407767);
}

.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 */