:root {
  --bg: #f9f6ff;
  --bg-soft: #f5f3ff;
  --primary: #936fe7;
  --primary-dark: #412f87;
  --accent: #d6a138;
  --text: #0f172a;
  --muted: #6b7280;
  --surface: #ffffff;
  --border-subtle: rgba(148, 163, 184, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: rgba(0, 0, 0, 0.89);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.preloader.hidden {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-orbit {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-core {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #f9fafb, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 1),
    0 18px 40px rgba(0, 0, 0, 0.75);
}

.preloader-core img {
  width: 100%;
  height: auto;
  display: block;
}

.preloader-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid transparent;
  border-top-color: rgba(147, 111, 231, 0.9);
  border-right-color: rgba(147, 111, 231, 0.6);
  border-left-color: rgba(214, 161, 56, 0.7);
  border-bottom-color: rgba(148, 163, 184, 0.5);
  animation: preloader-spin 1.8s linear infinite;
}

.preloader-ring-1 {
  width: 88px;
  height: 88px;
}

.preloader-ring-2 {
  width: 108px;
  height: 108px;
  animation-duration: 2.4s;
  animation-direction: reverse;
  opacity: 0.8;
}

.preloader-ring-3 {
  width: 128px;
  height: 128px;
  animation-duration: 3s;
  opacity: 0.6;
}

.preloader-text-block {
  text-align: center;
}

.preloader-title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e5e7eb;
}

.preloader-subtitle {
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 4px;
}

.preloader-bar {
  margin-top: 10px;
  width: 220px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 1);
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.preloader-bar-fill {
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #a855f7, #6366f1, #fbbf24);
  animation: preloader-swipe 1.3s ease-in-out infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(147, 111, 231, 0.18) 0, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(214, 161, 56, 0.1) 0, transparent 60%),
    linear-gradient(135deg, rgba(148, 163, 184, 0.08), transparent 45%, rgba(148, 163, 184, 0.04));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.countdown-bar {
  position: sticky;
  top: 0;
  z-index: 15;
  background:
    radial-gradient(circle at 0 0, rgba(147, 111, 231, 0.5), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(214, 161, 56, 0.4), transparent 60%),
    rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 24px 12px;
  color: #e5e7eb;
  font-size: 13px;
}

.countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: rgba(249, 250, 251, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.countdown-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #facc15;
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.85);
}

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0 0, rgba(147, 111, 231, 0.35), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(248, 250, 252, 0.25), transparent 65%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(191, 219, 254, 0.8);
  box-shadow:
    0 14px 40px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.countdown-ended {
  opacity: 0.75;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
  padding-inline: 2px;
}

.countdown-number {
  font-size: 16px;
  font-weight: 700;
  color: #facc15;
}

.countdown-text {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(209, 213, 219, 0.85);
}

.countdown-separator {
  color: rgba(148, 163, 184, 0.9);
  font-weight: 600;
}

.countdown-note {
  font-size: 11px;
  color: rgba(209, 213, 219, 0.9);
}

.countdown-cta {
  margin-left: auto;
}

@media (max-width: 768px) {
  .countdown-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-block: 8px 10px;
  }

  .countdown-label {
    font-size: 11px;
  }

  .countdown-note {
    font-size: 10px;
  }
}

header {
  padding: 20px 24px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 20% 0%, #f9f5ff 0, transparent 55%), linear-gradient(135deg, #936fe7, #c3a5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9f5ff;
  font-weight: 700;
  font-size: 16px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.brand-tagline {
  font-size: 12px;
  color: var(--muted);
}

.hero-cta-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    rgba(147, 111, 231, 0.2);
  color: #fdfbff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(0);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background-color 0.12s ease,
    border-color 0.12s ease;
}

.cta-button::before {
  content: "★";
  font-size: 0.9em;
  opacity: 0.9;
  transform-origin: center;
}

.cta-button:hover {
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 55%),
    rgba(147, 111, 231, 0.3);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: cta-wiggle 0.6s ease-in-out infinite;
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 16px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.95),
    inset 0 3px 6px rgba(15, 23, 42, 0.9);
  background: rgba(76, 56, 133, 0.6);
}

