/* RESET + VARIABLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-black: #000;
  --cyan-bright: #7ffcff;
  --cyan-dark: #004f61;
}

body {
  background: var(--bg-black);
  color: var(--cyan-bright);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  overflow-x: hidden; /* prevent accidental horizontal scroll from glows/shadows */
}

/* Keep images from overflowing their containers */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent layout shift when pages gain/lose vertical scrollbar */
html {
  overflow-y: scroll;
  /* Hide native scrollbars while preserving scroll functionality */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* WebKit browsers */
html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Floating scroll indicator placed bottom-center with pulsing glow */
.scroll-indicator {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 28px;
  height: 22px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.98;
}

/* V-shaped indicator made from two thin glowing bars */
.scroll-indicator::before,
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  width: 2px;
  height: 16px;
  background: var(--cyan-bright);
  transform-origin: top center;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(191,255,255,0.9), 0 0 22px rgba(127,255,255,0.18);
  will-change: transform, box-shadow;
}

.scroll-indicator::before {
  transform: translateX(-50%) rotate(-32deg);
  animation: vPulseLeft 1.2s ease-in-out infinite;
}

.scroll-indicator::after {
  transform: translateX(-50%) rotate(32deg);
  animation: vPulseRight 1.2s ease-in-out infinite;
}
.scroll-indicator.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

@keyframes vPulseLeft {
  0% { transform: translateX(-50%) rotate(-32deg); box-shadow: 0 0 6px rgba(127,255,255,0.35); }
  50% { transform: translateX(-50%) rotate(-32deg) translateY(4px); box-shadow: 0 0 20px rgba(191,255,255,0.95); }
  100% { transform: translateX(-50%) rotate(-32deg); box-shadow: 0 0 6px rgba(127,255,255,0.35); }
}

@keyframes vPulseRight {
  0% { transform: translateX(-50%) rotate(32deg); box-shadow: 0 0 6px rgba(127,255,255,0.35); }
  50% { transform: translateX(-50%) rotate(32deg) translateY(4px); box-shadow: 0 0 20px rgba(191,255,255,0.95); }
  100% { transform: translateX(-50%) rotate(32deg); box-shadow: 0 0 6px rgba(127,255,255,0.35); }
}

