:root {
  --bg: #000b14;
  --text: #ffffff;
  --text-soft: #eceff0;
  --text-muted: #adb1b4;
  --text-brand-muted: #858a8e;
  --pink: #ef44ff;
  --purple: #6330ff;
  --blue: #0085fe;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 0% 100%, rgba(99, 48, 255, 0.22), transparent 45%),
    linear-gradient(120deg, #000b14 0%, #00060b 75%);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.lp {
  position: relative;
  overflow: hidden;
}

.lp-bg-blobs {
  position: absolute;
  inset: -120px -70% auto;
  height: 780px;
  background-image: url("./assets/ea25ed20e62efc5534bc8ae87fb88ab4347d9ba7.svg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.68;
  pointer-events: none;
}

.main {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.hero {
  padding: 20px 16px 44px;
}

.nav {
  border: 1px solid rgba(232, 232, 232, 0.15);
  border-radius: 14px;
  padding: 12px 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  width: 24px;
  height: 28px;
}

.logo span {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 12vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-copy h1 span {
  background: linear-gradient(96deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 34px 0 20px;
  font-size: clamp(18px, 5vw, 22px);
  line-height: 1.3;
  font-weight: 700;
}

.hero-copy p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-copy p strong {
  color: #fff;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #001f34 0%, #003341 30%, #7e0078 68%, #000000 100%);
  box-shadow: 0 16px 100px rgba(239, 68, 255, 0.22);
  display: grid;
  place-items: center;
  padding: 10%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(239, 68, 255, 0) 53%, rgba(239, 68, 255, 0.2) 83%);
}

.hero-fox {
  position: relative;
  z-index: 1;
  display: block;
  width: min(80%, 340px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 376 / 396;
  object-fit: contain;
}

.about {
  padding: 64px 16px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.about-title p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(140deg, var(--pink) 0%, var(--purple) 29%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-title h2 {
  margin: 0;
  font-size: clamp(36px, 11vw, 50px);
  line-height: 1.15;
  font-weight: 700;
}

.about-title h2 span {
  display: block;
  font-family: "Orbitron", sans-serif;
}

.about-copy p {
  margin: 0 0 24px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.highlights {
  background: linear-gradient(108deg, var(--pink), var(--purple));
  min-height: 84px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.highlights-marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: highlights-scroll 28s linear infinite;
}

.highlights-track {
  width: max-content;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: clamp(16px, 4.4vw, 22px);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.highlights-track img {
  width: 18px;
  height: 18px;
}

@keyframes highlights-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.footer {
  position: relative;
  padding: 56px 16px 36px;
  text-align: center;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.72;
}

.footer-glow img {
  width: 100%;
  height: 100%;
}

.footer-glow-pink {
  left: -90px;
  top: 130px;
}

.footer-glow-cyan {
  right: -90px;
  top: 170px;
}

.footer-divider {
  width: min(1296px, 100%);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 49.78%, rgba(255, 255, 255, 0) 100%);
}

.footer-logo {
  margin: 32px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 34px;
  height: 40px;
}

.footer-logo span {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-brand-muted);
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.6;
}

.footer-links {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

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

@media (min-width: 768px) {
  .lp-bg-blobs {
    inset: -160px -56% auto;
    height: 900px;
  }

  .hero,
  .about,
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 60px;
  }

  .nav {
    border-radius: 16px;
    padding: 14px 18px;
  }

  .logo img {
    width: 27px;
    height: 31px;
  }

  .logo span {
    font-size: 20px;
  }

  .hero-grid {
    margin-top: 58px;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 9vw, 64px);
  }

  .hero-copy p {
    font-size: 17px;
    line-height: 1.72;
    font-weight: 500;
  }

  .hero-visual {
    aspect-ratio: 16 / 13;
    border-radius: 34px;
    padding: 8%;
  }

  .hero-fox {
    width: min(70%, 360px);
  }

  .about {
    padding-top: 84px;
    gap: 38px;
  }

  .about-title p {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .about-title h2 {
    font-size: clamp(42px, 7vw, 56px);
  }

  .about-copy p {
    font-size: 17px;
    line-height: 1.72;
    margin-bottom: 28px;
  }

  .highlights {
    min-height: 100px;
  }

  .highlights-track {
    padding: 0 40px;
    gap: 28px;
    font-size: clamp(18px, 2.8vw, 26px);
  }

  .highlights-track img {
    width: 24px;
    height: 24px;
  }

  .footer {
    padding-top: 68px;
    padding-bottom: 48px;
  }

  .footer-glow {
    width: 320px;
    height: 320px;
  }

  .footer-glow-pink {
    left: -100px;
    top: 130px;
  }

  .footer-glow-cyan {
    right: -80px;
    top: 190px;
  }

  .footer-logo {
    margin-top: 36px;
    gap: 16px;
  }

  .footer-logo img {
    width: 40px;
    height: 46px;
  }

  .footer-logo span {
    font-size: 30px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .footer-links {
    margin-top: 24px;
    flex-direction: row;
    gap: 32px;
  }
}

@media (min-width: 1200px) {
  .lp-bg-blobs {
    inset: -25% -40% auto;
    height: 1000px;
  }

  .hero {
    padding: 32px 72px 80px;
  }

  .hero-grid {
    margin-top: 128px;
    grid-template-columns: minmax(0, 1fr) 612px;
    gap: 69px;
  }

  .hero-copy h1 {
    font-size: 72px;
  }

  .hero-subtitle {
    margin: 34px 0 24px;
    font-size: 24px;
  }

  .hero-copy p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 18px;
  }

  .hero-visual {
    aspect-ratio: auto;
    height: 712px;
    border-radius: 40px;
    padding: 48px;
    box-shadow: 0 16px 240px rgba(239, 68, 255, 0.32);
  }

  .hero-fox {
    width: 376px;
    max-width: 100%;
    height: auto;
  }

  .about {
    padding: 100px 72px 52px;
    grid-template-columns: 642px 553px;
    gap: 80px;
    justify-content: space-between;
  }

  .about-title p {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .about-title h2 {
    font-size: 56px;
  }

  .about-copy p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .highlights {
    min-height: 120px;
  }

  .highlights-track {
    padding: 0 72px;
    gap: 40px;
    font-size: 28px;
  }

  .highlights-track img {
    width: 32px;
    height: 32px;
  }

  .footer {
    padding: 80px 72px 52px;
  }

  .footer-glow {
    width: 400px;
    height: 400px;
    opacity: 1;
  }

  .footer-glow-pink {
    left: -40px;
    top: 140px;
  }

  .footer-glow-cyan {
    right: 80px;
    top: 215px;
  }

  .footer-logo {
    margin: 40px 0 22px;
    gap: 18px;
  }

  .footer-logo img {
    width: 42px;
    height: 48px;
  }

  .footer-logo span {
    font-size: 32px;
  }
}
