/* LUNETH Hero Landing Page — #747dfd accent */

@font-face {
  font-family: 'Luneth';
  src: url('Assets/Lunethfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* GUI module-list font, straight from the client (MD.ttf) */
@font-face {
  font-family: 'GuiModule';
  src: url('Assets/gui-module.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Design tokens ── */
:root {
  --accent: #747dfd;
  --accent-light: #8b94ff;
  --accent-soft: rgba(116, 125, 253, 0.12);

  /* ClickGUI theme */
  --gui-main: #747dfd;          /* accent: glow, arrows, enabled modules */
  --gui-edge-top: #cfd2ee;      /* border gradient — soft off-white main colour (top) */
  --gui-edge-bot: #6f63f7;      /* → blue-purple Luneth colour (bottom) */
  --gui-line: #8b7dff;          /* subcategory separator (border colour) */

  /* Custom easing curves — the built-in CSS easings are too weak */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);     /* strong ease-out for UI */
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1); /* on-screen movement */
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);  /* iOS-like cinematic curve */
}

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

/* ── Global interaction system (skill: emil-design-eng) ── */
/* Specify exact properties — never `transition: all`. Custom curves only. */
.btn,
.plan-btn,
.login-btn,
.dash-card-btn,
.dash-account-btn,
.community-discord-btn,
.payment-method-btn,
.pricing-coupon-apply,
.pricing-terms-link,
.pricing-back,
.login-back,
.login-switch,
.dash-card-btn--unlink,
.dash-discord-copy,
.nav-link {
  transition:
    transform 0.18s var(--ease-out),
    background-color 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    color 0.2s var(--ease-out);
}

/* Press feedback — buttons must feel responsive to touch */
.btn:active,
.plan-btn:active,
.login-btn:active:not(:disabled),
.dash-card-btn:active,
.dash-account-btn:active:not(:disabled),
.community-discord-btn:active,
.payment-method-btn:active,
.pricing-coupon-apply:active,
.pricing-terms-link:active,
.pricing-back:active,
.login-back:active,
.login-switch:active,
.dash-card-btn--unlink:active,
.dash-discord-copy:active {
  transform: scale(0.97);
}

/* Keyboard focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Eyebrow pill — microscopic badge that precedes major headings */
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.32rem 0.85rem;
  border-radius: 9999px;
  background: var(--accent-soft);
  border: 1px solid rgba(116, 125, 253, 0.25);
  color: var(--accent-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Respect reduced-motion: keep opacity/color, drop movement */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.08s !important;
    scroll-behavior: auto !important;
  }
}

/* Scroll progress bar — driven by transform: scaleX (GPU only) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(116, 125, 253, 0.15), var(--accent) 60%, var(--accent-light));
  box-shadow: 0 0 12px rgba(116, 125, 253, 0.7);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: linear-gradient(135deg, #050616 0%, #050812 100%);
  color: #f3f4f6;
  position: relative;
}

/* Liquid blur background — more visible */
.liquid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.liquid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  animation: liquid-morph 15s ease-in-out infinite;
}

.liquid-blob:nth-child(1) {
  width: 70vmax;
  height: 70vmax;
  background: radial-gradient(circle, rgba(116, 125, 253, 0.5) 0%, rgba(116, 125, 253, 0.15) 40%, transparent 70%);
  top: -25%;
  left: -15%;
  animation-delay: 0s;
}

.liquid-blob:nth-child(2) {
  width: 60vmax;
  height: 60vmax;
  background: radial-gradient(circle, rgba(116, 125, 253, 0.4) 0%, rgba(116, 125, 253, 0.1) 40%, transparent 70%);
  bottom: -20%;
  right: -15%;
  animation-delay: -5s;
}

.liquid-blob:nth-child(3) {
  width: 50vmax;
  height: 50vmax;
  background: radial-gradient(circle, rgba(116, 125, 253, 0.3) 0%, transparent 70%);
  top: 40%;
  right: 10%;
  animation-delay: -10s;
}

.liquid-blob:nth-child(4) {
  width: 45vmax;
  height: 45vmax;
  background: radial-gradient(circle, rgba(116, 125, 253, 0.45) 0%, rgba(116, 125, 253, 0.1) 50%, transparent 70%);
  top: 20%;
  right: 5%;
  animation-delay: -3s;
}

.liquid-blob:nth-child(5) {
  width: 55vmax;
  height: 55vmax;
  background: radial-gradient(circle, rgba(116, 125, 253, 0.35) 0%, transparent 70%);
  bottom: 10%;
  right: 25%;
  animation-delay: -7s;
}

.liquid-blob:nth-child(6) {
  width: 40vmax;
  height: 40vmax;
  background: radial-gradient(circle, rgba(116, 125, 253, 0.4) 0%, transparent 70%);
  top: 50%;
  right: 0%;
  animation-delay: -12s;
}

/* Grid pattern behind frame for blur visibility */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(116, 125, 253, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 125, 253, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Orbs behind frame area */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: orb-float 20s ease-in-out infinite;
}

.bg-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(116, 125, 253, 0.25);
  top: 35%;
  right: 15%;
  animation-delay: 0s;
}