/* ========== NAVBAR (True Black with Neon Glow) ========== */
.navbar {
  width: 100%;
  background: #000; /* pure black */
  border-bottom: 1px solid rgba(127, 255, 255, 0.25);
  box-shadow:
    0 0 20px rgba(127, 255, 255, 0.15),
    inset 0 0 8px rgba(127, 255, 255, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- TRUE INSIDE-TEXT SHINE --- */
.nav-brand {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(
    120deg,
    var(--cyan-dark) 0%,
    var(--cyan-bright) 25%,
    var(--cyan-dark) 50%,
    var(--cyan-bright) 75%,
    var(--cyan-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-move 3s linear infinite;
}

.nav-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.nav-brand-link::after {
  content: "";
  position: absolute;
  inset: -6px;
}

@keyframes shine-move {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--cyan-bright);
  border-radius: 999px;
  transition: 0.3s;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: 0.4s ease;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 16px;
  border: 2px solid transparent;
  background: transparent;
  color: var(--cyan-bright);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.35s ease;
}

.nav-item:hover {
  border-color: var(--cyan-bright);
  background: #000;
  box-shadow:
    0 0 10px rgba(127, 255, 255, 0.8),
    0 0 25px rgba(127, 255, 255, 0.3);
  transform: scale(1.06);
}

/* SEARCH BAR */
.right-area {
  display: flex;
  align-items: center;
}
/* search removed */

/* UNDERLINE — glowing bar */
.nav-line {
  width: 100%;
  height: 2px;
  background: var(--cyan-bright);
  box-shadow:
    0 0 12px rgba(127, 255, 255, 0.6),
    0 0 32px rgba(127, 255, 255, 0.25);
}

/* Make navbar sticky only when the page opts-in via `body.sticky-nav` */
/* navbar is sticky by default */


/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000;
  padding: 80px 20px;
  gap: 10px;
}

.hero-title {
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 720px;
}

.hero-title span {
  color: var(--cyan-bright);
  text-shadow: 0 0 20px rgba(127, 255, 255, 0.7);
}

.hero-sub {
  margin-top: 14px;
  font-size: clamp(16px, 4.2vw, 20px);
  color: #7ffcffc5;
  letter-spacing: 1px;
  max-width: 560px;
}

/* ---------- SHINY BUTTON ---------- */
.hero-btn {
  margin-top: 42px;
  padding: 12px 36px;
  border: 2px solid var(--cyan-bright);
  border-radius: 30px;
  color: var(--cyan-bright);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(127, 255, 255, 0.9) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
}

.hero-btn:hover {
  background: var(--cyan-bright);
  color: #000;
  box-shadow: 0 0 25px rgba(127, 255, 255, 0.7);
  transform: scale(1.05);
}

.hero-btn:hover::before {
  opacity: 1;
  animation: btn-shine 0.8s linear;
}

@keyframes btn-shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1400; /* keep button above the mobile menu */
    order: 3;
    margin-left: auto; /* push hamburger to the right on small screens */
  }

  /* Mobile full-screen slide-in menu (does not change desktop behavior) */
  .nav-links {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    width: min(100%, 520px);
    height: 100svh; /* avoid overflow behind mobile browser bars */
    margin: 0 auto;
    padding:
      48px calc(20px + env(safe-area-inset-right, 0px))
      calc(48px + env(safe-area-inset-bottom, 0px))
      calc(20px + env(safe-area-inset-left, 0px));
    background: rgba(0,0,0,0.98);
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    align-items: center;
    justify-items: center;
    align-content: center;
    gap: 18px;
    overflow-y: auto;
    transform: translateX(100%); /* start off-screen to the right */
    transform-origin: right center;
    transition: transform 320ms cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    z-index: 1300; /* sit above page content but below hamburger */
    text-align: center;
  }

  /* Show the brand at the top of the mobile menu */
  .nav-links::before {
    content: "XHINE";
    grid-column: 1 / -1;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--cyan-bright);
    text-shadow: 0 0 15px rgba(127,255,255,0.6);
  }

  /* open state slides the menu in from the right */
  .nav-links.is-open {
    transform: translateX(0);
  }

  /* Reorder brand and right-area for better mobile layout */
  .nav-brand { order: 1; }
  .right-area { order: 2; }

  /* When the mobile menu is visible, prevent body scrolling */
  body.menu-open {
    overflow: hidden;
  }

  .nav-item {
    justify-content: center;
    width: auto;
    min-width: 140px;
  }

  .search-wrap {
    width: 42px;
  }

  .search-wrap.expanded {
    width: 170px;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (min-width: 769px) {
  .search-wrap {
    width: 200px;
  }
}

/* ========== PRODUCTS PAGE ========== */
.products-section {
  background: #000;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(50px, 7vw, 80px) clamp(16px, 5vw, 24px);
}

.products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100%, 900px);
}

.product-card {
  width: 100%;
  padding: clamp(22px, 5vw, 40px);
  border: 2px solid rgba(127,255,255,0.4);
  border-radius: 40px;
  background: rgba(0,0,0,0.6);
  box-shadow:
    0 0 15px rgba(127,255,255,0.2),
    inset 0 0 20px rgba(127,255,255,0.15);
  text-align: center;
}

.product-logo {
  width: 140px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(127,255,255,0.7));
}

.product-title {
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 800;
  color: var(--cyan-bright);
  text-shadow: 0 0 15px rgba(127,255,255,0.8);
  margin-bottom: 16px;
  text-align: center;
}

.product-sub {
  font-size: clamp(15px, 4.2vw, 18px);
  color: #9afcff;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.product-list {
  list-style: none;
  margin: 18px auto 32px;
  padding: 0;
  max-width: 640px;
  text-align: center;
}

.product-list li {
  margin-bottom: 14px;
  color: #9afcff;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 16px auto 24px;
  max-width: 720px;
  text-align: center;
}

.path-card {
  border: 2px solid rgba(127,255,255,0.4);
  border-radius: 16px;
  padding: 16px 14px;
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 15px rgba(127,255,255,0.18);
  color: #9afcff;
}

.path-card .escape-btn {
  width: 100%;
  max-width: 320px;
}

.product-card.glow:hover {
  box-shadow:
    0 0 25px rgba(127,255,255,0.5),
    0 0 60px rgba(127,255,255,0.2),
    inset 0 0 25px rgba(127,255,255,0.2);
  transition: box-shadow 0.4s ease;
}

.benefits-box {
  margin-top: 30px;
  border: 2px solid rgba(127,255,255,0.4);
  border-radius: 16px;
  padding: 24px;
  background: rgba(0,255,255,0.03);
  box-shadow: 0 0 15px rgba(127,255,255,0.15);
}

.benefits-box h3 {
  font-size: 22px;
  color: var(--cyan-bright);
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(127,255,255,0.6);
}

.benefits-box ul {
  list-style: none;
  padding-left: 0;
}

