:root {
  --bg: #0b0b0c;
  --panel: #0f0f12;
  --text: #f5f7fb;
  --muted: #91959c;
  --dim: #8b8f98;
  --line: rgba(255, 255, 255, 0.08);
  --brand: #ff5722;
  --brand-2: #ff7247;
  --brand-3: #ff866b;
  --accent: #6a7bff;
  --radius-xl: 16px;
  --radius-lg: 14px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  --shadow-2: 0 12px 40px rgba(0, 0, 0, 0.45);
  --border-color: rgba(255, 255, 255, 0.1);
  --bg-color: rgba(38, 38, 38, 0.5);
}

.color-white {
  color: #fff;
}

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

.fw-bold {
  font-weight: bold;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 70% -20%, rgba(255, 58, 86, 0.18), transparent 60%), var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: 'Pixelify Sans', sans-serif;
}

a {
  color: var(--muted);
  transition: color .2s;
}

a:hover {
  color: var(--brand);
}

.nav-wrap {
  position: sticky;
  top: 22px;
  z-index: 50;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  height: 72px;
  border-radius: 14px;
  padding: 0 16px 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  background: rgba(18, 18, 21, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1), 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  width: 100%;
  max-width: 1200px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600
}

.brand span {
  font-family: 'Pixelify Sans', sans-serif
}

.logo {
  width: 17px;
  height: 17px
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0
}

.links a {
  color: #cfd3dc;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color .2s, background .2s
}

.links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05)
}

.links .dim {
  color: var(--dim)
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 10px;
  color: #fff
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #d6d9e0;
  margin: 4px 0;
  border-radius: 2px
}

main {
  padding: 72px 0;
}

.btn {
  --h: auto;
  height: var(--h);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 36px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform .08s ease, background .2s, color .2s
}

.btn svg {
  flex-shrink: 0;
}

.btn.small {
  --h: 38px;
  padding: 0 20px;
  font-size: 14px;
}

.btn.pill {
  border-radius: 999px
}

.btn.primary {
  color: #0b0b0c;
  background: #fff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.06)
}

.btn.primary:hover {
  transform: translateY(-1px)
}

.btn.primary:active {
  transform: translateY(0) scale(.98)
}

.btn.outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-1)
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.06)
}

.gradient-border {
  --gb: linear-gradient(120deg, rgba(255, 58, 58, .8), rgba(255, 116, 116, .6), rgba(255, 58, 155, .7), rgba(255, 58, 58, .8));
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--gb) border-box;
  position: relative;
}

.gradient-border::after {
  content: "";
  position: absolute;
  inset: -12px;
  filter: blur(24px);
  background: radial-gradient(600px 200px at 20% -40%, rgba(255, 64, 64, .12), transparent 60%);
  z-index: -1
}

@media (prefers-reduced-motion: no-preference) {
  .gradient-border {
    animation: spinHue 9s linear infinite
  }
}

@keyframes spinHue {
  0% {
    filter: hue-rotate(0deg)
  }

  100% {
    filter: hue-rotate(360deg)
  }
}

.hero {
  margin-top: calc(-72px * 2);
  position: relative;
  padding: calc(120px + 72px) 24px 72px;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center
}

.headline {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px
}

.subhead {
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.5;
  margin: 0 auto 28px;
  max-width: 680px
}

.bg-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
  radial-gradient(800px 400px at 20% -10%, rgb(255 153 68 / 22%), transparent 60%), radial-gradient(900px 500px at 80% 0%, rgb(255 114 58 / 16%), transparent 60%), linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    120px 120px,
    120px 120px;
  background-position: center top, center top, 0 0, 0 0;
  mask-image: radial-gradient(1400px 800px at 50% 10%, #000 55%, transparent 85%);
}

@media (prefers-reduced-motion: no-preference) {
  .bg-grid {
    animation: panGrid 18s linear infinite
  }
}

@keyframes panGrid {
  0% {
    background-position: center top, center top, 0 0, 0 0
  }

  100% {
    background-position: center top, center top, -120px -120px, -120px -120px
  }
}

.content .container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(18, 18, 21, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px
}

.btn.outline .sep {
  opacity: .5;
  margin: 0 8px
}

.btn.outline .arrow {
  transition: transform .15s ease
}

.btn.outline:hover .arrow {
  transform: translateX(2px)
}

.section.copy {
  padding: 52px 24px 100px;
  text-align: center
}

.section.copy h2 {
  font-size: 28px;
  margin: 0 0 8px
}

.section.copy p {
  margin: 0;
  font-size: 20px
}

.section.copy p+p {
  margin-top: 8px
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  color: var(--dim)
}

.footer p {
  font-size: 13px;
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer a:hover {
  text-decoration: underline
}

.mobile-menu {
  position: absolute;
  top: 64px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  background: rgba(18, 18, 21, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-2)
}

.mobile-menu[hidden] {
  display: none !important
}

.mobile-menu a {
  color: #d5d8df;
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 10px
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05)
}

@media (max-width: 980px) {
  .links {
    display: none
  }

  .hamburger {
    display: block
  }

  .download-nav {
    margin-left: 0
  }

  .hero {
    padding-top: 96px
  }

  .nav {
    padding: 0 10px 0 24px;
    height: 62px
  }

  .btn.small {
    --h: 34px;
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none
  }
}