:root {
  --bg: #050608;
  --bg-soft: #0b0f16;
  --text: #f7f8fb;
  --muted: rgba(244, 246, 251, 0.67);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --green: #7ae87d;
  --green-deep: #3dca67;
  --mint: #7ee7b7;
  --gold: #ffc83d;
  --gold-deep: #ffb020;
  --purple: #9b5fff;
  --panel: rgba(9, 12, 19, 0.76);
  --panel-strong: rgba(10, 14, 21, 0.92);
  --card-shadow: 0 36px 90px rgba(0, 0, 0, 0.68);
  --distance: clamp(7.75rem, 17vw, 17rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 18%, rgba(145, 98, 255, 0.16), transparent 30%),
    radial-gradient(circle at 28% 46%, rgba(105, 232, 118, 0.18), transparent 30%),
    radial-gradient(circle at 76% 53%, rgba(255, 187, 35, 0.16), transparent 26%),
    linear-gradient(180deg, #030406 0%, #06080d 42%, #050608 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1.6px),
    radial-gradient(circle at 80% 28%, rgba(255, 205, 111, 0.12) 0 1.4px, transparent 1.8px),
    radial-gradient(circle at 30% 70%, rgba(133, 247, 145, 0.12) 0 1px, transparent 1.7px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0 1.2px, transparent 1.8px);
  background-size: 180px 180px, 240px 240px, 210px 210px, 260px 260px;
  opacity: 0.45;
}

body::after {
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.035), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.02));
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.landing-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 24px 24px 18px;
}

.hero {
  position: relative;
  width: min(100%, 1260px);
  margin: 0 auto;
  text-align: center;
  padding: 8px clamp(0px, 2vw, 24px) 24px;
}

.hero__halo {
  position: absolute;
  inset: auto;
  width: clamp(240px, 34vw, 420px);
  height: clamp(240px, 34vw, 420px);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.2;
  pointer-events: none;
}

.hero__halo--left {
  top: 36%;
  left: 12%;
  background: radial-gradient(circle, rgba(92, 237, 117, 0.95) 0%, rgba(92, 237, 117, 0.12) 42%, transparent 72%);
}

.hero__halo--right {
  top: 42%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 197, 61, 0.92) 0%, rgba(255, 197, 61, 0.1) 40%, transparent 74%);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand__icon {
  display: inline-grid;
  place-items: center;
  width: clamp(90px, 12vw, 128px);
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20, 23, 32, 0.95), rgba(11, 14, 22, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.36);
}

.brand__icon svg {
  width: 68%;
  height: 68%;
}

.brand__wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
}

.brand__wordmark span:last-child {
  color: var(--green);
}

.hero__copy {
  margin-top: 30px;
}

.hero__title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero__title span {
  display: inline-block;
  margin: 0 0.04em;
}