.benefits-box li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #aafcff;
  letter-spacing: 0.3px;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-black: #000;
  --cyan-bright: #7ffcff;
  --cyan-dark: #004f61;
}

body {
  background: var(--bg-black);
  color: var(--cyan-bright);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

/* ===== SECTION WRAPPER ===== */
.ets-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(60px, 8vw, 120px) clamp(16px, 6vw, 80px);
  flex-wrap: wrap;
  min-height: 100vh;
  background: #000;
}

/* ===== LEFT IMAGE ===== */
.ets-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.ets-img-wrap {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
}

/* outer frame to emulate the rounded green rectangle in the mock */
.ets-img-outer {
  display: inline-block;
  padding: 22px;
  border-radius: 44px;
  border: 3px solid rgba(127, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 28px rgba(127, 255, 255, 0.06);
}

.ets-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  position: relative;
  z-index: 2;
}

/* Cyan glow behind image */
.ets-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: radial-gradient(
    circle,
    rgba(127, 255, 255, 0.95) 0%,
    rgba(127, 255, 255, 0.5) 30%,
    rgba(0, 0, 0, 0) 75%
  );
  filter: blur(70px);
  z-index: 1;
  animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.75;
    filter: blur(65px);
  }
  50% {
    opacity: 1;
    filter: blur(85px);
  }
}

/* ===== ESCAPE NOW BUTTON ===== */
.escape-btn {
  display: inline-block;
  padding: 18px 60px;
  min-width: 220px;
  width: min(100%, 320px);
  text-align: center;
  border: 3px solid var(--cyan-bright);
  border-radius: 45px;
  background: #000;
  color: var(--cyan-bright);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(127, 255, 255, 0.5),
    inset 0 0 25px rgba(127, 255, 255, 0.25);
  transition: all 0.35s ease;
}

.escape-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(127, 255, 255, 1) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
}

.escape-btn:hover {
  background: var(--cyan-bright);
  color: #000;
  box-shadow: 0 0 45px rgba(127, 255, 255, 0.8),
    inset 0 0 35px rgba(127, 255, 255, 0.3);
  transform: scale(1.06);
}

.escape-btn:hover::before {
  opacity: 1;
  animation: btnShine 0.8s linear;
}

@keyframes btnShine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Price note under CTA */
.price-note {
  margin-top: 12px;
  color: var(--cyan-bright);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-shadow: 0 0 10px rgba(127,255,255,0.45);
}

/* Footer policy links placed below the copyright line */
.site-footer-links {
  margin-top: 8px;
  font-size: 13px;
  color: var(--cyan-dark); /* dark cyan per request */
}
.site-footer-links a {
  color: var(--cyan-dark);
  text-decoration: none;
  margin: 0 8px;
}
.site-footer-links a:hover {
  text-decoration: underline;
}

/* Small scroll hint used on About page */
.scroll-hint {
  margin-top: 16px;
  color: var(--cyan-bright);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
  text-shadow: 0 0 12px rgba(127,255,255,0.25);
  animation: scrollHintBounce 1.6s ease-in-out infinite;
}
.scroll-hint .scroll-arrow {
  display: inline-block;
  transform-origin: center;
  font-size: 18px;
}

@keyframes scrollHintBounce {
  0% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.9; }
}


/* ===== RIGHT SIDE TEXT ===== */
.ets-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 650px;
}

.ets-heading {
  font-size: 58px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--cyan-bright);
  position: relative;
  display: block;
  text-shadow: none;
  line-height: 1;
}

.ets-letter {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--cyan-bright) 0%,
    var(--cyan-bright) 35%,
    var(--cyan-dark) 50%,
    var(--cyan-bright) 65%,
    var(--cyan-bright) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: etsHeadingShineMove 1.8s linear infinite;
}

.ets-letter:nth-child(1) { animation-delay: 0s; }
.ets-letter:nth-child(2) { animation-delay: 0.1s; }
.ets-letter:nth-child(3) { animation-delay: 0.2s; }
.ets-letter:nth-child(4) { animation-delay: 0.3s; }
.ets-letter:nth-child(5) { animation-delay: 0.4s; }
.ets-letter:nth-child(6) { animation-delay: 0.5s; }

