.top-marquee {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--ticker);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #050508, #170923, #050508);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: max-content;
  animation: marquee 28s linear infinite;
  color: #e7e7ef;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span {
  padding-left: 24px;
}

.marquee-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple2);
  box-shadow: 0 0 16px var(--purple);
  flex: 0 0 auto;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dbdbe5;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--purple2);
  box-shadow: 0 0 14px var(--purple2);
  flex: 0 0 auto;
}

.eyebrow {
  color: #dcdce8;
  font-size: 12px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .22s ease, opacity .22s ease, border-color .22s ease, box-shadow .22s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--purple), #6d20d4);
  box-shadow: 0 14px 34px rgba(139, 44, 255, .30);
  color: #fff;
}

.ghost {
  background: rgba(255, 255, 255, .06);
  border-color: var(--line2);
  color: #fff;
}

.hero-actions,
.apply-actions,
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-card {
  position: absolute;
  border: 1px solid var(--line2);
  border-radius: 18px;
  background: rgba(8, 8, 13, .70);
  backdrop-filter: blur(16px);
  padding: 16px 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .38);
}

.floating-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.card-one {
  right: 8%;
  top: 19%;
}

.card-two {
  left: 1%;
  bottom: 14%;
}

.logo-strip {
  margin: 14px 0 0;
  height: 68px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 42px;
  min-width: max-content;
  animation: marquee 36s linear infinite reverse;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  color: #aaaab6;
  letter-spacing: -.3px;
  white-space: nowrap;
}

.logo-track span:nth-child(3n) {
  color: #e8e8f0;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 110;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #0da34a);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .42);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: transform .22s ease;
}

.whatsapp:hover {
  transform: translateY(-3px);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 130;
  width: min(460px, calc(100vw - 48px));
  padding: 22px;
  border-radius: 22px;
  background: rgba(7, 7, 10, .92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 44, 255, .15);
  border: 1px solid rgba(189, 116, 255, .35);
  border-radius: 10px;
  color: var(--purple2);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-close:hover {
  background: rgba(139, 44, 255, .24);
}

.cookie-banner h2 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 7px;
  padding-right: 32px;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.cookie-actions {
  margin-top: 18px;
  justify-content: space-between;
  align-items: center;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0 16px;
}

.text-button {
  background: transparent;
  border: 0;
  text-decoration: underline;
  color: #dcdce6;
  cursor: pointer;
}

#acceptCookies {
  min-width: 110px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
}

.supra-gift {
  position: fixed;
  left: 8vw;
  top: 78vh;
  width: 68px;
  height: 68px;
  z-index: 9999;
  text-decoration: none;
  animation: giftRoam 42s ease-in-out infinite;
}

.gift-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter:
    drop-shadow(0 0 18px rgba(185, 53, 255, .55))
    drop-shadow(0 0 28px rgba(32, 200, 255, .25));
  animation: giftFloat 4.8s ease-in-out infinite;
}

.gift-glow {
  fill: rgba(255, 255, 255, .035);
  stroke: rgba(255, 255, 255, .11);
}

.gift-box-main,
.gift-lid,
.gift-bow {
  fill: url(#giftGrad);
  stroke: rgba(255, 255, 255, .38);
  stroke-width: 1.4;
}

.gift-ribbon-v,
.gift-ribbon-h {
  fill: rgba(255, 255, 255, .88);
}

.gift-shine {
  fill: none;
  stroke: rgba(255, 255, 255, .7);
  stroke-width: 3;
  stroke-linecap: round;
}

.gift-tooltip {
  position: absolute;
  left: 76px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(5, 5, 8, .88);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.supra-gift:hover {
  animation-play-state: paused;
}

.supra-gift:hover .gift-svg {
  transform: scale(1.12);
}

.supra-gift:hover .gift-tooltip {
  opacity: 1;
}

@keyframes giftRoam {
  0% {
    left: 8vw;
    top: 78vh;
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  14% {
    left: 28vw;
    top: 62vh;
  }

  27% {
    left: 72vw;
    top: 70vh;
  }

  39% {
    left: 84vw;
    top: 34vh;
  }

  52% {
    left: 54vw;
    top: 16vh;
  }

  66% {
    left: 18vw;
    top: 28vh;
  }

  78% {
    left: 38vw;
    top: 48vh;
  }

  91% {
    left: 74vw;
    top: 22vh;
    opacity: 1;
  }

  100% {
    left: 8vw;
    top: 78vh;
    opacity: 0;
  }
}

@keyframes giftFloat {
  0%,
  100% {
    transform: rotate(-7deg) scale(1);
  }

  50% {
    transform: rotate(8deg) scale(1.06);
  }
}

@media (max-width: 760px) {
  .top-marquee {
    height: var(--ticker);
  }

  .marquee-track {
    font-size: 9px;
    gap: 16px;
    animation-duration: 24s;
  }

  .marquee-track span {
    padding-left: 16px;
  }

  .section-kicker {
    font-size: 10px;
    gap: 10px;
  }

  .section-kicker::before {
    width: 26px;
  }

  .eyebrow {
    font-size: 10px;
    line-height: 1.45;
  }

  .btn {
    min-height: 48px;
    width: 100%;
  }

  .hero-actions,
  .apply-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .logo-strip {
    height: 54px;
    border-radius: 14px;
  }

  .logo-track {
    font-size: 11px;
    gap: 28px;
    animation-duration: 32s;
  }

  .floating-card {
    display: none;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 86px;
    width: auto;
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 18px;
  }

  .supra-gift {
    left: 16px !important;
    right: auto !important;
    top: auto !important;
    bottom: 82px !important;
    width: 54px !important;
    height: 54px !important;
    animation: none !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
  }

  .gift-svg {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    overflow: visible;
    animation: giftFloatMobile 4s ease-in-out infinite;
  }

  .gift-tooltip {
    display: none !important;
  }

  @keyframes giftFloatMobile {
    0%,
    100% {
      transform: translateY(0) rotate(-4deg);
    }

    50% {
      transform: translateY(-7px) rotate(4deg);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .logo-track,
  .supra-gift,
  .gift-svg {
    animation-duration: 120s;
  }
}

