/* ===========================
   Variables & Reset
   =========================== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a1f35;
  --accent-primary: #a855f7;
  --accent-secondary: #ec4899;
  --accent-gold: #f59e0b;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --gradient-accent: linear-gradient(135deg, #a855f7, #ec4899);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #f97316);
  --glass-border: rgba(255, 255, 255, 0.06);
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 50px;
  /* Navbar */
  --nav-padding: 1rem;
  --nav-logo-height: 72px;
  /* Nav CTA button */
  --nav-btn-bg: linear-gradient(135deg, #a855f7, #ec4899);
  --nav-btn-text: #fff;
  --nav-btn-shadow: none;
  --nav-btn-shadow-hover: 0 4px 16px rgba(168, 85, 247, 0.35);
  --nav-btn-radius: 50px;
  /* Hero button */
  --hero-btn-bg: linear-gradient(135deg, #f59e0b, #f97316);
  --hero-btn-text: #0a0e1a;
  --hero-btn-shadow: 0 4px 24px rgba(245, 158, 11, 0.3);
  --hero-btn-shadow-hover: 0 8px 36px rgba(245, 158, 11, 0.45);
  --hero-btn-radius: 50px;
  /* Hero image */
  --hero-img-width: 110vw;
  --hero-img-shadow: drop-shadow(0 20px 60px rgba(168, 85, 247, 0.3));
  --hero-img-margin-top: 3rem;
  /* About image */
  --about-img-width: 180px;
  /* CTA image */
  --cta-img-width: 80px;
  /* Glow effects */
  --hero-glow: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  --hero-glow-size: 600px;
  --about-glow: drop-shadow(0 10px 40px rgba(245, 158, 11, 0.3));
  /* CTA banner button */
  --cta-btn-bg: linear-gradient(135deg, #f59e0b, #f97316);
  --cta-btn-text: #0a0e1a;
  --cta-btn-shadow: 0 4px 24px rgba(245, 158, 11, 0.3);
  --cta-btn-shadow-hover: 0 8px 36px rgba(245, 158, 11, 0.45);
  --cta-btn-radius: 50px;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1000px;
  --pad: 1.25rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.cms-ready {
  opacity: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===========================
   Shared
   =========================== */
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

.section-title--left {
  text-align: left;
}

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

/* Hero button */
.hero .btn--gold {
  background: var(--hero-btn-bg);
  color: var(--hero-btn-text);
  box-shadow: var(--hero-btn-shadow);
  border-radius: var(--hero-btn-radius);
}

.hero .btn--gold:hover {
  box-shadow: var(--hero-btn-shadow-hover);
}

/* CTA banner button */
.cta .btn--gold {
  background: var(--cta-btn-bg);
  color: var(--cta-btn-text);
  box-shadow: var(--cta-btn-shadow);
  border-radius: var(--cta-btn-radius);
}

.cta .btn--gold:hover {
  box-shadow: var(--cta-btn-shadow-hover);
}

/* ===========================
   Navbar
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--nav-padding) 0;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.35s ease;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav__logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__logo-img {
  height: var(--nav-logo-height);
  width: auto;
}


.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links .nav__cta {
  background: var(--nav-btn-bg);
  color: var(--nav-btn-text);
  padding: 0.5rem 1.25rem;
  border-radius: var(--nav-btn-radius);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--nav-btn-shadow);
}

.nav__links .nav__cta:hover {
  box-shadow: var(--nav-btn-shadow-hover);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 5rem var(--pad) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.nav-drawer.is-open {
  transform: translateY(0);
}

.nav-drawer a {
  font-family: var(--font);
  font-size: 1.1rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-drawer .nav__cta {
  display: inline-block;
  background: var(--nav-btn-bg);
  color: var(--nav-btn-text);
  padding: 0.65rem 1.5rem;
  border-radius: var(--nav-btn-radius);
  font-weight: 600;
  text-align: center;
  border: none;
  margin-top: 0.5rem;
}

/* ===========================
   Hero — Centered Showcase
   =========================== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(6rem, 21vh, 14rem) var(--pad) 1.5rem;
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}

.hero__glow {
  position: absolute;
  width: var(--hero-glow-size);
  height: var(--hero-glow-size);
  background: var(--hero-glow);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  width: 100%;
  flex: 1;
  padding-bottom: 2rem;
}

.hero__title,
.hero__sub,
.hero__container > .btn {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, var(--hero-img-ty, -65%));
  width: 110vw;
  max-width: none;
  height: auto;
  filter: var(--hero-img-shadow);
  z-index: 1;
}

.hero__img img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__img[data-anim="float"] { animation: imgFloat 4s ease-in-out infinite; }
.hero__img[data-anim="pulse"] { animation: imgPulse 3s ease-in-out infinite; }
.hero__img[data-anim="none"]  { animation: none; }

@keyframes imgFloat {
  0%, 100% { transform: translate(-50%, var(--hero-img-ty, -65%)); }
  50% { transform: translate(-50%, calc(var(--hero-img-ty, -65%) - 14px)); }
}

@keyframes imgPulse {
  0%, 100% { transform: translate(-50%, var(--hero-img-ty, -65%)) scale(1); }
  50% { transform: translate(-50%, var(--hero-img-ty, -65%)) scale(1.05); }
}

.hero__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-xl);
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-top: clamp(4rem, 15vh, 12rem);
}

.hero__sub {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}


/* ===========================
   Marquee
   =========================== */
.marquee {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.85rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee__track span::before {
  content: '\2726';
  margin-right: 0.75rem;
  color: var(--accent-primary);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ===========================
   Steps — Timeline
   =========================== */
.steps {
  padding: 5rem 0;
}

.steps__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary), transparent);
}

.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
}

.timeline__marker svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.timeline__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline__content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 480px;
}

/* ===========================
   About — Split
   =========================== */
.about {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.about__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.about__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.about__text-col p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__img-col {
  width: var(--about-img-width);
  flex-shrink: 0;
}

.about__img {
  filter: var(--about-glow);
  animation: float 5s ease-in-out infinite;
}

/* ===========================
   Features — Alternating Rows
   =========================== */
.features {
  padding: 5rem 0;
}

.features__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.feature-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.feature-row:hover {
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.12);
  transform: translateX(6px);
}

.feature-row__icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.feature-row__icon {
  width: 100%;
  height: 100%;
}

.feature-row__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.feature-row__body p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ===========================
   CTA
   =========================== */
.cta {
  padding: 3rem 0;
  background: var(--bg-secondary);
}

.cta__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.cta__inner {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.06));
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.cta__img {
  width: var(--cta-img-width);
  filter: drop-shadow(0 6px 20px rgba(168, 85, 247, 0.25));
}