@keyframes cta-wiggle {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-1px) rotate(-1.2deg);
  }
  50% {
    transform: translateY(0) rotate(0.6deg);
  }
  75% {
    transform: translateY(-0.5px) rotate(-0.6deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: flex-end;
}

.hero-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-logo-row {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

.hero-logo {
  height: 32px;
  width: auto;
  opacity: 0.9;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 4.5rem 0 3.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-main-title {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: #f9fafb;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-line {
  display: block;
  width: 100%;
  text-align: center;
}

.hero-title-line + .hero-title-line {
  margin-bottom: 0.25rem;
}

.hero-title-line-kicker {
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.85);
}

.hero-title-line-main {
  font-size: 1.05em;
  font-weight: 800;
  text-transform: none;
  background: linear-gradient(120deg, #e5e7eb, #c4b5fd, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-line-sub {
  font-size: 0.9em;
  font-weight: 500;
  color: #f9fafb;
}

@media (max-width: 720px) {
  .hero-main-title {
    font-size: clamp(2rem, 7vw, 2.4rem);
  }
}

.hero-subheadline {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.9);
  margin: 0 auto 2rem;
  max-width: 40rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-subheadline-box {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(147, 111, 231, 0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(214, 161, 56, 0.25), transparent 55%),
    rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.7);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.hero-subheadline-box p {
  margin: 0.15rem 0;
  text-align: center;
}

.hero-subheadline-line-1 {
  font-weight: 600;
  color: #e5e7eb;
}

.hero-subheadline-line-2 {
  font-size: 0.96rem;
  color: rgba(209, 213, 219, 0.9);
}

.hero-cta-btn {
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.hero-cta-btn .cta-text {
  font-weight: 700;
}

.hero-cta-btn .cta-arrow {
  font-size: 1.1rem;
}

.urgency-strip {
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.9);
}

/* Bottom hero image */
.hero-bottom-image {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.hero-bottom-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 3.5rem 0 2.75rem;
  }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  margin-top: 1.75rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(209, 213, 219, 0.8);
  font-size: 0.85rem;
}

/* Sticky CTA + Social Proof */
.sticky-cta-wrapper {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 40;
  pointer-events: none;
}

.social-proof-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 280px;
}

.social-proof-card {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(20px);
  animation: socialProofIn 0.4s ease-out forwards;
}

.social-proof-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #facc15, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #020617;
}

.social-proof-text-strong {
  font-weight: 600;
}

.social-proof-meta {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.9);
}

.sticky-cta-button {
  pointer-events: auto;
  padding: 1rem 2.4rem;
  font-size: 0.9rem;
}

@keyframes socialProofIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .sticky-cta-wrapper {
    right: 1rem;
    bottom: 1rem;
  }

  .social-proof-stack {
    max-width: 240px;
  }

  .sticky-cta-button {
    padding-inline: 1.6rem;
  }
}

.mouse-shell {
  width: 26px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(209, 213, 219, 0.8);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  overflow: hidden;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.95);
  animation: mouseScroll 1.4s ease-in-out infinite;
}

.scroll-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes mouseScroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

.geometric-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(147, 111, 231, 0.55), transparent);
  animation: gridPulse 5s infinite ease-in-out;
}

.grid-line-1,
.grid-line-2,
.grid-line-3 {
  width: 100%;
  height: 1px;
  left: 0;
}

.grid-line-1 {
  top: 25%;
}
.grid-line-2 {
  top: 50%;
  animation-delay: -1.2s;
}
.grid-line-3 {
  top: 75%;
  animation-delay: -2.4s;
}

.grid-line-4,
.grid-line-5,
.grid-line-6 {
  width: 1px;
  height: 100%;
  top: 0;
}

.grid-line-4 {
  left: 20%;
}
.grid-line-5 {
  left: 50%;
  animation-delay: -1.4s;
}
.grid-line-6 {
  left: 80%;
  animation-delay: -2.8s;
}

