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

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(120deg, rgba(255, 212, 61, 0.12), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(123, 223, 242, 0.12), transparent 32rem),
    linear-gradient(180deg, #0a0a0a, #050505 56%, #080806);
  background-color: #050505;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.orb {
  display: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 214, 68, 0.4) 0%, transparent 70%);
  top: -15%;
  right: -15%;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.35) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  animation-delay: 8s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 235, 59, 0.3) 0%, transparent 70%);
  top: 48%;
  left: 45%;
  animation-delay: 16s;
}

@keyframes float-orb-3d {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate3d(100px, -80px, 50px) scale(1.2) rotate(90deg);
  }
  50% {
    transform: translate3d(-80px, 100px, -30px) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translate3d(120px, 60px, 40px) scale(1.1) rotate(270deg);
  }
}

#particleContainer {
  display: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 214, 68, 0.55);
  border-radius: 50%;
  animation: particle-float 15s linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ffd644, #ffc107, #ffeb3b);
  z-index: 100;
  box-shadow: 0 0 20px rgba(255, 214, 68, 0.8);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 5vw, 4rem);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  width: 132px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 300;
}

.nav-links a {
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.hero,
.section {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 4rem);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
}

.inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  color: rgba(255, 214, 68, 0.72);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 300;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-top: 1.35rem;
  font-size: clamp(2.8rem, 6.8vw, 6rem);
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  max-width: 860px;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.gold,
.gradient-gold {
  background: linear-gradient(135deg, #ffd644 0%, #ffc107 30%, #ffeb3b 55%, #ffd644 80%, #ffc107 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow-intense 5s ease infinite;
}

@keyframes gradient-flow-intense {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.lead {
  max-width: 740px;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 300;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.75rem;
}

.cta,
.ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease;
}

.cta {
  background: linear-gradient(135deg, #ffd644, #ffc107);
  color: #000;
  box-shadow:
    0 0 30px rgba(255, 214, 68, 0.4),
    0 0 80px rgba(255, 214, 68, 0.18);
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.cta:hover::before {
  left: 200%;
}

.cta:hover,
.ghost:hover {
  transform: translateY(-4px) scale(1.03);
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.card {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 214, 68, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 214, 68, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 214, 68, 0.16);
}

.card p,
.section p,
li {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.list {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
}

.list li {
  margin: 0.8rem 0;
}

.faq {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-zoom {
  transform: scale(0.92);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (max-width: 820px) {
  .nav {
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
  }

  .nav-links {
    max-width: 72%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.8rem;
    font-size: 0.82rem;
    padding-bottom: 0.2rem;
  }

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

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

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

  .actions,
  .cta,
  .ghost {
    width: 100%;
  }
}