.cta__img[data-anim="float"] { animation: imgFloat 3s ease-in-out infinite; }
.cta__img[data-anim="pulse"] { animation: imgPulse 3s ease-in-out infinite; }
.cta__img[data-anim="none"]  { animation: none; }

.cta__text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.cta__text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===========================
   Footer
   =========================== */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 800;
}

.footer__logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.65rem;
}

.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.footer__col a:hover { color: var(--accent-primary); }

.footer__payment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1.15rem;
}

.footer__payment span {
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.72rem;
}

/* ===========================
   Animations
   =========================== */
/* Reveal: elements start visible by default.
   JS adds .reveal-ready to <body> then .reveal to each element. */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-ready .timeline__item.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-ready .timeline__item.reveal:nth-child(3) { transition-delay: 0.3s; }

.reveal-ready .feature-row.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal-ready .feature-row.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal-ready .feature-row.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal-ready .feature-row.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal-ready .feature-row.reveal:nth-child(6) { transition-delay: 0.35s; }

/* ===========================
   Tablet (640px+)
   =========================== */
@media (min-width: 640px) {
  .nav__links {
    display: flex;
  }

  .nav__toggle {
    display: none;
  }


  .hero__img {
    --hero-img-ty: -85%;
    width: var(--hero-img-width-tablet, 480px);
    max-width: 95vw;
  }

  .hero__title {
    font-size: 3rem;
  }

  .about__container {
    flex-direction: row;
    gap: 3rem;
  }

  .about__img-col {
    width: var(--about-img-width-tablet, 220px);
  }

  .cta__inner {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem 2rem;
  }

  .cta__text {
    flex: 1;
  }
}

/* ===========================
   Desktop (1024px+)
   =========================== */
@media (min-width: 1024px) {
  :root { --pad: 2rem; }

  .hero__img {
    --hero-img-ty: -85%;
    width: var(--hero-img-width-desktop, 1080px);
    max-width: 95vw;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .timeline {
    padding-left: 3.5rem;
  }

  .timeline::before {
    left: 19px;
  }

  .timeline__marker {
    left: -3.5rem;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .about__container {
    gap: 5rem;
  }

  .about__img-col {
    width: var(--about-img-width-desktop, 260px);
  }

  .section-title {
    font-size: 2.25rem;
  }

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__cols {
    gap: 3rem;
  }
}
