:root{
  --bg:#070709;
  --bg2:#0b0b10;
  --text:#e9e9ee;
  --muted:#b8b8c7;
  --line:rgba(255,255,255,.08);

  --red:#ff1b2d;
  --red2:#b80012;

  --card:rgba(255,255,255,.04);
  --shadow: 0 22px 60px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 50% -10%, rgba(255,27,45,.20), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(255,27,45,.10), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

.container{
  width:min(1040px, 92vw);
  margin:0 auto;
}

.center{ text-align:center; }

/* Subtle noise */
.noise{
  position:fixed; inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.10;
}

/* Glows */
.bg-glow{
  position:fixed;
  width:520px; height:520px;
  border-radius:50%;
  filter: blur(60px);
  opacity:.22;
  pointer-events:none;
  z-index:0;
}
.bg-glow-1{
  left:-140px; top:80px;
  background: radial-gradient(circle at 30% 30%, rgba(255,27,45,.9), transparent 60%);
}
.bg-glow-2{
  right:-180px; top:520px;
  background: radial-gradient(circle at 30% 30%, rgba(255,27,45,.7), transparent 60%);
}

.top{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.35);
}
.logo{
  display:block;
  margin: 10px auto;
  height: 40px;
  width:auto;
  object-fit:contain;
}

.hero{
  position:relative;
  padding: 26px 0 10px;
  z-index:1;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  font-size:12px;
  color: var(--muted);
}
.dot{
  width:8px;height:8px;border-radius:999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255,27,45,.8);
}

.title{
  margin:18px 0 10px;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:900;
}
.accent{
  color:var(--red);
  text-shadow: 0 0 22px rgba(255,27,45,.18);
}

.subtitle{
  margin:0 auto 18px;
  max-width: 760px;
  color:var(--muted);
  font-size: clamp(14px, 2.2vw, 18px);
  line-height:1.55;
}

.cta-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 12px 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn-primary{
  background: linear-gradient(180deg, var(--red), var(--red2));
  border-color: rgba(255,27,45,.55);
  box-shadow: 0 18px 40px rgba(255,27,45,.18);
  color:white;
}
.btn-primary:hover{
  box-shadow: 0 22px 60px rgba(255,27,45,.24);
  transform: translateY(-1px);
}

.btn-ghost{
  background: rgba(255,255,255,.02);
  color: var(--text);
}
.btn-ghost:hover{
  border-color: rgba(255,27,45,.28);
  box-shadow: 0 14px 40px rgba(255,27,45,.10);
}

.btn-wide{ width:min(520px, 92vw); padding:14px 18px; }

/* Video */
.video-wrap{
  margin: 18px auto 16px;
  width: min(860px, 96vw);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.video-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  gap:10px;
  flex-wrap:wrap;
}
.video-title{ font-weight:900; }
.video-sub{ color:var(--muted); font-size:12px; }

.video-box{
  position:relative;
  aspect-ratio: 16/9;
  background: radial-gradient(400px 250px at 20% 30%, rgba(255,27,45,.12), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.55));
  overflow:hidden;
}
.video-box vturb-smartplayer{
  width:100% !important;
  height:100% !important;
  display:block !important;
}

.under-video{
  padding: 14px 14px 16px;
  display:flex;
  align-items:center;
  flex-direction:column;
  gap:8px;
}

.micro{
  margin:0;
  font-size: 12px;
  color: var(--muted);
}

/* Bullets */
.bullets{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
  margin: 14px auto 6px;
  width: min(980px, 96vw);
}
.bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  text-align:left;
  padding: 12px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
}
.bullet-ic{
  width:28px;height:28px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,27,45,.12);
  border:1px solid rgba(255,27,45,.22);
  color: var(--red);
  font-weight:900;
}
.bullet-txt{ font-size:13px; color: var(--muted); line-height:1.35; }

