/* © 2026 Woobat8 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050505;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background-color: #888888;
  transition: width 0.18s ease-out;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.35rem;
  margin-right: 0.25rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #e0e0e0;
  border-radius: 999px;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 4px;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 2.9vw + 1rem, 2.9rem);
  margin-bottom: 0.75rem;
}

.hero-tagline {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: #bbbbbb;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-links {
  font-size: 0.95rem;
  color: #9e9e9e;
}

.hero-links a {
  color: #e0e0e0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #555555;
  background-color: #444444;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.15s ease-out,
    border-color 0.15s ease-out,
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out;
}

.btn-large {
  padding: 0.85rem 1.9rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: #666666;
  border-color: #777777;
}

.btn-secondary {
  background-color: #333333;
  border-color: #555555;
}

.btn:hover {
  background-color: #777777;
  border-color: #8a8a8a;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.btn-secondary:hover {
  background-color: #505050;
}

.section {
  padding: 3.5rem 0;
  border-top: 1px solid #151515;
}

.section:first-of-type {
  border-top: none;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.section-intro {
  color: #a5a5a5;
  max-width: 560px;
  margin-bottom: 2rem;
}

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

.card {
  padding: 1.4rem 1.4rem 1.5rem;
  border-radius: 0.75rem;
  background: #0d0d0d;
  border: 1px solid #242424;
}

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

.card p {
  margin-top: 0;
  margin-bottom: 1.1rem;
  color: #b3b3b3;
  line-height: 1.6;
}

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.faq-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1.03rem;
}

.faq-item p {
  margin: 0;
  color: #b3b3b3;
  line-height: 1.6;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.bullet-list {
  padding-left: 1.4rem;
  margin: 0.25rem 0 0;
  color: #c4c4c4;
}

.bullet-list li + li {
  margin-top: 0.4rem;
}

.site-footer {
  border-top: 1px solid #151515;
  padding: 1rem 0 1.2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #8d8d8d;
}

.site-footer a {
  color: #e0e0e0;
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 0.6rem 1.5rem 0.8rem;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid #222222;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