.floating-cubes,
.energy-waves,
.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cube {
  position: absolute;
  background: linear-gradient(135deg, rgba(147, 111, 231, 0.6), rgba(76, 29, 149, 0.45));
  border-radius: 12px;
  border: 1px solid rgba(147, 111, 231, 0.9);
  box-shadow: 0 12px 30px rgba(76, 29, 149, 0.4);
  animation: cubeFloat 10s infinite ease-in-out;
  transform-style: preserve-3d;
}

.cube-1 {
  width: 56px;
  height: 56px;
  top: 18%;
  left: 12%;
}
.cube-2 {
  width: 72px;
  height: 72px;
  top: 62%;
  left: 78%;
  animation-delay: -3s;
}
.cube-3 {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 26%;
  animation-delay: -5s;
}
.cube-4 {
  width: 64px;
  height: 64px;
  top: 8%;
  left: 68%;
  animation-delay: -1.5s;
}
.cube-5 {
  width: 44px;
  height: 44px;
  top: 42%;
  left: 4%;
  animation-delay: -4s;
}

.cube-6 {
  width: 38px;
  height: 38px;
  top: 32%;
  left: 88%;
  animation-delay: -6s;
  animation-duration: 6.5s;
}

.cube-7 {
  width: 52px;
  height: 52px;
  top: 86%;
  left: 68%;
  animation-delay: -7.5s;
  animation-duration: 9.5s;
}

.wave {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(147, 111, 231, 0.65);
  animation: waveExpand 7s infinite ease-out;
}

.wave-1 {
  width: 160px;
  height: 160px;
  top: 26%;
  left: 22%;
}
.wave-2 {
  width: 210px;
  height: 210px;
  top: 52%;
  left: 60%;
  animation-delay: -2.5s;
}
.wave-3 {
  width: 130px;
  height: 130px;
  top: 70%;
  left: 42%;
  animation-delay: -4s;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #7c3aed;
  box-shadow: 0 0 12px rgba(147, 111, 231, 0.9);
  animation: particleFloat 11s infinite linear;
}

.particle-1 {
  top: 8%;
  left: 10%;
}
.particle-2 {
  top: 22%;
  left: 32%;
  animation-delay: -1.5s;
}
.particle-3 {
  top: 44%;
  left: 60%;
  animation-delay: -3s;
}
.particle-4 {
  top: 64%;
  left: 18%;
  animation-delay: -4.5s;
}
.particle-5 {
  top: 82%;
  left: 84%;
  animation-delay: -6s;
}
.particle-6 {
  top: 34%;
  left: 88%;
  animation-delay: -7.5s;
}
.particle-7 {
  top: 72%;
  left: 48%;
  animation-delay: -9s;
}
.particle-8 {
  top: 54%;
  left: 6%;
  animation-delay: -10.5s;
}

.particle-9 {
  top: 16%;
  left: 48%;
  animation-delay: -2.2s;
}

.particle-10 {
  top: 36%;
  left: 74%;
  animation-delay: -3.8s;
}

.particle-11 {
  top: 58%;
  left: 36%;
  animation-delay: -5.4s;
}

.particle-12 {
  top: 88%;
  left: 16%;
  animation-delay: -7.1s;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-shell {
  position: relative;
  border-radius: 32px;
  padding: 26px 24px 28px;
  background: radial-gradient(circle at 0% 0%, rgba(147, 111, 231, 0.34), transparent 60%), radial-gradient(circle at 100% 100%, rgba(214, 161, 56, 0.24), transparent 60%), linear-gradient(145deg, rgb(15 23 42 / 38%), rgb(15 23 42 / 77%));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow:
    0 32px 80px rgba(15, 23, 42, 0.8),
    0 0 0 1px rgba(15, 23, 42, 0.6);
  color: #e5e7eb;
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.05), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.7);
  color: #fecaca;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97373;
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.8);
}

.hero-date-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-main-block {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.9);
  margin: 0 0 10px;
}

