:root {
  color-scheme: dark;
  --black: #16171b;
  --black-2: #1d1f24;
  --gold: #f5c503;
  --gold-2: #ffd94b;
  --text: #f4f4f4;
  --muted: #b8bdc9;
  --line: rgba(245, 197, 3, 0.24);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(245, 197, 3, 0.2), transparent 32%),
    radial-gradient(circle at 90% 0%, rgba(245, 197, 3, 0.12), transparent 28%),
    linear-gradient(180deg, #121318 0%, #16171b 44%, #111216 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.header {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 16px;
  left: 0;
  background: transparent;
  border: 0;
  z-index: 20;
  pointer-events: none;
}

.header-shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 18px;
  border: 1px solid rgba(245, 197, 3, 0.16);
  background: linear-gradient(140deg, rgba(245, 197, 3, 0.09), rgba(10, 10, 12, 0.84));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  animation: shellFloat 5.2s ease-in-out infinite;
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 197, 3, 0.2);
  padding: 7px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

.brand-domain {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  background: linear-gradient(140deg, #f5c503, #ffdf61);
  color: #191919;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  border: 1px solid rgba(245, 197, 3, 0.6);
  box-shadow: 0 12px 30px rgba(245, 197, 3, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.menu-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 38px rgba(245, 197, 3, 0.3);
}

.menu-cta:focus-visible {
  outline: 2px solid rgba(255, 217, 75, 0.9);
  outline-offset: 2px;
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 150px 0 54px;
  max-width: 900px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Syne", "Segoe UI", sans-serif;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 72px);
  max-width: 14ch;
  margin-bottom: 20px;
}

.hero-text {
  color: var(--muted);
  max-width: 62ch;
  font-size: 18px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-main {
  background: linear-gradient(140deg, #f5c503, #f2b600);
  color: #131313;
}

.btn-alt {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero-stats {
  margin-top: 26px;
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--muted);
}

.hero-stats strong {
  color: var(--gold-2);
  font-weight: 600;
}

.section {
  padding: 46px 0 64px;
  scroll-margin-top: 140px;
}

.section-head h2 {
  font-size: clamp(28px, 4.2vw, 50px);
}

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

.card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 197, 3, 0.2);
  background: linear-gradient(160deg, rgba(245, 197, 3, 0.1), rgba(255, 255, 255, 0.02));
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.downloads {
  padding-top: 24px;
  padding-bottom: 90px;
}

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

.download {
  display: grid;
  gap: 4px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 197, 3, 0.22);
  background: linear-gradient(140deg, rgba(245, 197, 3, 0.12), rgba(20, 20, 20, 0.52));
  padding: 22px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.download:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 3, 0.76);
}

.download-title {
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 26px;
}

.download-sub {
  color: var(--muted);
  font-size: 14px;
}

.download-action {
  margin-top: 12px;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--gold);
  color: #171717;
  font-weight: 700;
}

.footer {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 0 0 28px;
  border-top: 1px solid rgba(245, 197, 3, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.footer-domain {
  text-transform: lowercase;
}

@keyframes shellFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 980px) {
  .hero {
    max-width: 100%;
    padding-top: 142px;
  }

  .hero h1 {
    max-width: 17ch;
  }

  .hero-text {
    font-size: 17px;
  }

  .cards,
  .download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header {
    top: 10px;
  }

  .header-shell {
    padding: 10px;
    gap: 12px;
    border-radius: 14px;
    align-items: center;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-domain {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .menu-cta {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  main {
    width: min(1180px, 94vw);
  }

  .header-shell {
    width: min(1180px, 94vw);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand {
    width: 100%;
  }

  .nav {
    width: 100%;
  }

  .menu-cta {
    width: 100%;
  }

  .hero {
    padding-top: 162px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 46px);
    max-width: 100%;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 38px 0 54px;
  }

  .card,
  .download {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .header {
    top: 8px;
  }

  .header-shell {
    border-radius: 12px;
    padding: 8px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    padding: 5px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-domain {
    display: none;
  }

  .hero {
    padding-top: 148px;
  }

  .eyebrow {
    letter-spacing: 1.6px;
    font-size: 11px;
  }

  .download-title {
    font-size: 22px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header-shell {
    animation: none;
  }

  .menu-cta,
  .btn,
  .download {
    transition: none;
  }
}