.bg-orb-2 {
  width: 200px;
  height: 200px;
  background: rgba(116, 125, 253, 0.2);
  top: 55%;
  right: 25%;
  animation-delay: -8s;
}

.bg-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(116, 125, 253, 0.18);
  top: 25%;
  right: 35%;
  animation-delay: -4s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

@keyframes liquid-morph {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, -8%) scale(1.05); }
  66% { transform: translate(-5%, 5%) scale(0.95); }
}

/* Optional: floating particles */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #747dfd;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 12s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 80%; top: 30%; animation-delay: -3s; }
.particle:nth-child(3) { left: 50%; top: 70%; animation-delay: -6s; }
.particle:nth-child(4) { left: 25%; top: 60%; animation-delay: -2s; }
.particle:nth-child(5) { left: 70%; top: 80%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -30px); }
  50% { transform: translate(-15px, 20px); }
  75% { transform: translate(25px, 10px); }
}

/* Film grain / noise overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hero layout */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1800px;
  width: 100%;
}

/* Left column — content */
.hero-content {
  flex: 1;
  max-width: 480px;
  margin-left: 5rem;
}

.title {
  font-family: 'Luneth', sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  line-height: 1.1;
  perspective: 700px;
  white-space: nowrap;
  filter: drop-shadow(0 4px 30px rgba(116, 125, 253, 0.35));
}

/* Each letter is its own 3D element that flips up on load */
.title span {
  display: inline-block;
  transform-origin: 50% 100%;
  background: linear-gradient(120deg, #ffffff 0%, #a9b0ff 35%, #ffffff 50%, #c7cbf5 70%, #ffffff 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    letter-in 0.9s var(--ease-drawer) both calc(0.25s + var(--i) * 0.07s),
    title-sheen 7s ease-in-out 1.6s infinite;
}

@keyframes letter-in {
  from { opacity: 0; transform: translateY(48px) rotateX(-55deg); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}

@keyframes title-sheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.subheading {
  font-size: 1.05rem;
  color: #9ca3af;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 2rem;
  /* Cinematic intro */
  animation: rise-in 0.8s var(--ease-out) both 0.75s;
}

.buttons {
  animation: rise-in 0.8s var(--ease-out) both 0.9s;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.75rem 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
}

/* Secondary has no trailing icon — give it even padding */
.btn-secondary {
  padding: 0.7rem 1.5rem;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  box-shadow: 0 6px 20px rgba(116, 125, 253, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(116, 125, 253, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Button-in-button trailing icon — nested circle, never a naked arrow */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.25s var(--ease-out), background-color 0.25s var(--ease-out);
}

.btn-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

/* Magnetic hover — icon drifts diagonally, creating internal kinetic tension */
.btn-primary:hover .btn-icon {
  background: rgba(255, 255, 255, 0.28);
  transform: translate(2px, -2px) scale(1.06);
}

.btn-secondary {
  background: transparent;
  color: #9ca3af;
  border: 1px solid rgba(116, 125, 253, 0.6);
}

.btn-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(116, 125, 253, 0.3);
}

.helper-text {
  font-size: 0.8rem;
  color: #6b7280;
}

/* ── Top navigation bar ── */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;           /* let clicks pass through empty space */
}

/* Floating glass pill — detached from the top edge */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.5rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  pointer-events: auto;           /* re-enable clicks on the links */
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
}

.nav-link:hover {
  color: #f3f4f6;
  background: var(--accent-soft);
}

.nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(156, 163, 175, 0.25);
  user-select: none;
}

/* ── Hero layout ── */

/* Right column — glassmorphism card */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 1200px;
  margin-right: 4rem;
}

.card-glow {
  display: none;            /* no big halo behind the GUI */
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.glass-card {
  position: relative;
  width: 100%;
  max-width: 1070px;
  aspect-ratio: 20 / 9;
  /* No frame at all — the GUI panels float freely, each frosts the page itself */
  background: transparent;
  border: none;
  box-shadow: none;
  transform: perspective(1200px) rotateX(8deg) rotateY(-15deg);
  /* NO preserve-3d — it makes the browser hit-test the flat layout positions
     while rotateY visually shifts the headers (worse toward the right), so
     drag hitboxes drift. Flattening keeps hit-testing on the projected quad. */
  overflow: visible;
  animation: card-swing-in 1.3s var(--ease-drawer) 0.35s both;
}

/* Hero card flies in from depth on load */
@keyframes card-swing-in {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateX(16deg) rotateY(-50deg) translateY(55px) scale(0.82);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(8deg) rotateY(-15deg) translateY(0) scale(1);
  }
}

/* Inner core — concentric radius, own inset highlight (machined-hardware feel) */
.card-image-wrapper {
  position: absolute;
  inset: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  container-type: size;
}

/* ── Recreated Luneth ClickGUI (crisp HTML/CSS, scales with the card) ── */
.mc-gui {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2cqw;                       /* categories spread out, using the space */
  padding: 4cqh 1.6cqw;
  font-family: 'GuiModule', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.48cqw;
  line-height: 1.18;
  color: #c4c9ef;
  -webkit-font-smoothing: antialiased;
}