.hero-title {
  font-size: clamp(2.5rem, 4.2vw, 3.3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
  color: #f9fafb;
}

.hero-gradient-text {
  background: linear-gradient(120deg, #e5e7eb, #c4b5fd, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(209, 213, 219, 0.88);
  max-width: 34rem;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 20px;
}

.hero-cta-main {
  padding-inline: 22px;
  padding-block: 11px;
  font-size: 15px;
  background-image: linear-gradient(120deg, #a855f7, #6366f1, #fbbf24);
  box-shadow:
    0 12px 35px rgba(79, 70, 229, 0.6),
    0 0 0 1px rgba(248, 250, 252, 0.12);
}

.hero-guarantee {
  font-size: 12px;
  color: rgba(209, 213, 219, 0.86);
}

.hero-micro-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-micro-item {
  padding: 10px 12px;
  border-radius: 14px;
  background: radial-gradient(circle at 0 0, rgba(147, 111, 231, 0.16), transparent 65%);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-micro-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(156, 163, 175, 0.96);
  margin-bottom: 4px;
}

.hero-micro-value {
  font-size: 13px;
  color: #e5e7eb;
}

.hero-orbit-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(249, 250, 251, 0.06), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(147, 51, 234, 0.3), rgba(15, 23, 42, 1));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.hero-orbit-gradient {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(244, 244, 245, 0.18), transparent 55%),
    conic-gradient(from 140deg, rgba(168, 85, 247, 0.9), rgba(56, 189, 248, 0.1), rgba(249, 115, 22, 0.9), rgba(168, 85, 247, 0.9));
  opacity: 0.7;
  filter: blur(10px);
}

.hero-orbit-inner {
  position: relative;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at 50% 0, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.96));
}

.hero-avatar-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-avatar-ring {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  padding: 2px;
  background: conic-gradient(from 200deg, #a855f7, #fbbf24, #6366f1, #a855f7);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.75);
}

.hero-avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: block;
  object-fit: cover;
}

.hero-orbit-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(209, 213, 219, 0.9);
}

.hero-orbit-name {
  font-size: 16px;
  font-weight: 600;
  color: #f9fafb;
}

.hero-orbit-sub {
  font-size: 12px;
  color: rgba(209, 213, 219, 0.8);
}

.hero-orbit-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.hero-orbit-metric {
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.hero-orbit-number {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #facc15;
}

.hero-orbit-text {
  display: block;
  font-size: 11px;
  color: rgba(209, 213, 219, 0.85);
}

.hero-orbit-footnote {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(209, 213, 219, 0.8);
  font-style: italic;
}

h2.section-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.section-lead {
  color: var(--muted);
  max-width: 38rem;
}

.section {
  position: relative;
  padding: 40px 0;
}

.section-inner {
  position: relative;
  z-index: 1;
}

/* Alternate section backgrounds starting after hero (#reality and onward) */
main > section:nth-of-type(2n + 3) {
  background-color: #ffffff;
}

/* CTA variant on light (white) sections */
main > section:nth-of-type(2n + 3) .cta-button {
  border-color: #020617;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.8), transparent 55%),
    rgba(15, 23, 42, 0.06);
  color: #020617;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

main > section:nth-of-type(2n + 3) .cta-button:hover {
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.9), transparent 55%),
    rgba(15, 23, 42, 0.1);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

main > section:nth-of-type(2n + 3) .cta-button:active {
  background: rgba(15, 23, 42, 0.16);
  color: #f9fafb;
  box-shadow:
    0 6px 14px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(15, 23, 42, 0.2),
    inset 0 3px 6px rgba(15, 23, 42, 0.35);
}

/* High-impact content sections inspired by webinar layouts */

.feature-section {
  padding: 56px 0;
}

.feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.feature-panel {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 30px 30px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
}

.feature-panel.dark {
  background: linear-gradient(145deg, #5b21b6, #7c3aed);
  color: #f9fafb;
}

.feature-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
  margin-bottom: 8px;
}

.feature-title {
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 14px;
  color: #111827;
}

.feature-panel.dark .feature-title {
  color: #f9fafb;
}

.feature-title span {
  text-decoration: underline;
  text-decoration-thickness: 0.18em;
  text-decoration-color: #a855f7;
  text-underline-offset: 0.18em;
}

.feature-body {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 36rem;
}

.feature-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-top: 4px;
}

.feature-panel.dark .feature-subtitle {
  color: #f9fafb;
}

.feature-panel.dark .feature-body {
  color: rgba(249, 250, 251, 0.9);
}

