:root{
  --bg: #07060a;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.58);
  --magenta: #e92176;
  --magenta2: rgba(233,33,118,.35);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius-lg: 24px;
  --max: 1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

/* Fondo fijo */
body::before{
  content:"";
  position:fixed;
  inset:-30vmax;
  background:
    radial-gradient(closest-side at 20% 15%, rgba(233,33,118,.22), transparent 55%),
    radial-gradient(closest-side at 75% 25%, rgba(233,33,118,.14), transparent 60%),
    radial-gradient(closest-side at 65% 85%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(closest-side at 20% 80%, rgba(255,255,255,.04), transparent 55%);
  filter: blur(40px);
  z-index:-2;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.72));
  z-index:-1;
  pointer-events:none;
}

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

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section{
  padding: 78px 0;
}

section{margin-bottom: 100px;}

@media (max-width: 720px){
  .container{ width: calc(100% - 28px); }
  .section{ padding: 56px 0; }
}

.h1{ font-size: clamp(34px, 3.6vw, 56px); line-height: 1.02; margin: 12px 0 10px; letter-spacing: -.02em;}
.h2{ font-size: clamp(26px, 2.1vw, 36px); line-height: 1.12; margin: 0 0 10px; letter-spacing: -.015em;}
.h3{ font-size: 18px; line-height: 1.2; margin: 0 0 10px; }
.lead{ color: var(--muted); max-width: 54ch; line-height: 1.55; margin: 14px 0 0; }
.subline{ margin: 10px 0 4px; color: var(--muted); font-size: 15px;}
.muted{ color: var(--muted); }
.center{ display:flex; justify-content:center; margin-top: 22px; }

.accent{ color: var(--magenta); }

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(233,33,118,.95), rgba(233,33,118,.55));
  box-shadow: 0 12px 30px rgba(233,33,118,.20);
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand__name{
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand__name--soft{
  font-weight: 600;
  opacity: .92;
  margin-left:2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 22px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  font-size: 14px;
}
.nav a{ opacity:.92; }
.nav a:hover{ opacity:1; color:#fff; }

.topbar__cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.iconbtn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color:#fff;
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.iconbtn:hover{ background: rgba(255,255,255,.08); }

@media (max-width: 860px){
  .nav{ display:none; }
  .iconbtn{ display:flex; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor:pointer;
  transition: transform .14s ease, background .14s ease, box-shadow .14s ease, border-color .14s ease;
  user-select:none;
}
.btn:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.btn:active{ transform: translateY(0px) scale(.99); }
.btn__icon{ opacity:.9; }

.btn--primary{
  background: var(--magenta);
  border-color: rgba(233,33,118,.70);
  box-shadow: 0 14px 40px rgba(233,33,118,.20);
}
.btn--primary:hover{
  background: #ff2d8a;
  box-shadow: 0 18px 50px rgba(233,33,118,.26);
}
.btn--ghost{
  background: rgba(233,33,118,.10);
  border-color: rgba(233,33,118,.32);
}
.btn--ghost:hover{
  background: rgba(233,33,118,.16);
  border-color: rgba(233,33,118,.45);
}
.btn--lg{
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 15px;
}

/* Hero */
.hero{ padding-top: 84px; }
.hero__grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 38px;
}
.hero__copy{ flex: 1 1 520px; min-width: 280px; padding-top: 50px;}
.hero__visual{ width: 35%;; display:flex; flex-direction:column; align-items:flex-end ; }

@media (max-width:780px){ 

  .hero__visual{width: 100%;}
  
}

.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(233,33,118,.25);
  background: rgba(233,33,118,.10);
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: 13px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--magenta);
  box-shadow: 0 0 0 4px rgba(233,33,118,.16);
}

.hero__pills{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 18px;
}

@media (max-width:780px) {

  .hero__pills{display: none;}
  
}
.pill{
  display:flex;
  flex-direction:column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.pill__k{ font-size: 12px; color: rgba(255,255,255,.72); font-weight: 700; text-transform: uppercase; letter-spacing: .08em;}
.pill__v{ font-size: 13px; color: rgba(255,255,255,.92); font-weight: 600; }

.hero__actions{ margin-top: 18px; display:flex; flex-direction:column; gap: 12px; }
.hero__actions > .btn{ width: fit-content; }
.micro{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 6px; }
.micro__item{ font-size: 12px; color: rgba(255,255,255,.66); border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04); border-radius: 999px; padding: 6px 10px; }