.mc-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95em;                     /* header sits clearly apart from its panel */
  position: relative;
  z-index: 1;                      /* below the tools layer */
}

/* Stagger the categories so they don't sit in a straight rigid row */
.mc-col:nth-child(1) { margin-top: 3.5cqh; }
.mc-col:nth-child(2) { margin-top: 0; }
.mc-col:nth-child(3) { margin-top: 6cqh; }
.mc-col:nth-child(4) { margin-top: 1.5cqh; }
.mc-col:nth-child(5) { margin-top: 7.5cqh; }

/* Shared gradient "shader" border (main colour → gradient colour) */
.mc-head,
.mc-panel {
  position: relative;
  isolation: isolate;
}

.mc-head::before,
.mc-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, var(--gui-edge-top) 0%, var(--gui-edge-bot) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}

/* Header — dotted client font, sits a bit WIDER than the module panel
   (overhangs into the column gap; panel width is untouched) */
.mc-head {
  width: 107%;
  text-align: center;
  font-family: 'Luneth', sans-serif;
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #f3f3ff;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  will-change: transform;
  padding: 0.42em 0.4em 0.34em;
  border-radius: 0.85em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(111, 99, 247, 0.1) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow:
    0 0 0.8em rgba(116, 125, 253, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mc-head:active { cursor: grabbing; }

/* Panel — a touch narrower than the header, extra-rounded, just a frosted blur tint */
.mc-panel {
  width: 93%;
  will-change: transform;
  display: flex;
  flex-direction: column;
  gap: 0.14em;
  padding: 0.6em 0.4em;
  border-radius: 1.3em;
  background: rgba(10, 12, 30, 0.28);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow:
    0 0 0.9em rgba(116, 125, 253, 0.28),
    inset 0 0 1.4em rgba(0, 0, 0, 0.25);
  overflow: hidden;                 /* clip the subcategory slide */
}

/* Module list wrapper — slides in on subcategory switch (ease-out cubic, like the client) */
.mc-modlist {
  display: flex;
  flex-direction: column;
  gap: 0.14em;
}
.mc-modlist.mc-slide-r { animation: mc-slide-r 0.34s cubic-bezier(0.33, 1, 0.68, 1); }
.mc-modlist.mc-slide-l { animation: mc-slide-l 0.34s cubic-bezier(0.33, 1, 0.68, 1); }
@keyframes mc-slide-r { from { transform: translateX(100%); }  to { transform: translateX(0); } }
@keyframes mc-slide-l { from { transform: translateX(-100%); } to { transform: translateX(0); } }

/* Subcategory selector — arrows flank the centred text at a fixed gap, like the
   client (renderSubCategorySelector: arrows sit `gap` out from the text edges). */
.mc-mode {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3em;
  font-size: 0.95em;
  font-weight: 600;
  color: #d6d9ff;
  padding: 0.1em 0.15em 0.55em;
  margin-bottom: 0.4em;
  position: relative;
}

.mc-arrow {
  color: var(--gui-main);
  font-size: 1.35em;
  /* pull the two chevrons tight together so they read as one bracket */
  letter-spacing: -0.24em;
  text-shadow: 0 0 0.4em rgba(116, 125, 253, 0.85);
  cursor: pointer;
  padding: 0 0.25em;
  user-select: none;
  -webkit-user-select: none;
  transition: color 0.12s var(--ease-out), transform 0.12s var(--ease-out), text-shadow 0.12s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .mc-arrow:hover {
    color: #b9bdff;
    text-shadow: 0 0 0.7em rgba(140, 120, 255, 1);
  }
}
.mc-arrow:active { transform: scale(0.85); }

/* Separator line — single border colour, solid centre, fading ends + soft glow
   (matches Window#render: full-alpha middle, alpha fade over the outer ~16%). */
.mc-mode::after {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gui-edge-bot) 16%,
    var(--gui-edge-bot) 84%,
    transparent 100%);
  /* drop-shadow respects the faded-end alpha, so the glow fades at the ends too */
  filter: drop-shadow(0 0 2.5px var(--gui-edge-bot));
}

.mc-mod {
  text-align: center;
  font-size: 0.88em;
  font-weight: 400;
  color: #b4b9e0;
  padding: 0.1em 0.2em;
  border-radius: 0.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    color 0.15s var(--ease-out),
    background-color 0.15s var(--ease-out),
    text-shadow 0.15s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .mc-mod:hover {
    background: rgba(116, 125, 253, 0.16);
    color: #ffffff;
  }
}

/* Enabled module — copies the client's moving gradient text (main white → border
   violet, looping ~2.5s) with a soft glow, exactly like renderMovingGradientText. */