.feature-reasons {
  margin-top: 26px;
  display: grid;
  gap: 22px;
}

.feature-reason {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.feature-reason-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #a855f7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.feature-reason-content h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
}

.feature-panel.dark .feature-reason-content h3 {
  color: #f9fafb;
}

.feature-reason-content p {
  margin: 0;
  font-size: 0.96rem;
  color: #4b5563;
}

.feature-panel.dark .feature-reason-content p {
  color: rgba(249, 250, 251, 0.9);
}

.feature-cta-row {
  margin-top: 26px;
}

.feature-cta-row .cta-button {
  padding-inline: 24px;
}

.feature-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #6b7280;
}

.feature-panel.dark .feature-note {
  color: rgba(209, 213, 219, 0.95);
}

.feature-media-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(147, 51, 234, 0.3), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.35), transparent 60%),
    linear-gradient(135deg, #0f172a, #111827);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.8);
}

.feature-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.feature-media-figure {
  margin: 0;
}

.feature-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
  background-color: #020617;
}

.feature-media-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  font-size: 0.85rem;
  color: rgba(249, 250, 251, 0.9);
}

.promise-section {
  padding: 56px 0 52px;
}

.promise-card {
  border-radius: 32px;
  padding: 32px 30px 30px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #f9fafb;
  box-shadow: 0 32px 90px rgba(88, 28, 135, 0.9);
}

.promise-title {
  font-size: 2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.promise-text {
  font-size: 1.02rem;
  line-height: 1.7;
}

.promise-highlight {
  background: #fbbf24;
  color: #111827;
  padding: 2px 6px;
}

.promise-cta-row {
  margin-top: 24px;
}

.promise-cta-row .cta-button {
  background: #a855f7;
}

/* Global section CTAs */
.section-cta-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.section-cta-button {
  padding: 1.6rem 4.35rem;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  box-shadow:
    0 18px 50px rgba(79, 70, 229, 0.7),
    0 0 0 1px rgba(248, 250, 252, 0.2);
}

.testimonial-marquee-shell {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-intro {
  margin-top: 80px;
  text-align: center;
  padding: 24px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #020617, #020617 40%, #111827 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.85);
}

.testimonial-intro-eyebrow {
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248, 250, 252, 0.92);
  margin-bottom: 6px;
}

.testimonial-intro-title {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(120deg, #f9fafb, #e5e7eb, #9ca3af);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-marquee {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.testimonial-track-row-1 {
  animation: testimonialMarqueeRight 38s linear infinite;
  animation-play-state: running;
}

.testimonial-track-row-2 {
  animation: testimonialMarqueeLeft 42s linear infinite;
  animation-play-state: running;
}

.testimonial-track-row-3 {
  animation: testimonialMarqueeRightFast 24s linear infinite;
  animation-play-state: running;
}

.testimonial-marquee-shell:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  border-radius: 20px;
  padding: 18px 18px 18px;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
  color: rgba(249, 250, 251, 0.92);
  position: relative;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  animation: testimonialFadeUp 0.7s ease-out forwards;
  max-width: 315px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  padding: 2px;
  background: conic-gradient(from 220deg, #a855f7, #fbbf24, #6366f1, #a855f7);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.7);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.testimonial-title {
  font-size: 0.95rem;
  margin: 0 0 6px;
  color: rgba(249, 250, 251, 0.96);
}

.testimonial-copy {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 10px;
  color: rgba(209, 213, 219, 0.92);
}

.testimonial-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(156, 163, 175, 0.98);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(168, 85, 247, 0.28), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(250, 204, 21, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(4px) scale(1);
  box-shadow:
    0 24px 55px rgba(15, 23, 42, 0.92),
    0 0 0 1px rgba(148, 163, 184, 0.6);
  border-color: rgba(191, 219, 254, 0.7);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
}

.testimonial-card:hover::before {
  opacity: 1;
}

.card {
  padding: 28px 26px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.9), transparent 65%), var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 26px 60px rgba(148, 163, 184, 0.25);
}

