:root {
  --bg: #15050b;
  --wine: #6a1027;
  --text: #fff7fb;
  --muted: #e4c9d3;
  --accent: #d9a441;
  --accent-2: #ffcfde;
  --line: rgba(255, 235, 242, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(15, 3, 8, 0.5), rgba(15, 3, 8, 0.82)),
    linear-gradient(135deg, rgba(46, 4, 17, 0.7), rgba(18, 4, 11, 0.86)),
    url("JUMP.png") center/cover fixed no-repeat;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 164, 65, 0.15), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(155, 34, 65, 0.28), transparent 32%),
    radial-gradient(circle at 46% 86%, rgba(255, 207, 222, 0.1), transparent 26%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(217, 164, 65, 0.12), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

.bg-lights {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  animation: floatOrb 16s ease-in-out infinite;
}

.orb-a {
  width: 28rem;
  height: 28rem;
  left: -7rem;
  top: 10vh;
  background: radial-gradient(circle, rgba(106, 16, 39, 0.52), transparent 66%);
}

.orb-b {
  width: 22rem;
  height: 22rem;
  right: -4rem;
  top: 14vh;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.22), transparent 70%);
  animation-delay: -5s;
}

.orb-c {
  width: 25rem;
  height: 25rem;
  left: 46%;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(255, 207, 222, 0.18), transparent 70%);
  animation-delay: -9s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 235, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 235, 242, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 18%, rgba(0, 0, 0, 0.7) 82%, transparent 100%);
  opacity: 0.22;
  transform: perspective(900px) rotateX(76deg) translateY(-6%);
  transform-origin: top center;
}

.intro-screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(106, 16, 39, 0.18), rgba(9, 3, 7, 0.94)),
    rgba(8, 2, 6, 0.98);
  z-index: 20;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-glow {
  position: absolute;
  width: min(66vw, 40rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.16), rgba(106, 16, 39, 0.14), transparent 70%);
  filter: blur(18px);
  animation: pulseGlow 4.2s ease-in-out infinite;
}

.intro-image {
  position: relative;
  display: block;
  width: min(74vw, 23rem);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.38));
  animation: introFloat 3.2s ease-in-out infinite;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 74px;
  border-bottom: 1px solid rgba(255, 235, 242, 0.12);
  background: #b7728c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  z-index: 30;
}