.mc-mod.on {
  font-weight: 500;
  /* Symmetric, periodic gradient: identical at 0% / 50% / 100% so a full-tile
     shift wraps with no visible cut — a seamless directional flow. */
  background-image: linear-gradient(
    100deg,
    #ffffff 0%,
    #b3a6ff 25%,
    var(--gui-edge-bot) 50%,
    #b3a6ff 75%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 3px rgba(124, 112, 247, 0.8));
  animation: mod-on-shimmer 4s linear infinite;
}

@keyframes mod-on-shimmer {
  to { background-position: -200% 50%; }
}

@media (hover: hover) and (pointer: fine) {
  .mc-mod.on:hover { background-color: transparent; }
}


/* Full-area sweep removed — no big overlay across the whole GUI */
.card-pulse {
  display: none;
}


@keyframes pulse-sweep {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

/* ── Hero exit animation (Buy Now clicked) ── */
.hero--exit .hero-content {
  animation: slide-out-left 0.6s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

.hero--exit .hero-visual {
  animation: slide-out-right 0.6s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes slide-out-left {
  to { transform: translateX(-120%); opacity: 0; }
}

@keyframes slide-out-right {
  to { transform: translateX(120%); opacity: 0; }
}

/* Hero slide-back-in (returning from pricing) */
.hero--enter .hero-content {
  animation: slide-in-left 0.6s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

.hero--enter .hero-visual {
  animation: slide-in-right 0.6s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes slide-in-left {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-right {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ── Pricing section ── */
.pricing-section {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  /* No transition here — entrance/exit handled by child animations */
}

.pricing-section.pricing--visible {
  opacity: 1;
  pointer-events: auto;
}

.pricing-section.pricing--exit {
  opacity: 1;            /* stay visible while children animate out */
  pointer-events: none;
}

.pricing-back {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  background: none;
  border: 1px solid rgba(116, 125, 253, 0.3);
  color: #9ca3af;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.65rem 1.3rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 200;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  /* Ensure the whole box is clickable, not just text */
  display: block;
  isolation: isolate;
}

.pricing-back:hover {
  color: #f3f4f6;
  border-color: #747dfd;
  background: rgba(116, 125, 253, 0.1);
}

.pricing-title {
  font-family: 'Luneth', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #c7cbf5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2.75rem;
}

/* "Luneth" in the brand colour, glowing */
.pricing-title .pt-accent {
  -webkit-text-fill-color: #8b94ff;
  color: #8b94ff;
  text-shadow:
    0 0 14px rgba(116, 125, 253, 0.9),
    0 0 34px rgba(116, 125, 253, 0.55);
}

/* Card container */
.pricing-cards {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  perspective: 800px;
}

/* Base plan card */
.plan-card {
  position: relative;
  width: 280px;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(15, 23, 42, 0.3) 100%
  );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  transform-style: preserve-3d;
  /* Staggered entrance */
  opacity: 0;
  transform: translateY(30px);
}

.pricing--visible .plan-card {
  animation: card-enter 0.45s ease forwards;
}

.pricing--visible .plan-card:nth-child(1) { animation-delay: 0.05s; }
.pricing--visible .plan-card:nth-child(2) { animation-delay: 0.15s; }

@keyframes card-enter {
  to { opacity: 1; transform: translateY(0); }
}

/* Pricing exit — cards fade out and sink */
.pricing--exit .plan-card {
  animation: card-exit 0.4s ease forwards;
}

.pricing--exit .plan-card:nth-child(1) { animation-delay: 0s; }
.pricing--exit .plan-card:nth-child(2) { animation-delay: 0.08s; }

@keyframes card-exit {
  to { opacity: 0; transform: translateY(30px) scale(0.95); }
}

/* Pricing title/subtitle/back also fade out */
.pricing--exit .pricing-title,
.pricing--exit .pricing-subtitle,
.pricing--exit .pricing-back {
  animation: fade-out 0.35s ease forwards;
}

@keyframes fade-out {
  to { opacity: 0; transform: translateY(-10px); }
}

/* Push-away hover: card tilts as if pushed back in 3D */
.plan-card:hover {
  transform: translateY(-6px) translateX(-10px) rotateY(4deg) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Featured card (Yearly) — bigger, glowing, stands out */
.plan-card--featured {
  width: 310px;
  padding: 3rem 2rem;
  border-color: rgba(116, 125, 253, 0.4);
  box-shadow:
    0 0 40px rgba(116, 125, 253, 0.15),
    0 0 80px rgba(116, 125, 253, 0.05);
}

.plan-card--featured:hover {
  transform: translateY(-6px) translateX(10px) rotateY(-4deg) scale(1.02);
  box-shadow:
    0 0 50px rgba(116, 125, 253, 0.25),
    0 0 100px rgba(116, 125, 253, 0.08),
    0 8px 30px rgba(0, 0, 0, 0.3);
}

/* "BEST VALUE" badge */
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #747dfd;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(116, 125, 253, 0.5);
}

.plan-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.plan-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f3f4f6;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-card-price-was {
  display: inline-block;
  text-decoration: line-through;
  opacity: 0.45;
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 0.4rem;
  vertical-align: middle;
  color: #9ca3af;
}

.plan-period {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}

.plan-savings {
  font-size: 0.8rem;
  color: #747dfd;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  padding: 0;
}

.plan-features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 2;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #747dfd;
  font-weight: 700;
}

/* CTA buttons */
.plan-btn {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  color: #9ca3af;
  border: 1px solid rgba(116, 125, 253, 0.4);
  background: transparent;
}

.plan-btn:hover {
  color: #f3f4f6;
  border-color: #747dfd;
  box-shadow: 0 0 16px rgba(116, 125, 253, 0.3);
}

/* Featured CTA — filled, glowing */
.plan-btn--featured {
  background: #747dfd;
  color: white;
  border: none;
  box-shadow: 0 0 24px rgba(116, 125, 253, 0.5);
}

.plan-btn--featured:hover {
  background: #8b94ff;
  box-shadow: 0 0 32px rgba(116, 125, 253, 0.6);
  transform: scale(1.03);
}

/* ── Conversion elements (social proof, anchoring, trust) ── */
.pricing-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
  font-size: 0.85rem;
  color: #9ca3af;
}
.pricing-stars {
  color: #ffd166;
  letter-spacing: 0.1em;
  font-size: 0.92rem;
}

.plan-tagline {
  font-size: 0.78rem;
  color: #747dfd;
  font-weight: 500;
  margin-bottom: 1.25rem;
  min-height: 2.2em;
  line-height: 1.4;
}

.plan-feature-hl {
  color: #d7daf7 !important;
  font-weight: 700;
}
.plan-feature-hl::before {
  content: '★' !important;
  color: #ffd166 !important;
}

.plan-microcopy {
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 0.85rem;
  letter-spacing: 0.02em;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.trust-item svg {
  width: 1.05rem;
  height: 1.05rem;
  color: #747dfd;
  flex: none;
}

/* Hide the conversion extras while the payment panel is open */
.pricing-section.pricing--payment-mode .pricing-social,
.pricing-section.pricing--payment-mode .pricing-trust {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Fade them out on exit too */
.pricing--exit .pricing-social,
.pricing--exit .pricing-trust {
  animation: fade-out 0.35s ease forwards;
}


/* ── Showcase section ── */
.showcase {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 8rem;
}

.showcase-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Video placeholder */
.showcase-video {
  flex: 0 0 520px;
}

.showcase-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(15, 23, 42, 0.4) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(116, 125, 253, 0.2);
  box-shadow:
    0 0 30px rgba(116, 125, 253, 0.1),
    0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.showcase-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  z-index: 1;
}

/* Placeholder shown while no video src is set */
.showcase-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.showcase-play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(116, 125, 253, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #747dfd;
  transition: all 0.3s ease;
  animation: play-pulse 2.5s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(116, 125, 253, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(116, 125, 253, 0); }
}

/* Wavy arrow — horizontal, pointing left to right */
.showcase-arrow {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-arrow svg {
  width: 130px;
  height: 70px;
  filter: drop-shadow(0 0 6px rgba(116, 125, 253, 0.3));
  animation: arrow-drift 3s ease-in-out infinite;
}

@keyframes arrow-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* Description text */
.showcase-text {
  flex: 1;
  max-width: 400px;
}

.showcase-heading {
  font-family: 'Luneth', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #c7cbf5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-desc {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.showcase-subdesc {
  font-size: 0.85rem;
  color: #747dfd;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Discord CTA */
.showcase-discord-text {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.showcase-discord-link {
  color: #747dfd;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.showcase-discord-link:hover {
  color: #8b94ff;
  text-decoration: underline;
}

.showcase-discord-logo {
  display: inline-block;
  margin-top: 1.25rem;
  transition: transform 0.2s ease;
}

.showcase-discord-logo:hover {
  transform: scale(1.08);
}

.showcase-discord-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: brightness(0.7) saturate(0.5);
  transition: filter 0.2s ease;
}

.showcase-discord-logo:hover img {
  filter: brightness(1) saturate(1);
}

/* ── Join Community section ── */
.community {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 8rem;
  text-align: center;
}

.community-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.community-heading {
  font-family: 'Luneth', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #ffffff 0%, #c7cbf5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.community-desc {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 480px;
}

.community-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  margin-top: 0.5rem;
  border-radius: 9999px;
  background: rgba(116, 125, 253, 0.12);
  border: 1px solid rgba(116, 125, 253, 0.35);
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.community-discord-btn:hover {
  background: rgba(116, 125, 253, 0.22);
  border-color: #747dfd;
  box-shadow: 0 0 24px rgba(116, 125, 253, 0.3);
  transform: scale(1.03);
}

.community-discord-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Fade-in on scroll — heavy blur-up entrance (skill: high-end-visual-design) */
.showcase-inner > *,
.community-inner > * {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    filter 0.8s var(--ease-out);
}

.showcase-inner.visible > *,
.community-inner.visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.showcase-inner.visible > :nth-child(1) { transition-delay: 0s; }
.showcase-inner.visible > :nth-child(2) { transition-delay: 0.1s; }
.showcase-inner.visible > :nth-child(3) { transition-delay: 0.2s; }

/* Directional scroll scene — showcase pieces fly in from the sides */
.showcase-inner > .showcase-video { transform: translate(-80px, 12px); }
.showcase-inner > .showcase-text  { transform: translate(80px, 12px); }
.showcase-inner > .showcase-arrow { transform: scale(0.4); }
.showcase-inner.visible > .showcase-video,
.showcase-inner.visible > .showcase-text  { transform: translate(0, 0); }
.showcase-inner.visible > .showcase-arrow { transform: scale(1); }

.community-inner.visible > :nth-child(1) { transition-delay: 0s; }
.community-inner.visible > :nth-child(2) { transition-delay: 0.08s; }
.community-inner.visible > :nth-child(3) { transition-delay: 0.16s; }
.community-inner.visible > :nth-child(4) { transition-delay: 0.24s; }

/* Keep the button's hover/press transforms after reveal (higher specificity) */
.community-inner.visible .community-discord-btn:hover { transform: translateY(0) scale(1.03); }
.community-inner.visible .community-discord-btn:active { transform: translateY(0) scale(0.97); }


/* ── Payment panel (in-place, same area as plan cards) ── */
.pricing-payment-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(15, 23, 42, 0.3) 100%
  );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.pricing-section.pricing--payment-mode .pricing-payment-panel {
  opacity: 1;
  pointer-events: auto;
  animation: payment-panel-in 0.4s ease forwards;
}

@keyframes payment-panel-in {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 20px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.pricing-section.pricing--payment-mode .pricing-cards,
.pricing-section.pricing--payment-mode .pricing-title,
.pricing-section.pricing--payment-mode .pricing-subtitle {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ── Email capture step (third state, sits on top of payment mode) ── */
.pricing-section.pricing--email-mode .pricing-cards,
.pricing-section.pricing--email-mode .pricing-title,
.pricing-section.pricing--email-mode .pricing-subtitle,
.pricing-section.pricing--email-mode .pricing-social,
.pricing-section.pricing--email-mode .pricing-trust,
.pricing-section.pricing--email-mode .pricing-payment-panel {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* payment-mode leaves payment-panel-in running with fill:forwards, which would
   pin opacity to 1 — cancel it so the panel can actually fade out underneath. */
.pricing-section.pricing--email-mode .pricing-payment-panel {
  animation: none;
}

.pricing-email-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(15, 23, 42, 0.3) 100%
  );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.pricing-section.pricing--email-mode .pricing-email-panel {
  opacity: 1;
  pointer-events: auto;
  animation: payment-panel-in 0.4s ease forwards;
}

.pricing-email-panel .pricing-payment-title {
  margin-bottom: 0.45rem;
}

.pricing-email-summary {
  font-size: 0.9rem;
  font-weight: 600;
  color: #747dfd;
  margin: 0 0 1.4rem;
}

.pricing-email-copy {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.pricing-email-field {
  text-align: left;
}

.pricing-email-input {
  display: block;
  width: 100%;
}

.pricing-email-panel .pricing-coupon-msg {
  text-align: left;
  margin-bottom: 0.3rem;
}

.pricing-email-panel .login-btn {
  margin-top: 0.4rem;
}

.pricing-email-panel .plan-microcopy {
  margin-top: 0.8rem;
  line-height: 1.5;
}

.pricing-terms-link {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-terms-link:hover {
  color: #ffffff;
}

.pricing-email-done-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f3f4f6;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.pricing-email-done-sub {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.55;
}

/* Author display rules beat the UA [hidden] rule — restore it explicitly */
.pricing-email-form[hidden],
.pricing-email-done[hidden],
.pricing-email-input[hidden],
.dash-card-btn[hidden],
.dash-discord-linked[hidden],
.dash-discord-code-box[hidden],
.dash-discord-hint[hidden] {
  display: none !important;
}

.pricing-selected-plan {
  font-size: 0.9rem;
  color: #747dfd;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-price-line {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #f3f4f6;
}

.pricing-price-was {
  text-decoration: line-through;
  opacity: 0.45;
  font-weight: 500;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.pricing-price-now {
  color: #f3f4f6;
}

.pricing-price-line.has-discount .pricing-price-now {
  color: #a5b0ff;
}

.pricing-coupon {
  text-align: left;
  margin-bottom: 1.25rem;
}

.pricing-coupon-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.55);
  margin-bottom: 0.4rem;
}

.pricing-coupon-row {
  display: flex;
  gap: 0.5rem;
}

.pricing-coupon-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #f3f4f6;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-coupon-input::placeholder {
  color: rgba(243, 244, 246, 0.35);
}

.pricing-coupon-input:focus {
  border-color: rgba(116, 125, 253, 0.55);
  box-shadow: 0 0 0 2px rgba(116, 125, 253, 0.2);
}

.pricing-coupon-apply {
  flex-shrink: 0;
  padding: 0.65rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: rgba(116, 125, 253, 0.35);
  border: 1px solid rgba(116, 125, 253, 0.5);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pricing-coupon-apply:hover {
  background: rgba(116, 125, 253, 0.5);
  border-color: rgba(116, 125, 253, 0.65);
}

.pricing-coupon-msg {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  min-height: 1.2em;
}

.pricing-coupon-msg.is-error {
  color: #f87171;
}

.pricing-coupon-msg.is-success {
  color: #86efac;
}

.pricing-payment-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 1.5rem;
}

.pricing-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-method-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #f3f4f6;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.payment-method-text {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.payment-method-text strong {
  font-weight: 600;
}

.payment-method-text small {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.85;
}

.payment-method-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.payment-method-btn:hover {
  background: rgba(116, 125, 253, 0.15);
  border-color: rgba(116, 125, 253, 0.35);
  color: #fff;
}

/* ── Login / Dashboard screen ── */
.login-section,
.register-section,
.dashboard-section {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.login-section.login--visible,
.register-section.login--visible,
.dashboard-section.login--visible {
  opacity: 1;
  pointer-events: auto;
}

.login-section .login-back,
.register-section .login-back {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  background: none;
  border: 1px solid rgba(116, 125, 253, 0.3);
  color: #9ca3af;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.65rem 1.3rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 200;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.login-section .login-back:hover,
.register-section .login-back:hover {
  color: #f3f4f6;
  border-color: #747dfd;
  background: rgba(116, 125, 253, 0.1);
}

/* Glass panel */
.login-panel {
  width: 340px;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(15, 23, 42, 0.35) 100%
  );
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 50px rgba(116, 125, 253, 0.12),
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  animation: login-panel-in 0.5s ease;
}

@keyframes login-panel-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.login-title {
  font-family: 'Luneth', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #f3f4f6;
  margin-bottom: 2rem;
}

.login-field {
  margin-bottom: 1.25rem;
  text-align: left;
}

.login-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.login-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-input::placeholder {
  color: #4b5563;
}

.login-input:focus {
  border-color: rgba(116, 125, 253, 0.5);
  box-shadow: 0 0 12px rgba(116, 125, 253, 0.15);
}

.login-error {
  display: none;
  font-size: 0.8rem;
  color: #f87171;
  margin-bottom: 1rem;
  text-align: center;
}

.login-btn {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 9999px;
  border: none;
  background: #747dfd;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(116, 125, 253, 0.4);
}

.login-btn:hover {
  background: #8b94ff;
  box-shadow: 0 0 28px rgba(116, 125, 253, 0.55);
  transform: scale(1.02);
}

.login-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Login ⇄ Register switch link */
.login-switch-line {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: #6b7280;
  text-align: center;
}

.login-switch {
  display: inline;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-appearance: none;
  appearance: none;
}

.login-switch:hover {
  color: #ffffff;
}

/* License key field — monospaced so the XXXX-XXXX groups line up */
.login-input--key {
  font-family: 'Courier New', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Register panel reuses .login-panel; the title is only used here */
.register-section .login-title {
  font-size: 2rem;
  margin-bottom: 1.75rem;
}

/* Dashboard */
.dashboard-section {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 0 !important;
}

.dash-layout {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3.5rem;
  animation: login-panel-in 0.5s ease;
}

/* Top bar */
.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.dash-welcome-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f3f4f6;
  letter-spacing: -0.01em;
}

.dash-welcome-title span {
  color: #747dfd;
}

.dash-welcome-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.35rem;
}


/* Category cards grid */
.dash-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.dash-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dash-card {
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(15, 23, 42, 0.3) 100%
  );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 30px rgba(116, 125, 253, 0.06),
    0 10px 30px -8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dash-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 125, 253, 0.25);
  box-shadow:
    0 0 40px rgba(116, 125, 253, 0.12),
    0 15px 40px -8px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


.dash-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 0.5rem;
}

.dash-card-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.dash-card-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: 9999px;
  background: #747dfd;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  box-shadow: 0 0 16px rgba(116, 125, 253, 0.3);
}

.dash-card-btn:hover {
  background: #8b94ff;
  box-shadow: 0 0 24px rgba(116, 125, 253, 0.5);
  transform: scale(1.03);
}

/* Account card info rows */
.dash-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dash-card-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-card-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-card-status-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  background: rgba(116, 125, 253, 0.12);
  border: 1px solid rgba(116, 125, 253, 0.3);
  color: #747dfd;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Account card — taller, no hover lift */
.dash-card--account {
  grid-column: span 1;
}

.dash-card--account:hover {
  transform: none;
}

/* Account sections */
.dash-account-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-account-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}

.dash-account-field {
  margin-bottom: 0.75rem;
}

.dash-account-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.dash-account-input {
  width: 100%;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dash-account-input::placeholder {
  color: #4b5563;
}

.dash-account-input:focus {
  border-color: rgba(116, 125, 253, 0.5);
  box-shadow: 0 0 10px rgba(116, 125, 253, 0.12);
}

.dash-account-msg {
  display: none;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  text-align: left;
}

.dash-account-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  border: none;
  background: #747dfd;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 14px rgba(116, 125, 253, 0.3);
}

.dash-account-btn:hover {
  background: #8b94ff;
  box-shadow: 0 0 22px rgba(116, 125, 253, 0.5);
  transform: scale(1.02);
}

.dash-account-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Logout button inside account card */
.dash-account-btn--logout {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
  box-shadow: none;
  padding: 0.55rem 1.2rem;
}

.dash-account-btn--logout:hover {
  background: rgba(248, 113, 113, 0.1);
  border-color: #f87171;
  box-shadow: none;
  transform: none;
}

/* Discord button variant */
.dash-card-btn--discord {
  background: #5865F2;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.3);
}

.dash-card-btn--discord:hover {
  background: #6e7bf7;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.5);
}

/* .dash-card-btn was written for <a> — normalise the <button> variants */
button.dash-card-btn {
  border: none;
  cursor: pointer;
  line-height: 1.2;
}

/* Unlink button variant */
.dash-card-btn--unlink {
  background: transparent;
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
  box-shadow: none;
}

.dash-card-btn--unlink:hover {
  background: rgba(248, 113, 113, 0.1);
  border-color: #f87171;
  color: #f87171;
  box-shadow: none;
}

/* Discord link card */
.dash-discord-linked {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.dash-discord-linked-name {
  font-size: 0.85rem;
  color: #d1d5db;
  font-weight: 500;
}

.dash-discord-linked-name span {
  color: #747dfd;
  font-weight: 700;
}

.dash-discord-code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(116, 125, 253, 0.28);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.dash-discord-code {
  flex: 1;
  min-width: 0;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #f3f4f6;
  text-align: left;
  overflow-wrap: anywhere;
}

.dash-discord-copy {
  flex-shrink: 0;
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  background: rgba(116, 125, 253, 0.2);
  border: 1px solid rgba(116, 125, 253, 0.45);
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.dash-discord-copy:hover {
  background: rgba(116, 125, 253, 0.38);
  border-color: rgba(116, 125, 253, 0.65);
}

.dash-discord-hint {
  margin-top: 0.7rem;
  font-size: 0.76rem;
  line-height: 1.55;
  color: #6b7280;
}

.dash-discord-hint code {
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 0.74rem;
}

.dash-discord-hint a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dash-discord-hint a:hover {
  color: #ffffff;
}

.dash-discord-msg {
  display: none;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  text-align: left;
}

/* License info grid */
.dash-license-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.dash-license-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-license-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-license-value {
  font-size: 0.82rem;
  color: #d1d5db;
  font-weight: 500;
}

/* License status colours */
.dash-status--active {
  background: rgba(52, 211, 153, 0.12) !important;
  border-color: rgba(52, 211, 153, 0.35) !important;
  color: #34d399 !important;
}

.dash-status--expired {
  background: rgba(248, 113, 113, 0.12) !important;
  border-color: rgba(248, 113, 113, 0.35) !important;
  color: #f87171 !important;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-left: 0;
  }

  .subheading {
    margin-left: auto;
    margin-right: auto;
  }

  .buttons {
    justify-content: center;
  }

  .hero-visual {
    order: 2;
  }

  .glass-card {
    transform: perspective(1200px) rotateX(5deg) rotateY(-10deg);
    max-width: 100%;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .plan-card,
  .plan-card--featured {
    width: 100%;
    max-width: 340px;
  }

  .showcase-inner {
    flex-direction: column;
    text-align: center;
  }

  .showcase-video {
    flex: 0 0 auto;
    width: 100%;
  }

  .showcase-arrow {
    display: none;
  }

  .showcase-text {
    max-width: 100%;
  }

  .login-panel {
    width: 100%;
    max-width: 360px;
    padding: 2rem 1.5rem;
  }

  .dash-layout {
    padding: 1.5rem 1.25rem;
  }

  .dash-welcome-title {
    font-size: 1.3rem;
  }

  .dash-categories {
    grid-template-columns: 1fr;
  }
}

/* ── WebGL nebula background ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}
/* When the shader is live, drop the CSS blob/orb fallback */
html.shader-on .liquid-bg,
html.shader-on .bg-orb { display: none; }

/* ── FAQ ── */
.faq {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 8rem;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.faq-heading {
  font-family: 'Luneth', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #c7cbf5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
}
.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 18, 38, 0.4);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.faq-item.open {
  border-color: rgba(116, 125, 253, 0.4);
  box-shadow: 0 0 24px rgba(116, 125, 253, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e8eaf6;
  text-align: left;
  transition: color 0.2s var(--ease-out);
}
.faq-q:hover { color: #ffffff; }
.faq-chevron {
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
}
.faq-chevron svg { width: 100%; height: 100%; display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  margin: 0;
  padding: 0 1.4rem 0.3rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #a8adca;
}
.faq-readmore {
  margin: 0.5rem 1.4rem 1.2rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s var(--ease-out);
}
.faq-readmore:hover { color: #ffffff; text-decoration: underline; }

/* FAQ version chips */
.faq-versions {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.7rem 0 0.4rem;
  padding: 0 1.4rem 0.5rem;
}
.faq-versions li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.32rem 0.75rem;
  border-radius: 9999px;
  background: rgba(116, 125, 253, 0.1);
  border: 1px solid rgba(116, 125, 253, 0.28);
  color: #c7cbf5;
}
.faq-versions li.soon {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #8a90b5;
}
.faq-versions li.soon span {
  color: var(--accent-light);
  font-weight: 700;
}