.text-gradient-green,
.text-gradient-gold {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient-green {
  background-image: linear-gradient(180deg, #9bf58e 0%, #69e874 45%, #43be54 100%);
}

.text-gradient-gold {
  background-image: linear-gradient(180deg, #ffd862 0%, #ffc53c 40%, #f1a90b 100%);
}

.hero__subtitle {
  margin: 14px 0 0;
  font-size: clamp(1.16rem, 2.2vw, 2rem);
  font-weight: 500;
  color: var(--muted);
}

.showcase {
  margin-top: 24px;
}

.showcase__stage {
  position: relative;
  height: clamp(380px, 61vw, 760px);
}

.showcase__stage::before,
.showcase__stage::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.showcase__stage::before {
  left: 7%;
  right: 7%;
  bottom: 14%;
  height: clamp(32px, 4vw, 56px);
  background: radial-gradient(circle at center, rgba(109, 245, 130, 0.52) 0%, rgba(109, 245, 130, 0.14) 42%, transparent 72%);
  filter: blur(24px);
}

.showcase__stage::after {
  left: 16%;
  right: 16%;
  bottom: 10%;
  height: 5px;
  background: linear-gradient(90deg, rgba(109, 245, 130, 0), rgba(109, 245, 130, 0.86), rgba(255, 202, 72, 0.86), rgba(255, 202, 72, 0));
  box-shadow: 0 0 18px rgba(109, 245, 130, 0.46);
}

.carousel {
  position: relative;
  height: 100%;
  perspective: 1600px;
  isolation: isolate;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slide__frame {
  position: relative;
  width: clamp(176px, 20vw, 250px);
  aspect-ratio: 2 / 3;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(28px, 3vw, 40px);
  background: var(--panel-strong);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  pointer-events: auto;
  transform:
    translateX(calc(var(--offset) * var(--distance)))
    translateY(var(--lift, 0px))
    scale(var(--scale, 1))
    rotateY(calc(var(--offset) * -9deg));
  opacity: var(--opacity, 1);
  filter: blur(var(--blur, 0px)) saturate(var(--saturate, 1));
  transition:
    transform 0.7s cubic-bezier(0.2, 0.72, 0.14, 1),
    opacity 0.45s ease,
    filter 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.slide__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.slide__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.is-active .slide__frame {
  width: clamp(250px, 31vw, 370px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.72),
    0 0 54px rgba(121, 232, 125, 0.18);
  animation: active-float 5.2s ease-in-out infinite;
}

.slide.is-far .slide__frame {
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.5);
}

.slide.is-hidden .slide__frame {
  opacity: 0;
  pointer-events: none;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.carousel__dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.carousel__dot:hover,
.carousel__dot:focus-visible {
  transform: scale(1.08);
  outline: none;
}

.carousel__dot.is-active {
  background: linear-gradient(180deg, #78ec85 0%, #44cb66 100%);
  box-shadow: 0 0 0 5px rgba(122, 232, 125, 0.12), 0 0 18px rgba(122, 232, 125, 0.35);
}

.hero__ctas {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 206px;
  min-height: 78px;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.9), rgba(5, 8, 14, 0.82));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cta-badge:hover,
.cta-badge:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  outline: none;
}

.cta-badge img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 50px;
}

.cta-badge--full {
  min-width: 220px;
  justify-content: flex-start;
  gap: 14px;
  padding: 12px 18px;
  border-color: rgba(122, 232, 125, 0.58);
}

.cta-badge__icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--green);
}

.cta-badge__icon svg {
  width: 100%;
  height: 100%;
}

.cta-badge__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-badge__eyebrow {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-badge__title {
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 24px auto 0;
  font-size: clamp(0.98rem, 1.5vw, 1.32rem);
  font-weight: 500;
  color: rgba(244, 246, 251, 0.76);
}

.hero__note a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}

.hero__note-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green);
}

.hero__note-icon svg {
  width: 100%;
  height: 100%;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1080px);
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 96px;
}

.feature + .feature::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-50%);
}

.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.08;
}

.feature__title {
  font-size: clamp(1.16rem, 1.7vw, 1.55rem);
  font-weight: 600;
  color: rgba(247, 248, 251, 0.9);
}

.feature--green {
  color: var(--green);
}

.feature--mint {
  color: #57e391;
}

.feature--gold {
  color: var(--gold);
}

.feature--purple {
  color: var(--purple);
}

.hero__copyright {
  margin: 18px 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes active-float {
  0%,
  100% {
    transform:
      translateX(calc(var(--offset) * var(--distance)))
      translateY(var(--lift, 0px))
      scale(var(--scale, 1))
      rotateY(calc(var(--offset) * -9deg));
  }

  50% {
    transform:
      translateX(calc(var(--offset) * var(--distance)))
      translateY(calc(var(--lift, 0px) - 8px))
      scale(var(--scale, 1))
      rotateY(calc(var(--offset) * -9deg));
  }
}

@media (max-width: 1080px) {
  :root {
    --distance: clamp(6rem, 15vw, 13rem);
  }

  .landing-page {
    padding-inline: 18px;
  }

  .hero__features {
    gap: 18px 6px;
  }

  .feature {
    gap: 12px;
  }
}

@media (max-width: 700px) {
  :root {
    --distance: clamp(4.8rem, 11vw, 6.8rem);
  }

  .hero__title {
    line-height: 1;
  }

  .showcase__stage {
    height: clamp(330px, 86vw, 640px);
  }

  .hero__ctas {
    flex-wrap: wrap;
  }

  .slide.is-far .slide__frame {
    opacity: 0;
    pointer-events: none;
  }

  .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .feature:nth-child(3)::before,
  .feature:nth-child(4)::before {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --distance: clamp(3.8rem, 9vw, 5.5rem);
  }

  .landing-page {
    padding: 16px 14px 20px;
  }

  .hero {
    padding-inline: 0;
  }

  .brand {
    gap: 12px;
  }

  .hero__copy {
    margin-top: 24px;
  }

  .hero__subtitle {
    max-width: 20ch;
    margin-inline: auto;
  }

  .hero__ctas {
    gap: 14px;
  }

  .cta-badge,
  .cta-badge--full {
    width: min(100%, 360px);
    min-width: 0;
  }

  .hero__note {
    flex-direction: column;
    text-align: center;
    padding-inline: 12px;
  }

  .feature {
    min-height: 78px;
  }

  .feature__copy {
    line-height: 1.02;
  }

  .hero__copyright {
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .hero__features {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature + .feature::before {
    display: none;
  }

  .feature {
    justify-content: flex-start;
    padding-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}