/* ===== HOME V2 — Improved layout & visual hierarchy ===== */

/* --- Hero --- */
.v2-hero{
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.v2-hero-badge{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(255,79,216,.10);
  border: 1px solid rgba(255,79,216,.28);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}

.v2-hero-badge i{
  color: var(--lux-gold);
}

.v2-hero h1{
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.v2-hero h1 .v2-gradient-text{
  background: linear-gradient(135deg, var(--lux-pink), var(--lux-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-hero-sub{
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--lux-muted);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

/* --- Stats bar --- */
.v2-stats{
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.v2-stat{
  display: flex;
  flex-direction: column;
}

.v2-stat-number{
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lux-text);
  line-height: 1.1;
}

.v2-stat-label{
  font-size: .78rem;
  color: var(--lux-muted);
  letter-spacing: .01em;
}

/* --- Benefits row --- */
.v2-benefits{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}

.v2-benefit{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .7rem;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(245,242,255,.88);
  font-weight: 500;
}

.v2-benefit i{
  color: var(--lux-pink);
  font-size: .75rem;
}

/* --- Form card improvements --- */
.v2-form-card{
  position: relative;
  overflow: hidden;
}

.v2-form-card::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lux-pink), var(--lux-gold), var(--lux-pink));
  border-radius: 18px 18px 0 0;
}

.v2-form-header{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}

.v2-free-tag{
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 6px;
  background: rgba(25,135,84,.18);
  border: 1px solid rgba(25,135,84,.35);
  color: #6edea0;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- Logos / trust row --- */
.v2-trust-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 1rem;
  text-align: center;
}

.v2-trust-logos{
  justify-content: center;
}

.v2-trust-row span{
  font-size: .78rem;
  color: rgba(245,242,255,.45);
  white-space: nowrap;
}

.v2-trust-logos{
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.v2-trust-logo{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(245,242,255,.35);
  font-size: .82rem;
  font-weight: 600;
}

.v2-trust-logo i{
  font-size: 1rem;
}

/* --- Section titles --- */
.v2-section{
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.v2-kicker{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(255,79,216,.10);
  border: 1px solid rgba(255,79,216,.2);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}

.v2-section-title{
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}

.v2-section-sub{
  font-size: 1rem;
  color: var(--lux-muted);
  max-width: 620px;
}

.v2-section-sub.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

/* --- Pain points (improved grid) --- */
.v2-pain-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.v2-pain-item{
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s ease, background .25s ease;
}

.v2-pain-item:hover{
  border-color: rgba(255,79,216,.25);
  background: rgba(255,79,216,.04);
}

.v2-pain-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,79,216,.12);
  border: 1px solid rgba(255,79,216,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lux-pink);
  font-size: .95rem;
}

.v2-pain-text{
  line-height: 1.45;
}

.v2-pain-title{
  color: rgba(255,255,255,.95);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
  line-height: 1.25;
}

.v2-pain-sub{
  color: rgba(245,242,255,.72);
  font-size: .9rem;
  line-height: 1.45;
}

/* --- Feature rows (zigzag with images + glow) --- */
.v2-feat{
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2.25rem 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.v2-feat:hover{
  border-color: rgba(255,79,216,.22);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.v2-feat-glow{
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}

.v2-glow-pink{  background: var(--lux-pink);  top: -100px; right: -80px; }
.v2-glow-gold{  background: var(--lux-gold);  top: -80px;  left: -100px; }
.v2-glow-blue{  background: #6495ed;          top: -100px; right: -80px; }
.v2-glow-green{ background: #198754;          top: -80px;  left: -100px; }

.v2-feat .row{ position: relative; z-index: 1; }

.v2-feat-step{
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .6rem;
  background: rgba(255,79,216,.12);
  border: 1px solid rgba(255,79,216,.22);
  color: rgba(255,255,255,.85);
}

.v2-feat-title{
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lux-text);
  margin-bottom: .5rem;
}

.v2-feat-desc{
  font-size: .92rem;
  color: var(--lux-muted);
  line-height: 1.6;
}

.v2-feat-img{
  width: 100%;            /* fill column width */
  height: auto;           /* preserve intrinsic aspect ratio */
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;    /* never crop or squish if the parent forces a height */
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,.45), 0 0 60px rgba(255,79,216,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.v2-feat:hover .v2-feat-img{
  transform: scale(1.03);
  box-shadow: 0 16px 56px rgba(0,0,0,.5), 0 0 80px rgba(255,79,216,.1);
}
.v2-feat-img--nobg{
  border-radius: 0;
  box-shadow: none;
}
.v2-feat:hover .v2-feat-img--nobg{
  box-shadow: none;
}

/* Feature pills (reused) */
.v2-feature-pills{
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.v2-feature-pill{
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .55rem;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(245,242,255,.78);
  font-size: .78rem;
  font-weight: 500;
}

.v2-feature-pill i{
  font-size: .65rem;
  color: var(--lux-pink);
}

/* --- Comparison / Path cards --- */
.v2-path-card{
  border-radius: 18px;
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.v2-path-card:hover{
  transform: translateY(-3px);
}

.v2-path-without{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(220,53,69,.18);
}

.v2-path-without:hover{
  box-shadow: 0 12px 40px rgba(220,53,69,.08);
}

.v2-path-with{
  background: rgba(25,135,84,.04);
  border: 1px solid rgba(25,135,84,.22);
}

.v2-path-with:hover{
  box-shadow: 0 12px 40px rgba(25,135,84,.1);
}

.v2-path-badge{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.v2-path-badge.without{
  background: rgba(220,53,69,.12);
  border: 1px solid rgba(220,53,69,.3);
  color: rgba(220,53,69,.9);
}

.v2-path-badge.with{
  background: rgba(25,135,84,.12);
  border: 1px solid rgba(25,135,84,.3);
  color: rgba(25,135,84,.9);
}

.v2-path-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--lux-text);
}

.v2-path-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.v2-path-list li{
  padding: .5rem 0 .5rem 1.6rem;
  position: relative;
  color: rgba(245,242,255,.8);
  font-size: .9rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.v2-path-list li:last-child{ border-bottom: none; }

.v2-path-without .v2-path-list li::before{
  content: "\2717";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: rgba(220,53,69,.7);
}

.v2-path-with .v2-path-list li::before{
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: rgba(25,135,84,.8);
}

.v2-path-bottom{
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.v2-path-bottom.without{
  color: rgba(220,53,69,.7);
}

.v2-path-bottom.with{
  color: rgba(25,135,84,.85);
}

.v2-path-arrow{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.3);
}

.v2-path-arrow i{
  font-size: 1.8rem;
  animation: v2PulseArrow 2s ease-in-out infinite;
}

@keyframes v2PulseArrow{
  0%, 100%{ opacity: .3; transform: translateX(0); }
  50%{ opacity: .7; transform: translateX(4px); }
}

.v2-path-arrow-line{
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, rgba(220,53,69,.35), rgba(255,79,216,.15) 50%, rgba(25,135,84,.35));
  border-radius: 2px;
}

@media (max-width: 767.98px){
  .v2-path-arrow{
    flex-direction: row;
    gap: .5rem;
  }

  .v2-path-arrow i{
    font-size: 1.2rem;
  }

  .v2-path-arrow-line{
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(220,53,69,.3), rgba(255,255,255,.08) 50%, rgba(25,135,84,.3));
  }
}

/* --- Testimonials --- */
.v2-testimonial{
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease;
}

.v2-testimonial:hover{
  border-color: rgba(255,79,216,.2);
}

.v2-testimonial-stars{
  color: #ffc107;
  font-size: .85rem;
  letter-spacing: .1rem;
  margin-bottom: .75rem;
}

.v2-testimonial-text{
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(245,242,255,.82);
  font-style: italic;
  flex: 1;
  margin-bottom: 1rem;
}

.v2-testimonial-author{
  font-weight: 700;
  font-size: .9rem;
  color: var(--lux-text);
}

.v2-testimonial-role{
  font-size: .78rem;
  color: rgba(245,242,255,.5);
}

/* --- Final CTA --- */
.v2-cta-section{
  margin-top: 5rem;
  margin-bottom: 2rem;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: radial-gradient(600px 300px at 50% 50%, rgba(255,79,216,.1), transparent 70%);
  border: 1px solid rgba(255,79,216,.12);
}

.v2-cta-section h2{
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: .75rem;
}

/* --- Pegah guide box --- */
.v2-guide-box{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.v2-guide-box p{
  font-size: .98rem;
  line-height: 1.7;
  color: rgba(245,242,255,.82);
}

.v2-guide-box strong{
  color: rgba(255,255,255,.95) !important;
}

.v2-guide-box em{
  color: rgba(255,79,216,.85);
}

/* --- Included pills --- */
.v2-included-pills{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-top: 1rem;
}

.v2-included-pill{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--lux-border);
  color: rgba(245,242,255,.85);
  font-size: .85rem;
  font-weight: 600;
}

.v2-included-pill i{
  color: var(--lux-gold);
  font-size: .7rem;
}

/* --- Scroll reveal (reuse logic from v1) --- */
.v2-reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

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

/* Stagger children */
.v2-stagger > .v2-reveal:nth-child(1){ transition-delay: 0s; }
.v2-stagger > .v2-reveal:nth-child(2){ transition-delay: .1s; }
.v2-stagger > .v2-reveal:nth-child(3){ transition-delay: .2s; }
.v2-stagger > .v2-reveal:nth-child(4){ transition-delay: .3s; }

/* --- Mobile sticky CTA --- */
.v2-sticky-cta{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1rem;
  background: rgba(7,6,12,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,79,216,.2);
  z-index: 1000;
  text-align: center;
}

.v2-sticky-cta.v2-show{
  display: block;
}

@media (max-width: 991.98px){
  .v2-hero{
    text-align: center;
  }

  .v2-hero-sub{
    margin-left: auto;
    margin-right: auto;
  }

  .v2-stats{
    justify-content: center;
  }

  .v2-benefits{
    justify-content: center;
  }

  .v2-feature-number{
    display: none;
  }
}

/* --- Divider --- */
.v2-divider{
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.12), rgba(255,255,255,0));
  margin: 3rem 0;
}

/* ===== V2 STYLE UPGRADE — Editorial polish ===== */

/* 1. Hero h1 — uses the same Inter sans-serif as the body/subtitle so the
   typography stays uniform across the whole site. */
.v2-hero h1{
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 6.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}
.v2-hero-accent{ color: var(--lux-pink); }

/* 2. Grain noise overlay (paper texture, blends into black bg) */
.v2-grain::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: .05;
  mix-blend-mode: screen;
}

/* 3. Magenta border accent on key cards (no shadow — flat editorial look) */
.v2-form-card,
.v2-feat,
.v2-testimonial,
.v2-path-card{
  box-shadow: none;
}

/* 4. Reveal-on-scroll — refine easing curve */
.v2-reveal{
  transition:
    opacity .9s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1);
}

/* 5. Editorial eyebrow label (monospace, accent rule). Drop-in replacement for .v2-kicker. */
.v2-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: ui-monospace, 'JetBrains Mono', SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .85rem;
  padding: 0;
}
/* (eyebrow rule mark removed — text-only label) */

/* 6. Cursor glow (desktop only) — radial blur that follows the pointer */
.v2-cursor-glow{
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(255,79,216,.22), transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity .4s;
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(20px);
}
@media (hover: hover) and (pointer: fine){
  body.v2-has-cursor .v2-cursor-glow{ opacity: 1; }
}
@media (prefers-reduced-motion: reduce){
  .v2-cursor-glow{ display: none; }
}

/* Explainer video CTA — left side of the hero, opens modal */
.v2-watch-btn{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .85rem .55rem .55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .005em;
}
.v2-watch-btn .v2-watch-play{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lux-pink);
  color: #120814;
  font-size: 1rem;
  flex: 0 0 28px;
  line-height: 1;
}
.v2-watch-btn .v2-watch-time{
  font-weight: 400;
  color: rgba(245,242,255,.55);
  margin-left: .35rem;
  font-size: .82rem;
}
.v2-watch-btn:hover .v2-watch-play{
  background: #ff85e6;
}