.details-card {
  position: relative;
  border-radius: 32px;
  padding: 30px 26px 32px;
  background:
    radial-gradient(circle at 0 0, rgba(147, 111, 231, 0.45), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(214, 161, 56, 0.35), transparent 60%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow:
    0 32px 90px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  overflow: hidden;
}

.details-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 200deg, rgba(147, 111, 231, 0.3), rgba(56, 189, 248, 0.1), rgba(214, 161, 56, 0.3), rgba(147, 111, 231, 0.3));
  opacity: 0.2;
  filter: blur(18px);
  pointer-events: none;
}

.details-header {
  position: relative;
  text-align: left;
  margin-bottom: 26px;
}

.details-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(191, 219, 254, 0.98);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.4);
}

.details-eyebrow::before {
  content: "⚙";
  font-size: 0.85rem;
}

.details-title {
  font-size: 2rem;
  margin: 10px 0 8px;
  color: #f9fafb;
  letter-spacing: -0.02em;
}

.details-lead {
  margin: 0;
  font-size: 1rem;
  color: rgba(209, 213, 219, 0.96);
  max-width: 40rem;
}

.details-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
  position: relative;
}

.details-grid::before {
  content: "";
  position: absolute;
  inset-block: 6px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(148, 163, 184, 0.5), transparent);
  opacity: 0.7;
}

.details-column {
  border-radius: 22px;
  padding: 20px 20px 22px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.details-column::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

.details-column-free {
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.details-column-free::before {
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.3), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.25), transparent 60%);
}

.details-column-vip {
  background: radial-gradient(circle at 0 0, rgba(30, 64, 175, 0.96), rgba(15, 23, 42, 1));
  border: 1px solid rgba(191, 219, 254, 0.95);
}

.details-column-vip::before {
  background:
    radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.35), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.25), transparent 60%);
}

.details-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.details-pill-free {
  background: radial-gradient(circle at 0 0, rgba(22, 163, 74, 0.35), transparent 60%);
  border: 1px solid rgba(74, 222, 128, 0.9);
  color: rgba(240, 253, 250, 0.98);
}

.details-pill-free::before {
  content: "GA";
  font-weight: 700;
}

.details-pill-vip {
  background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.32), transparent 60%);
  border: 1px solid rgba(252, 211, 77, 0.95);
  color: rgba(254, 249, 195, 0.98);
}

.details-pill-vip::before {
  content: "VIP";
  font-weight: 700;
}

.details-column-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #f9fafb;
}

.details-copy {
  margin: 0 0 16px;
  font-size: 0.96rem;
  color: rgba(219, 234, 254, 0.95);
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.details-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.details-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-top: 7px;
  background: rgba(45, 212, 191, 0.98);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.95);
}

.details-dot-vip {
  background: rgba(250, 204, 21, 0.98);
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.95);
}

.details-list-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.98);
}

.details-list-text {
  font-size: 0.97rem;
  color: #e5e7eb;
}

.details-footnote {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(219, 234, 254, 0.95);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.bullets li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  color: var(--muted);
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 7px;
}

.columns-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.tag {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(147, 111, 231, 0.1);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.faq-item {
  padding: 14px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.faq-item:first-of-type {
  border-top: none;
}

.faq-q {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--muted);
}

.text-accent {
  color: var(--accent);
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.1;
    transform: scaleX(0.9);
  }
  50% {
    opacity: 0.6;
    transform: scaleX(1.1);
  }
}

@keyframes cubeFloat {
  0% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    opacity: 0.25;
  }
  25% {
    transform: translateY(-20px) rotateX(90deg) rotateY(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-40px) rotateX(180deg) rotateY(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-20px) rotateX(270deg) rotateY(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0px) rotateX(360deg) rotateY(360deg);
    opacity: 0.25;
  }
}

@keyframes waveExpand {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }
  60% {
    transform: scale(1.6);
    opacity: 0.25;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-90vh) translateX(40px);
    opacity: 0;
  }
}

@keyframes preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-swipe {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(120%);
  }
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-card {
    margin-top: 24px;
  }

  .split-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .columns-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@keyframes testimonialFadeUp {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(2px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes testimonialMarqueeRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes testimonialMarqueeLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes testimonialMarqueeRightFast {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


