/* ============================================================
   MusiUP landing v2 — escopo exclusivo da home (body.landing-body).
   Convive com o CSS inline legado durante a migração incremental:
   a camada "NEUTRALIZAÇÃO" abaixo vence regras antigas que ainda
   atingem os elementos (eles carregam classes antigas + novas).
   ============================================================ */

body.landing-body {
  --nv-night: #02040a;
  --nv-deep: #07172e;
  --nv-panel: #081228;
  --nv-panel-2: #0b1a38;
  --nv-cyan: #00e5ff;
  --nv-blue: #126cff;
  --nv-violet: #6e3bff;
  --nv-magenta: #ff2bff;
  --nv-ink: #f2f6ff;
  --nv-muted: #a7b4d6;
  --nv-faint: #6a78a2;
  --nv-line: rgba(120, 150, 220, 0.16);
  --nv-line-strong: rgba(120, 150, 220, 0.3);
  --nv-grad: linear-gradient(90deg, #00e5ff 0%, #126cff 38%, #6e3bff 68%, #ff2bff 100%);
  --nv-font: "Poppins", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(52vw 52vw at 8% -6%, rgba(0, 229, 255, 0.13), transparent 60%),
    radial-gradient(50vw 50vw at 100% 8%, rgba(255, 43, 255, 0.1), transparent 58%),
    radial-gradient(60vw 60vw at 50% 118%, rgba(110, 59, 255, 0.13), transparent 60%),
    #02040a !important;
  color: var(--nv-ink);
}

body.landing-body .bg-overlay {
  background-image:
    linear-gradient(rgba(120, 150, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 150, 220, 0.045) 1px, transparent 1px) !important;
  background-size: 56px 56px !important;
  backdrop-filter: none !important;
  -webkit-mask-image: radial-gradient(120vw 120vh at 50% 30%, #000, transparent 78%);
          mask-image: radial-gradient(120vw 120vh at 50% 30%, #000, transparent 78%);
}

/* ============================================================
   NEUTRALIZAÇÃO do legado sobre os elementos novos do hero.
   (o bloco <style> inline vem DEPOIS deste arquivo na cascata
   e o styles.css compartilhado tem regras .hero-* / .landing-*)
   ============================================================ */

/* o inline transforma .landing-hero em card de vidro; o hero novo é aberto */
body.landing-body .nv-hero.landing-hero {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* o inline pinta .hero-title strong de #dbeafe — aqui é gradiente da marca */
body.landing-body .nv-hero-title strong {
  background: var(--nv-grad) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: none !important;
}

/* o inline/styles.css pintam os CTAs com o tema antigo (azul chapado/dashed) */
body.landing-body .nv-hero-actions .nv-btn-primary {
  background: var(--nv-grad) !important;
  background-size: 180% 100% !important;
  border: 0 !important;
  color: #050912 !important;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.25),
    0 10px 34px -10px rgba(255, 43, 255, 0.55),
    0 6px 22px -12px rgba(0, 229, 255, 0.65) !important;
}

body.landing-body .nv-hero-actions .nv-btn-ghost {
  background: rgba(8, 18, 40, 0.55) !important;
  border: 1px solid var(--nv-line-strong) !important;
  color: var(--nv-ink) !important;
  box-shadow: none !important;
}

body.landing-body .nv-hero-actions .nv-btn-ghost:hover {
  border-color: var(--nv-cyan) !important;
  box-shadow: 0 0 22px -6px rgba(0, 229, 255, 0.5) !important;
}

/* pílula do hero: o inline aplica vidro branco; aqui é ciano da marca */
body.landing-body .nv-eyebrow.hero-pill {
  background: rgba(0, 229, 255, 0.06) !important;
  border: 1px solid rgba(0, 229, 255, 0.22) !important;
  color: #c9faff !important;
}

/* ============================================================
   TIPOGRAFIA / BASE
   ============================================================ */

body.landing-body .nv-header,
body.landing-body .nv-hero,
body.landing-body .nv-header button,
body.landing-body .nv-hero button {
  font-family: var(--nv-font);
}

/* ============================================================
   HEADER
   ============================================================ */

body.landing-body .nv-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0 0;
  padding: 8px 12px 8px 16px;
  border: 1px solid var(--nv-line);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(4, 10, 24, 0.92), rgba(6, 7, 20, 0.85));
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

body.landing-body .nv-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--nv-ink);
  text-decoration: none;
}

body.landing-body .nv-brand-official {
  display: block;
  width: 104px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.22));
}

body.landing-body .nv-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 4px;
  width: auto !important;
}