/* Hero variant — matched to .lux-btn (Start free analysis) sizing,
   filled with the brand gradient and a soft pulse for prominence */
.v2-watch-btn--hero{
  padding: .375rem .75rem .375rem .375rem;  /* matches Bootstrap .btn / .lux-btn */
  border-radius: 12px;                      /* matches .lux-btn (Start free analysis) */
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(255,79,216,.35);
  animation: v2WatchPulse 2.4s ease-in-out infinite;
}
.v2-watch-btn--hero .v2-watch-play{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  font-size: 1rem;
  background: #ffffff;
  color: var(--lux-pink);
  box-shadow: 0 0 0 3px rgba(255,255,255,.18);
}
.v2-watch-btn--hero .v2-watch-time{
  color: rgba(18,8,20,.6);
  font-weight: 600;
  font-size: .82rem;
  margin-left: .4rem;
}
.v2-watch-btn--hero:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(255,79,216,.5);
  filter: brightness(1.05);
}
@keyframes v2WatchPulse{
  0%, 100% { box-shadow: 0 18px 45px rgba(255,79,216,.35), 0 0 0 0 rgba(255,79,216,.35); }
  50%      { box-shadow: 0 18px 45px rgba(255,79,216,.35), 0 0 0 14px rgba(255,79,216,0); }
}
@media (prefers-reduced-motion: reduce){
  .v2-watch-btn--hero{ animation: none; }
}