@keyframes etsHeadingShineMove {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

@keyframes shineText {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

@keyframes etsGlow {
  0%, 100% {
    text-shadow: 0 0 12px rgba(127,255,255,0.25), 0 0 36px rgba(127,255,255,0.25);
  }
  50% {
    text-shadow: 0 0 28px rgba(191, 255, 255, 0.95), 0 0 72px rgba(191, 255, 255, 0.45);
  }
}

.ets-desc {
  font-size: 19px;
  line-height: 1.8;
  color: #aefaff;
  letter-spacing: 0.3px;
}

.ets-desc strong {
  color: var(--cyan-bright);
  text-shadow: 0 0 15px rgba(127, 255, 255, 0.8);
}

.ets-desc em {
  color: var(--cyan-bright);
  font-style: normal;
  text-shadow: 0 0 25px rgba(127, 255, 255, 0.8);
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .ets-section {
    flex-direction: column;
    gap: 60px;
    padding: 70px 20px;
    text-align: center;
  }

  .ets-img-outer {
    padding: 14px;
  }

  .ets-img-wrap {
    width: min(100%, 520px);
  }

  @media (max-width: 600px) {
    .ets-section {
      padding: 60px 16px;
    }
    .ets-img-outer {
      padding: 10px;
    }
    .ets-img-wrap {
      width: min(100%, 360px);
    }
  }

  .ets-heading {
    font-size: 42px;
    margin-bottom: 28px;
  }

  .ets-desc {
    font-size: 16px;
  }

  .escape-btn {
    font-size: 18px;
    padding: 14px 45px;
  }
}

/* FOMO notification toasts */
.fomo-stack {
  position: fixed;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1500;
  pointer-events: none;
}

.fomo-toast {
  min-width: 240px;
  max-width: 320px;
  padding: 12px 14px;
  background: rgba(0, 20, 26, 0.9);
  border: 2px solid rgba(127, 255, 255, 0.65);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(127, 255, 255, 0.35);
  color: #aefcff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: fomoIn 0.35s ease forwards, fomoOut 0.4s ease forwards 6s;
}

.fomo-toast strong {
  color: var(--cyan-bright);
}

.fomo-toast .time-ago {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #7fdde4;
  opacity: 0.8;
}

@keyframes fomoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fomoOut {
  to {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
}

.flag-icon {
  width: 18px;
  height: 14px;
  object-fit: cover;
  margin-left: 6px;
  vertical-align: middle;
}

.enroll-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 14px 22px;
  background: var(--cyan-bright);
  color: #000;
  font-weight: 800;
  letter-spacing: 0.8px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 22px rgba(127,255,255,0.4);
  text-decoration: none;
  z-index: 1400;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.enroll-fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55), 0 0 28px rgba(127,255,255,0.6);
  background: #9ffcff;
}

/* ========== PAY PAGE ========== */
.pay-wrapper {
  background: #000;
  min-height: 100vh;
  padding: clamp(40px, 6vw, 80px) clamp(18px, 5vw, 28px);
}

.pay-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 38px);
  align-items: start;
}

.pay-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-panel {
  border: 2px solid rgba(127, 255, 255, 0.35);
  border-radius: 18px;
  padding: 18px 18px 22px;
  background: radial-gradient(circle at 20% 20%, rgba(127, 255, 255, 0.08), transparent 55%), #000;
  box-shadow: 0 0 18px rgba(127, 255, 255, 0.15), inset 0 0 12px rgba(127, 255, 255, 0.08);
}

.brand-kicker {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9afcff;
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
  margin: 6px 0 14px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.brand-card {
  border: 1px solid rgba(127, 255, 255, 0.35);
  border-radius: 14px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: inset 0 0 12px rgba(127, 255, 255, 0.12);
  display: grid;
  place-items: center;
  min-height: 120px;
  cursor: pointer;
}

.brand-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 0 10px rgba(127, 255, 255, 0.4));
}

.brand-card:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 3px;
}

.verification-steps {
  margin: 12px 0;
  text-align: left;
}

.verify-list {
  margin: 0 0 12px 16px;
  color: #9afcff;
  line-height: 1.5;
}

.verification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.reviews-card {
  margin-top: 28px;
  padding: 24px;
  border: 2px solid rgba(127,255,255,0.4);
  border-radius: 24px;
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 15px rgba(127,255,255,0.2), inset 0 0 12px rgba(127,255,255,0.08);
  text-align: center;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--cyan-bright);
  background: rgba(0,0,0,0.6);
  color: var(--cyan-bright);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(127,255,255,0.3);
}

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

.review-slide {
  padding: 14px;
  border: 1px solid rgba(127,255,255,0.35);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: inset 0 0 12px rgba(127,255,255,0.08);
  color: #9afcff;
  min-height: 120px;
  display: grid;
  gap: 8px;
}

.review-quote {
  font-size: 15px;
  line-height: 1.6;
}

.review-meta {
  font-size: 13px;
  color: var(--cyan-bright);
  letter-spacing: 0.3px;
}

.review-page {
  margin-top: 10px;
  font-size: 13px;
  color: #9afcff;
  letter-spacing: 0.4px;
}