.topbarInner {
  width: min(1160px, calc(100% - 40px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.topbar-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.server-button {
  margin-left: 0.35rem;
  background: linear-gradient(135deg, #ff4d4d, #e32121);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(227, 33, 33, 0.3);
}

.server-button:hover {
  background: linear-gradient(135deg, #ff5f5f, #ee2c2c);
}

.menuBtn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease, box-shadow .24s ease;
}

.menuBtn span {
  display:block;
  width:18px;
  height:2px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  transform-origin:center;
  transition: transform .28s cubic-bezier(.22,1,.36,1), opacity .18s ease;
}

.menuBtn.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menuBtn.is-open span:nth-child(2){ opacity:0; }
.menuBtn.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

body.noScroll { overflow: hidden; }

.mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.mobileMenu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobileMenuOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .24s ease;
}

.mobileMenu.is-open .mobileMenuOverlay { opacity: 1; }

.mobileMenuPanel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 92vw);
  background: rgba(21, 5, 11, 0.92);
  border-left: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  transform: translateX(102%);
  opacity: .72;
  transition: transform .34s cubic-bezier(.22,1,.36,1), opacity .24s ease;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobileMenu.is-open .mobileMenuPanel {
  transform: translateX(0);
  opacity: 1;
}

.mobileMenuTop {
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.mobileMenuTitle { font-weight: 900; }

.menuClose {
  width:44px;
  height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color:#fff;
  font-size: 22px;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.mobileNav {
  display:grid;
  gap:8px;
  padding-top: 4px;
}

.mobileNav a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px;
  border-radius: 16px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
  transform: translateX(14px);
  opacity: 0;
}

.mobileMenu.is-open .mobileNav a {
  transform: translateX(0);
  opacity: 1;
  transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .22s ease;
}

.mobileMenu.is-open .mobileNav a:nth-child(1){ transition-delay: .05s; }
.mobileMenu.is-open .mobileNav a:nth-child(2){ transition-delay: .09s; }
.mobileMenu.is-open .mobileNav a:nth-child(3){ transition-delay: .13s; }
.mobileMenu.is-open .mobileNav a:nth-child(4){ transition-delay: .17s; }

.mobileMenuCtas {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.pillBtn {
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.2rem 0 5rem;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.4rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.eyebrow,
.section-label,
.hero-kicker {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1,
.benefits-copy h2,
.cta-strip h2 {
  margin: 0;
  line-height: 0.95;
}

.hero h1 {
  max-width: 7ch;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero-text,
.hero-side-text {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 36rem;
  margin: 1.5rem 0 2rem;
  font-size: 1.08rem;
}

.hero-side {
  align-self: end;
  padding-bottom: 2rem;
}

.hero-side-text {
  max-width: 24rem;
  margin: 0;
  font-size: 1.05rem;
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 235, 242, 0.18);
  background: linear-gradient(135deg, #d9a441, #f0c26b);
  color: #300a16;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 18px 42px rgba(217, 164, 65, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.join-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(217, 164, 65, 0.28);
  filter: brightness(1.03);
}

.benefits-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.7rem;
  align-items: start;
  padding: 2.2rem 0 3.2rem;
}

.benefits-copy {
  position: sticky;
  top: 6.5rem;
}

.benefits-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.3rem);
  max-width: 5ch;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  max-width: 920px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit-item:first-child {
  border-top: 1px solid var(--line);
}

.benefit-mark {
  color: rgba(255, 247, 251, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.benefit-item p {
  margin: 0;
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}

.benefit-item.highlight .benefit-mark {
  color: var(--accent);
}

.benefit-item.highlight p {
  color: var(--accent-2);
}

.cta-strip {
  padding: 2rem 0 3rem;
  text-align: center;
}

.cta-strip h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.testimonials-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: start;
  padding: 0.2rem 0 3.4rem;
}

.testimonials-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.testimonials-text {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.8;
}

.testimonials-stage {
  position: relative;
  min-height: 200px;
  max-width: 760px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 235, 242, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(18, 5, 11, 0.8), rgba(26, 8, 16, 0.62)),
    linear-gradient(135deg, rgba(217, 164, 65, 0.08), rgba(255, 207, 222, 0.06));
  backdrop-filter: blur(16px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  pointer-events: none;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 24%);
  pointer-events: none;
}

.testimonial-quote {
  position: relative;
  margin: 0 0 1rem;
  font-size: clamp(0.98rem, 1.65vw, 1.14rem);
  line-height: 1.62;
  color: var(--text);
  max-width: 54ch;
}

.testimonial-author {
  position: relative;
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials-dots {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 1rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(217, 164, 65, 0.45);
}

.ticker-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.2rem 0 2.4rem;
}

.ticker-band::before,
.ticker-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}

.ticker-band::before {
  left: 0;
  background: linear-gradient(to right, rgba(21, 5, 11, 0.96), transparent);
}

.ticker-band::after {
  right: 0;
  background: linear-gradient(to left, rgba(21, 5, 11, 0.96), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: tickerMove 26s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(1.7rem, 4vw, 3.2rem);
  padding-right: clamp(1.7rem, 4vw, 3.2rem);
}

.ticker-group img {
  display: block;
  width: clamp(74px, 8.6vw, 112px);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter:
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 16px rgba(255, 207, 222, 0.06));
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.92;
  }
}

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

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  33% {
    transform: translate3d(20px, -12px, 0);
  }
  66% {
    transform: translate3d(-12px, 14px, 0);
  }
}

@keyframes tickerMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 920px) {
  .topbar-nav {
    display: none;
  }

  .menuBtn { display: flex; }

  .hero,
  .benefits-section,
  .testimonials-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-side {
    padding-bottom: 0;
  }

  .benefits-copy {
    position: relative;
    top: auto;
  }

  .benefits-copy h2 {
    max-width: none;
  }

  .testimonials-dots {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(180deg, rgba(15, 3, 8, 0.46), rgba(15, 3, 8, 0.82)),
      linear-gradient(135deg, rgba(46, 4, 17, 0.64), rgba(18, 4, 11, 0.86)),
      url("jumpcel.png") center top/contain scroll no-repeat;
  }

  .page-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 6.8rem;
  }

  .hero,
  .benefits-section,
  .testimonials-section {
    gap: 1.6rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3.2rem, 16vw, 5.8rem);
  }

  .benefit-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .join-button {
    width: 100%;
  }

  .testimonial-card {
    min-height: 260px;
    padding: 1.2rem;
  }

  .testimonials-stage {
    min-height: 260px;
  }

  .ticker-band::before,
  .ticker-band::after {
    width: 3rem;
  }
}

@media (max-width: 560px) {
  .topbar {
    height: 68px;
  }

  .topbarInner {
    width: min(1160px, calc(100% - 28px));
    height: 68px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .intro-screen {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
