/* 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: radial-gradient(circle at 50% 0%, #ffffff 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;
}

/* -------------------------------------------------------
   GLOBAL LINK STYLE (unified everywhere)
------------------------------------------------------- */
a {
  color: #0ea5e9;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease;
}
a:hover {
  color: rgb(45.3943319838, 181.2331983806, 242.4056680162);
  border-color: transparent; /* no underline */
}
a:visited {
  color: #0ea5e9; /* identical to unvisited */
  border-color: transparent;
}

/* 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: #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;
}

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

.screenshot {
  background: #ffffff;
  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 {
  width: 93px;
  height: 93px;
  object-fit: contain;
  display: block;
  margin: 0;
  margin-bottom: 0.75rem;
  border: none;
  border-radius: 8px; /* rounded corners */
  background: transparent;
}

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

/* Support (Socials) */
.support {
  margin-top: 2.5rem;
  background: #ffffff;
  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;
}

/* CTA-style Freeware block */
.support--cta {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.35);
  padding: 2.25rem 2.25rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin-top: 3rem;
}
.support--cta h2 {
  color: #0ea5e9;
  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__button {
  display: inline-block;
  background: #0ea5e9;
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.support--cta .support__button:hover {
  background: rgb(26.1506072874, 174.4607287449, 241.2493927126);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.45);
  transform: translateY(-1px);
}

/* Download */
.download {
  margin-top: 2.5rem;
  background: rgba(14, 165, 233, 0.12);
  border-radius: 12px;
  padding: 2rem 2.25rem 2.25rem;
  border: 1px solid rgba(14, 165, 233, 0.35);
}

.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);
}

/* TOOL BLOCKS */
.tool {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #ffffff;
  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);
}

.tool__icon {
  width: 264px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border: none;
  border-radius: 8px; /* rounded corners */
  background: transparent;
}

.tool__text {
  flex: 1;
}

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

.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;
  }
  .tool__icon {
    width: 180px;
  }
}/*# sourceMappingURL=s.css.map */