/* Explainer video modal */
.v2-explainer-content{
  background: #0b0710;
  border: 1px solid rgba(255,79,216,.22);
  border-radius: 18px;
  overflow: hidden;
}
.v2-explainer-video{
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* 7. Hover state on editorial cards — magenta tint + lift, no shadow */
.v2-feat,
.v2-pain-item,
.v2-path-card,
.v2-testimonial,
.v2-form-card{
  transition:
    border-color .35s cubic-bezier(.2,.7,.2,1),
    background .35s cubic-bezier(.2,.7,.2,1),
    transform .35s cubic-bezier(.2,.7,.2,1);
}
.v2-feat:hover,
.v2-pain-item:hover,
.v2-testimonial:hover,
.v2-form-card:hover,
.v2-path-card:hover{
  transform: translateY(-4px);
  background: rgba(255,79,216,.08);
  border-color: rgba(255,79,216,.55);
  box-shadow: none;
}

/* 8. Font coherency — Inter sans across ALL titles + UPPERCASE for stronger
   visual impact, matching the body/subtitle font. */
.v2-section-title,
.v2-feat-title,
.v2-path-title,
.v2-cta-section h2,
.v2-form-card .lux-brand{
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -.015em;
  text-transform: none;
}
.v2-section-title{
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.08;
}
.v2-feat-title{
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.v2-path-title{
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

/* FAQ accordion — dark editorial styling, magenta accent on open */
.v2-faq .v2-faq-item{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  margin-bottom: .75rem;
  overflow: hidden;
}
.v2-faq .v2-faq-btn{
  background: transparent;
  color: var(--lux-text);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: none;
  border-radius: 14px;
  transition: background .25s ease, color .25s ease;
}
.v2-faq .v2-faq-btn:not(.collapsed){
  background: rgba(255,79,216,.08);
  color: var(--lux-pink);
  box-shadow: none;
}
.v2-faq .v2-faq-btn::after{
  filter: invert(60%) sepia(60%) saturate(2000%) hue-rotate(280deg) brightness(110%);
}
.v2-faq .v2-faq-btn:focus{
  box-shadow: 0 0 0 .15rem rgba(255,79,216,.25);
}
.v2-faq .accordion-body{
  color: rgba(245,242,255,.82);
  font-size: .95rem;
  line-height: 1.6;
  padding: 0 1.25rem 1.1rem;
}
.v2-faq .accordion-body a{
  color: var(--lux-pink);
  text-decoration: underline;
  text-decoration-color: rgba(255,79,216,.4);
  text-underline-offset: 2px;
}
.v2-faq .accordion-body a:hover{
  text-decoration-color: var(--lux-pink);
}