.pay-kicker {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9afcff;
  font-weight: 700;
  font-size: 13px;
}

.pay-title {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 900;
  letter-spacing: 1px;
}

.pay-sub {
  color: #9afcff;
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
}

.pay-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pay-block {
  border: 2px solid rgba(127, 255, 255, 0.35);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 18px rgba(127, 255, 255, 0.15), inset 0 0 12px rgba(127, 255, 255, 0.06);
  overflow: hidden;
}

.pay-toggle {
  width: 100%;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(127, 255, 255, 0.14), rgba(127, 255, 255, 0));
  border: none;
  color: var(--cyan-bright);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.toggle-icon {
  transition: transform 0.25s ease;
}

.pay-toggle.is-open .toggle-icon {
  transform: rotate(-180deg);
}

.pay-dropdown {
  display: none;
  border-top: 1px solid rgba(127, 255, 255, 0.2);
  padding: 16px 18px 20px;
  background: rgba(0, 0, 0, 0.8);
}

.pay-dropdown.is-open {
  display: block;
}

.pay-note {
  color: #aefaff;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pill-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(127, 255, 255, 0.5);
  background: rgba(127, 255, 255, 0.08);
  color: var(--cyan-bright);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(127, 255, 255, 0.4);
}

.upi-label {
  display: block;
  font-size: 13px;
  color: #aefaff;
  margin-bottom: 6px;
}

.upi-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.upi-input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(127, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: var(--cyan-bright);
}

.verify-btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid var(--cyan-bright);
  background: var(--cyan-bright);
  color: #000;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.verify-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(127, 255, 255, 0.5);
}

.verify-result {
  min-height: 20px;
  font-size: 13px;
  color: #aefaff;
}

.verify-result.success {
  color: #4dedc5;
}

.verify-result.error {
  color: #ff9fa5;
}

.field-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 18px;
}

.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #aefaff;
  font-size: 13px;
}

.field-grid input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(127, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: var(--cyan-bright);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.action-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid var(--cyan-bright);
  background: var(--cyan-bright);
  color: #000;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-btn.secondary {
  background: #000;
  color: var(--cyan-bright);
}

.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(127, 255, 255, 0.45);
}

.whop-btn {
  display: inline-block;
  text-align: center;
  margin-top: 8px;
  background: linear-gradient(135deg, #7ffcff, #00b3c7);
  color: #000;
  text-decoration: none;
}

.whop-card {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(127, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.whop-note {
  color: #9afcff;
  font-size: 14px;
}

.upi-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(127,255,255,0.06), rgba(0,0,0,0.94));
  display: grid;
  place-items: center;
  z-index: 3000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.upi-overlay[hidden] {
  display: none !important;
  pointer-events: none;
}

.upi-overlay-card {
  width: min(90vw, 420px);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(127, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 22px rgba(127, 255, 255, 0.25), inset 0 0 16px rgba(127, 255, 255, 0.12);
  color: #9afcff;
  text-align: center;
  display: grid;
  gap: 12px;
}

.upi-overlay-card h3 {
  color: var(--cyan-bright);
  font-size: 20px;
}

.overlay-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ghost-btn {
  background: transparent;
  color: var(--cyan-bright);
  border: 1px solid rgba(127, 255, 255, 0.4);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;

}

.pay-right {
  width: 100%;
}

.qr-card {
  border: 2px solid rgba(127, 255, 255, 0.35);
  border-radius: 22px;
  padding: 18px 18px 22px;
  background: radial-gradient(circle at 20% 20%, rgba(127, 255, 255, 0.08), transparent 55%), #000;
  box-shadow: 0 0 22px rgba(127, 255, 255, 0.18), inset 0 0 16px rgba(127, 255, 255, 0.08);
}

.qr-kicker {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9afcff;
}

.qr-title {
  font-size: 26px;
  font-weight: 900;
  margin: 6px 0 12px;
}

.qr-img-wrap {
  border: 2px solid rgba(127, 255, 255, 0.45);
  border-radius: 18px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 22px rgba(127, 255, 255, 0.18);
  text-align: center;
  margin-bottom: 12px;
}

.qr-note {
  color: #9afcff;
  font-size: 14px;
  margin-bottom: 12px;
}

.qr-meta {
  display: grid;
  gap: 8px;
  color: #aefaff;
  font-size: 13px;
}

@media (max-width: 600px) {
  .upi-input-row {
    flex-direction: column;
    align-items: stretch;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}



.verify-list li { margin-bottom: 6px; }
.verify-list li::marker { color: var(--cyan-bright); }