.divider{
  width:min(880px, 92vw);
  height:1px;
  margin: 22px auto;
  background: linear-gradient(90deg, transparent, rgba(255,27,45,.30), transparent);
}

/* Sections */
section{ padding: 18px 0; position:relative; z-index:1; }
.h2{
  margin: 6px 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing:-.02em;
}
.h3{ margin: 12px 0 8px; font-weight:900; font-size:18px; }
.p{
  margin: 0 auto 14px;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.p2{
  margin:0;
  color: var(--muted);
  line-height:1.7;
  font-size:14px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}
.card{
  text-align:left;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  padding: 16px 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.card-top{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
}
.chip{
  display:inline-flex;
  padding: 6px 10px;
  border-radius:999px;
  background: rgba(255,27,45,.12);
  border: 1px solid rgba(255,27,45,.22);
  font-size: 12px;
  font-weight: 800;
  color: #ffd4d8;
}
.chip.ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
  color: var(--muted);
}

/* Carousel */
.carousel{
  margin: 14px auto 0;
  width: min(980px, 96vw);
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  align-items:center;
  gap:10px;
}
.car-btn{
  height:44px; width:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.car-btn:hover{
  border-color: rgba(255,27,45,.28);
  box-shadow: 0 16px 40px rgba(255,27,45,.10);
}
.car-track{
  display:flex;
  overflow:hidden;
  scroll-behavior:smooth;
  gap:10px;
  padding: 2px;
}
.car-item{
  min-width: clamp(210px, 42vw, 360px);
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.car-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

/* Modules */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 10px;
}
.mod{
  text-align:left;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 16px 14px;
}
.mod-n{
  width:44px;height:44px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  background: rgba(255,27,45,.12);
  border:1px solid rgba(255,27,45,.22);
  color:#ffd4d8;
}
.mod-t{ margin: 10px 0 6px; font-weight:900; }
.mod-d{ color: var(--muted); line-height:1.6; font-size:14px; }

/* Pricing */
.plan{
  margin: 14px auto 0;
  width: min(720px, 96vw);
  border-radius: 26px;
  border: 1px solid rgba(255,27,45,.22);
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(255,27,45,.12), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow: 0 24px 70px rgba(255,27,45,.10);
  padding: 16px 14px 18px;
}
.plan-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 8px;
}
.plan-name{ font-weight: 900; }
.plan-tag{
  font-size:12px;
  font-weight:800;
  padding: 6px 10px;
  border-radius: 999px;
  color:#ffd4d8;
  background: rgba(255,27,45,.12);
  border:1px solid rgba(255,27,45,.22);
}

.price{
  display:flex;
  justify-content:center;
  align-items:baseline;
  gap:8px;
  margin: 10px 0 10px;
}
.price-currency{ font-weight:900; color:#ffd4d8; opacity:.9; }
.price-value{
  font-size: clamp(34px, 7vw, 62px);
  font-weight: 900;
  letter-spacing:-.03em;
  color: white;
  text-shadow: 0 16px 40px rgba(255,27,45,.14);
}

.list{
  list-style:none;
  padding:0;
  margin: 0 auto 14px;
  width:min(520px, 92vw);
  text-align:left;
}
.list li{
  padding: 8px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  margin-bottom: 10px;
  color: var(--muted);
}

/* FAQ */
.faq-box{
  width: min(860px, 96vw);
  margin: 10px auto 0;
  text-align:left;
}
.faq-item{
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 12px 12px;
  margin-bottom: 10px;
}
.faq-item summary{
  cursor:pointer;
  font-weight: 900;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* Footer */
.footer{
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}
.foot{
  margin:0;
  color: var(--muted);
  font-size: 12px;
}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 860px){
  .bullets{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards{ grid-template-columns: 1fr; }
  .car-item img{ height: 200px; }
}
@media (max-width: 520px){
  .bullets{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .video-head{ justify-content:center; text-align:center; }
}