.shot-frame{
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  padding: 10px;
}
.shot-frame img{
  width:100%;
  height:auto;
  border-radius: 15px;
}
.glow{
  position:absolute;
  inset:auto -20% -30% -20%;
  height: 60%;
  background: radial-gradient(circle at 50% 50%, rgba(233,33,118,.35), transparent 65%);
  filter: blur(18px);
  pointer-events:none;
}
.hero__stats{
  width: min(520px, 100%);
  display:flex;
  gap: 10px;
}
.stat{
  flex: 1 1 0;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.stat__num{ font-weight: 800; letter-spacing: -.02em; font-size: 18px; }
.stat__txt{ margin-top: 6px; color: rgba(255,255,255,.70); font-size: 12px; line-height: 1.35; }

@media (max-width: 980px){
  .hero__grid{ flex-direction:column; }
  .hero__visual{ align-items:stretch; }
  .hero__actions > .btn{ width: 100%; }
  .hero__stats{ flex-direction:column; }
}

/* Section head */

section{padding: 15px !important;}

.section__head{
  margin-bottom: 20px;
}
.section__head.row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
}

/* Cards / grids */
.grid-3{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  margin-top: 18px;
}
.card{
  flex: 1 1 260px;
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.card__icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(233,33,118,.13);
  border: 1px solid rgba(233,33,118,.22);
  margin-bottom: 12px;
}

/* Split */
.split{
  display:flex;
  gap: 26px;
  align-items:center;
}
.split__left{ width: 50%; }
.split__right{ width: 50%; display:flex; justify-content:flex-end; }

@media (max-width:780px) {

  .split__left{ width: 100%; }
.split__right{ width: 100% }
  
}


.bullets{ list-style:none; padding:0; margin: 16px 0 0; display:flex; flex-direction:column; gap:10px; }
.check{ color: var(--magenta); font-weight: 800; margin-right: 8px; }
.bullets li{ color: rgba(255,255,255,.82); }
.split__actions{ display:flex; gap: 12px; margin-top: 16px; flex-wrap:wrap; }