body.landing-body .nv-nav .landing-nav-link {
  width: auto !important;
  min-height: 0 !important;
  padding: 9px 14px !important;
  border: 0 !important;
  border-radius: 10px;
  background: transparent !important;
  color: var(--nv-muted) !important;
  font-size: 0.88rem !important;
  font-weight: 500;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

body.landing-body .nv-nav .landing-nav-link:hover {
  color: var(--nv-ink) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

body.landing-body .nv-header .landing-account {
  width: auto !important;
  max-width: none !important;
  display: inline-flex;
  justify-content: flex-end;
}

body.landing-body .nv-nav .landing-nav-cta {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 10px 18px !important;
  border: 1px solid rgba(0, 229, 255, 0.38) !important;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.13), rgba(110, 59, 255, 0.17)) !important;
  color: var(--nv-ink) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.1);
}

body.landing-body .nv-header .landing-account-menu {
  left: auto !important;
  right: 0 !important;
  transform: none !important;
}

/* ============================================================
   HERO — grid de duas colunas em fluxo normal, sem alturas fixas
   ============================================================ */

body.landing-body .nv-hero {
  position: relative;
  margin: 0;
  padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 5vw, 64px);
  isolation: isolate;
}

/* brilho de ambiente, sem caixa nem altura fixa */
body.landing-body .nv-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -60px -10vw;
  background:
    radial-gradient(46% 52% at 18% 30%, rgba(0, 229, 255, 0.1), transparent 62%),
    radial-gradient(44% 50% at 82% 26%, rgba(110, 59, 255, 0.14), transparent 60%),
    radial-gradient(34% 40% at 86% 76%, rgba(255, 43, 255, 0.07), transparent 55%);
  pointer-events: none;
}

body.landing-body .nv-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

/* coluna de texto: alinhada à esquerda, ritmo por gap */
body.landing-body .nv-hero-copy {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: none;
  padding: 0;
  text-align: left;
}

body.landing-body .nv-hero-copy .intent-banner {
  width: auto;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(100deg, rgba(0, 229, 255, 0.08), rgba(110, 59, 255, 0.09));
  color: #dceaff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  line-height: 1.45;
}

body.landing-body .nv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  margin: 0;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
}

body.landing-body .nv-hero-title {
  max-width: 17ch;
  margin: 0;
  color: var(--nv-ink);
  font-family: var(--nv-font);
  font-size: clamp(2.1rem, 3.6vw, 3.4rem) !important;
  font-weight: 800;
  line-height: 1.1 !important;
  letter-spacing: -0.025em;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
}

body.landing-body .nv-hero .nv-hero-subtitle {
  max-width: 54ch;
  margin: 0;
  color: var(--nv-muted) !important;
  font-size: clamp(1rem, 1.4vw, 1.12rem) !important;
  line-height: 1.7;
}

/* CTAs lado a lado, largura pelo conteúdo */
body.landing-body .nv-hero-actions {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  width: auto !important;
  margin: 8px 0 0 !important;
}

body.landing-body .nv-btn-primary,
body.landing-body .nv-btn-ghost {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto !important;
  min-width: 0 !important;
  min-height: 54px !important;
  padding: 13px 26px !important;
  border-radius: 999px;
  font-size: 1rem !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 250ms ease, background-position 250ms ease;
}

body.landing-body .nv-btn-primary {
  animation: nvGradientShift 7s ease infinite;
}

body.landing-body .nv-btn-primary:hover,
body.landing-body .nv-btn-ghost:hover {
  transform: translateY(-2px);
}

/* selos de confiança: chips no fluxo, largura pelo conteúdo */
body.landing-body .nv-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: auto;
  margin: 4px 0 0;
  color: #dce6ff;
  font-size: 0.85rem;
  font-weight: 600;
}

body.landing-body .nv-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 8px 14px;
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(110, 59, 255, 0.07));
  white-space: nowrap;
}

body.landing-body .nv-trust-row i {
  margin-right: 7px;
  color: var(--nv-cyan);
  font-size: 0.88rem;
}

body.landing-body .nv-hero .nv-hero-footnote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 54ch;
  margin: 2px 0 0 !important;
  color: #98a6c8 !important;
  font-size: 0.86rem !important;
  line-height: 1.6;
  text-align: left;
}

/* ============================================================
   MAQUETE (coluna direita) — player no fluxo, phone ancorado nele
   ============================================================ */

body.landing-body .nv-stage {
  position: relative;
  display: block !important;
  align-self: center;
  min-height: 0;
  /* respiro para o phone e o chip que avançam sobre as bordas */
  padding: 16px 12px 56px 30px;
  perspective: 1200px;
}