.shot{
  width: min(620px, 100%);
  border-radius: var(--radius-lg);
  overflow:hidden;
  height: fit-content;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.shot img{ border-radius: 0; }

@media (max-width: 920px){
  .split{ flex-direction:column; align-items:stretch; }
  .split__right{ justify-content:flex-start; }
}

/* Modules */
.modules{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 18px;
}
.module{
  flex: 1 1 280px;
  padding: 16px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.module__top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.module__icon{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(233,33,118,.12);
  border: 1px solid rgba(233,33,118,.22);
}
.module__title{ margin:0; font-size: 16px; font-weight: 750; }
.module p{ margin: 0; color: rgba(255,255,255,.72); line-height: 1.45; font-size: 13px; }
.modules__shot{ margin-top: 18px; }

/* Carousel */
.carousel{
  position:relative;
  margin-top: 12px;
}
.carousel__track{
  display:flex;
  gap: 14px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar{ height:0; }

.carousel__actions{ display:flex; gap: 10px; }
.carousel__btn{ padding: 10px 14px; border-radius: 14px; }

.shotcard{
  scroll-snap-align: start;
  flex: 0 0 320px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 12px 12px;
  cursor:pointer;
  text-align:left;
  color:#fff;
  position:relative;
  overflow:hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  transform-style: preserve-3d;
}
.shotcard:focus-visible{ outline: 2px solid rgba(233,33,118,.60); outline-offset: 2px; }

.shotcard__media{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  height: 190px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.shotcard__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform .18s ease, filter .18s ease;
}
.shotcard__meta{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 4px;
}
.shotcard__meta span{ font-size: 12px; color: rgba(255,255,255,.62); }
.shotcard__meta strong{ font-size: 14px; letter-spacing: -.01em; }

@media (hover:hover){
  .shotcard:hover{
    border-color: rgba(233,33,118,.40);
    box-shadow: 0 18px 60px rgba(0,0,0,.45);
    transform: perspective(900px) rotateY(-10deg) rotateX(2deg) translateY(-2px);
  }
  .shotcard:hover .shotcard__media img{
    transform: scale(1.05);
    filter: saturate(1.06) contrast(1.04);
  }
}

/* Price */
.price{
  padding-top: 60px;
}
.price__grid{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap: 18px;
}
.value{
  margin-top: 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.value__item{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
}
.pricecard{
  flex: 0 0 min(420px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233,33,118,.40);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  padding: 18px 18px;
  box-shadow: 0 20px 70px rgba(233,33,118,.14);
}
.pricecard__tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(233,33,118,.35);
  background: rgba(233,33,118,.12);
  font-size: 12px;
  font-weight: 700;
}
.pricecard__price{
  display:flex;
  align-items:flex-end;
  gap: 12px;
  margin-top: 14px;
}
.pricecard__now{
  font-size: 44px;
  font-weight: 850;
  letter-spacing: -.03em;
  color: #fff;
}
.pricecard__old{
  font-size: 14px;
  color: rgba(255,255,255,.62);
  text-decoration: line-through;
  margin-bottom: 10px;
}
.pricecard__desc{
  margin: 10px 0 14px;
  color: rgba(255,255,255,.76);
  line-height: 1.5;
}
.pricecard__note{
  margin-top: 12px;
  font-size: 12px;
}

@media (max-width: 980px){
  .price__grid{ flex-direction:column; }
  .pricecard{ width: 100%; }
}

/* FAQ */
.faq{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 16px;
}
.faq__item{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 14px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.faq__item p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.74);
  line-height: 1.55;
}

/* Final CTA */
.final-cta{ margin-top: 20px; }
.final-cta__card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233,33,118,.28);
  background: rgba(233,33,118,.10);
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.final-cta__actions{ display:flex; gap: 12px; flex-wrap:wrap; }

/* Footer */
.footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.brand--small .brand__mark{ width: 34px; height: 34px; border-radius: 12px; }
.brand--small .brand__name{ font-size: 14px; }
.footer__left{ display:flex; flex-direction:column; gap: 10px; }

/* Modal */
.modal, .lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index: 80;
}
.modal[aria-hidden="false"], .lightbox[aria-hidden="false"]{ display:block; }

.modal__backdrop, .lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(6px);
}

.modal__panel{
  position:relative;
  width: min(720px, calc(100% - 24px));
  margin: 80px auto 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(15,12,18,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  overflow:hidden;
}
.modal__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.modal__body{ padding: 16px 16px; }

.q{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 14px 14px;
  margin-bottom: 10px;
}
.q__top{ display:flex; align-items:center; gap: 10px; }
.q__num{
  width: 30px; height: 30px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-weight: 800;
  background: rgba(233,33,118,.16);
  border: 1px solid rgba(233,33,118,.22);
}
.q__text{ font-weight: 700; color: rgba(255,255,255,.92); }

.q__controls{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}
.seg{
  flex: 1 1 0;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-weight: 700;
  cursor:pointer;
  transition: background .14s ease, border-color .14s ease, transform .14s ease;
}
.seg:hover{ background: rgba(255,255,255,.07); transform: translateY(-1px); }
.seg.is-active[data-v="yes"]{
  background: rgba(233,33,118,.22);
  border-color: rgba(233,33,118,.45);
}
.seg.is-active[data-v="no"]{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.q__msg{
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.74);
  display:none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(233,33,118,.22);
  background: rgba(233,33,118,.10);
}
.q__msg.is-show{ display:block; }

.modal__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-top: 6px;
  flex-wrap:wrap;
}
.modal__hint{ font-size: 12px; }

/* Lightbox */
.lightbox__panel{
  position:relative;
  width: min(1040px, calc(100% - 24px));
  margin: 48px auto 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(15,12,18,.74);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  overflow:hidden;
}
.lightbox__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.lightbox__title{ font-weight: 800; letter-spacing: -.01em; }
.lightbox__body{ padding: 14px 14px; }
.lightbox__body img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}

/* Minor */
@media (max-width: 560px){
  .topbar__cta .btn--ghost{ display:none; }
  .hero{ padding-top: 64px; }
}