body.landing-body .nv-stage::before {
  content: "";
  position: absolute;
  inset: 10% 0 12% 8%;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 180deg,
    rgba(0, 229, 255, 0.16), rgba(110, 59, 255, 0.2),
    rgba(255, 43, 255, 0.12), rgba(0, 229, 255, 0.16));
  filter: blur(55px);
  opacity: 0.7;
}

body.landing-body .nv-player-shell {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(122, 151, 218, 0.28);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(11, 26, 56, 0.96), rgba(3, 9, 25, 0.98));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.48), 0 0 60px rgba(31, 90, 255, 0.12);
  transform: rotateY(-6deg) rotateX(1.5deg);
  transition: transform 500ms ease, box-shadow 500ms ease;
}

body.landing-body .nv-stage:hover .nv-player-shell {
  transform: rotateY(-2deg) rotateX(0) translateY(-6px);
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.55), 0 0 75px rgba(31, 90, 255, 0.2);
}

body.landing-body .nv-player-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body.landing-body .nv-mini-logo {
  color: var(--nv-cyan);
  font-size: 0.82rem;
  font-weight: 800;
}

body.landing-body .nv-live {
  color: #b8c5e4;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

body.landing-body .nv-live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #4dff9a;
  box-shadow: 0 0 10px #4dff9a;
}

body.landing-body .nv-player-screen {
  position: relative;
  padding: 26px 26px 22px;
  background:
    linear-gradient(180deg, rgba(2, 4, 10, 0.08), rgba(2, 4, 10, 0.7)),
    radial-gradient(circle at 25% 30%, rgba(0, 229, 255, 0.15), transparent 35%),
    radial-gradient(circle at 78% 35%, rgba(255, 43, 255, 0.13), transparent 38%),
    #071126;
}

body.landing-body .nv-now-playing {
  display: grid;
  gap: 6px;
}

body.landing-body .nv-kicker {
  color: var(--nv-cyan);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

body.landing-body .nv-now-playing strong {
  max-width: 330px;
  color: white;
  font-size: 1.28rem;
  line-height: 1.25;
}

body.landing-body .nv-now-playing small {
  color: var(--nv-muted);
  font-size: 0.7rem;
}

body.landing-body .nv-equalizer {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 46px;
  margin: 22px 0 20px;
}

body.landing-body .nv-equalizer i {
  width: 6px;
  height: 35%;
  border-radius: 6px;
  background: var(--nv-grad);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.22);
  animation: nvEqualize 1.15s ease-in-out infinite alternate;
}

body.landing-body .nv-equalizer i:nth-child(2n) { animation-delay: -0.7s; }
body.landing-body .nv-equalizer i:nth-child(3n) { animation-delay: -0.35s; }
body.landing-body .nv-equalizer i:nth-child(4n) { animation-delay: -0.9s; }

body.landing-body .nv-promo-card {
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 43, 255, 0.18);
  border-radius: 14px;
  background: linear-gradient(110deg, rgba(110, 59, 255, 0.2), rgba(255, 43, 255, 0.09));
}

body.landing-body .nv-promo-card span {
  color: #ef9fff;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

body.landing-body .nv-promo-card strong { color: white; font-size: 0.9rem; }
body.landing-body .nv-promo-card small { color: var(--nv-muted); font-size: 0.66rem; }

body.landing-body .nv-player-queue {
  display: grid;
  gap: 8px;
  padding: 14px 18px 16px;
}

body.landing-body .nv-player-queue span {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: #cbd5ed;
  font-size: 0.68rem;
}

body.landing-body .nv-player-queue b { color: var(--nv-cyan); }
body.landing-body .nv-player-queue em { color: var(--nv-faint); font-style: normal; }

/* phone ancorado ao canto inferior-esquerdo do palco */
body.landing-body .nv-phone {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 132px;
  padding: 16px 12px 18px;
  border: 2px solid rgba(174, 191, 231, 0.35);
  border-radius: 24px;
  background: linear-gradient(165deg, #0c1936, #030713);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 0 0 35px rgba(110, 59, 255, 0.16);
  transform: rotate(-5deg);
}

body.landing-body .nv-phone-notch {
  width: 42px;
  height: 5px;
  margin: -6px 0 12px;
  border-radius: 9px;
  background: #01030a;
}

body.landing-body .nv-phone-brand { color: var(--nv-cyan); font-size: 0.62rem; font-weight: 800; }

body.landing-body .nv-phone-qr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 70px;
  height: 70px;
  margin: 14px 0;
  padding: 7px;
  border-radius: 7px;
  background: white;
}

body.landing-body .nv-phone-qr i { background: #071126; }
body.landing-body .nv-phone-qr i:nth-child(2),
body.landing-body .nv-phone-qr i:nth-child(6),
body.landing-body .nv-phone-qr i:nth-child(8) { background: transparent; }

body.landing-body .nv-phone strong {
  color: white;
  font-size: 0.72rem;
  line-height: 1.32;
  text-align: center;
}

body.landing-body .nv-phone small { margin-top: 10px; color: #ec7cff; font-size: 0.54rem; }

/* chips flutuantes ancorados ao player */
body.landing-body .nv-floating-chip {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  border: 1px solid rgba(126, 155, 221, 0.24);
  border-radius: 11px;
  background: rgba(7, 16, 36, 0.92);
  color: #dce6ff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  font-size: 0.68rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.landing-body .nv-floating-chip i { margin-right: 5px; color: var(--nv-cyan); }
body.landing-body .nv-chip-ia { top: 4px; left: 12px; }
body.landing-body .nv-chip-revenue { right: -6px; bottom: 92px; }
body.landing-body .nv-chip-revenue i { color: #ff7cff; }

/* ============================================================
   REVEAL progressivo (html.js-anim é adicionada só com JS ok)
   ============================================================ */

html.js-anim body.landing-body .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

html.js-anim body.landing-body .reveal.in {
  opacity: 1;
  transform: none;
}

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

@keyframes nvEqualize {
  from { height: 18%; }
  to { height: 92%; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 960px) {
  body.landing-body .nv-header { top: 8px; }
  body.landing-body .nv-nav .landing-nav-link { display: none !important; }

  body.landing-body .nv-hero { padding-top: 44px; }
  body.landing-body .nv-hero-grid { grid-template-columns: 1fr; gap: 44px; }

  body.landing-body .nv-hero-copy {
    align-items: center;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }
  body.landing-body .nv-hero-title { max-width: none; }
  body.landing-body .nv-hero-subtitle,
  body.landing-body .nv-hero-footnote { margin-inline: auto; text-align: center; }
  body.landing-body .nv-hero-actions,
  body.landing-body .nv-trust-row { justify-content: center; }

  body.landing-body .nv-stage {
    width: min(560px, 100%);
    margin: 0 auto;
    padding: 12px 8px 52px 24px;
  }
  body.landing-body .nv-player-shell { margin-inline: auto; }
}

@media (max-width: 600px) {
  body.landing-body .nv-header { padding: 7px 9px; border-radius: 14px; }
  body.landing-body .nv-brand-official { width: 84px; height: 44px; }
  body.landing-body .nv-nav .landing-nav-cta { padding: 9px 14px !important; }

  body.landing-body .nv-hero { padding: 36px 0 44px; }
  body.landing-body .nv-hero-title { font-size: clamp(1.9rem, 8.4vw, 2.5rem) !important; }
  body.landing-body .nv-hero-subtitle br { display: none; }

  body.landing-body .nv-hero-actions { width: 100% !important; flex-direction: column; }
  body.landing-body .nv-btn-primary,
  body.landing-body .nv-btn-ghost { width: 100% !important; }

  body.landing-body .nv-trust-row { gap: 8px; }
  body.landing-body .nv-trust-row span { padding: 7px 12px; font-size: 0.78rem; }

  body.landing-body .nv-stage { padding: 10px 4px 46px 16px; }
  body.landing-body .nv-player-screen { padding: 22px 20px 18px; }
  body.landing-body .nv-phone { width: 112px; }
  body.landing-body .nv-phone-qr { width: 56px; height: 56px; margin: 11px 0; }
  body.landing-body .nv-chip-ia { display: none; }
  body.landing-body .nv-chip-revenue { right: 0; bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  body.landing-body .nv-btn-primary,
  body.landing-body .nv-equalizer i { animation: none; }
  body.landing-body .nv-player-shell,
  body.landing-body .nv-btn-primary,
  body.landing-body .nv-btn-ghost { transition: none; }
  html.js-anim body.landing-body .reveal { opacity: 1; transform: none; transition: none; }
}

body.landing-body .nv-faq-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  text-align: center;
}

body.landing-body .nv-faq-more p {
  margin: 0;
  color: #9eacca;
  font-size: 0.94rem;
}

body.landing-body .nv-faq-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 14px;
  background: linear-gradient(110deg, rgba(0, 229, 255, 0.13), rgba(110, 59, 255, 0.18));
  color: #f2f6ff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), 0 0 26px rgba(0, 229, 255, 0.08);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.landing-body .nv-faq-more-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.65);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), 0 0 32px rgba(0, 229, 255, 0.13);
}

body.landing-body .nv-faq-more-btn:focus-visible {
  outline: 2px solid #00e5ff;
  outline-offset: 4px;
}
