:root{
  --bg:#07070c;
  --bg-2:#0d0d13;
  --card:#131319;
  --card-2:#191922;
  --border:#26262f;
  --border-soft:rgba(255,255,255,.06);
  --orange:#ff9a4d;
  --orange-2:#ffb066;
  --orange-dark:#3a1a02;
  --blue:#6a8cff;
  --blue-dark:#04122c;
  --text:#f4f4f7;
  --text-2:#a3a3ab;
  --text-3:#6f6f78;
  --green:#3fb87f;
  --gold:#e0ac1f;
  --gold-2:#f7d878;
  --gold-dark:#3a2802;
  --font-head:'Space Grotesk', -apple-system, sans-serif;
  --font-body:'Inter', -apple-system, sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.wrap{max-width:1120px; margin:0 auto; padding:0 24px; position:relative; z-index:2;}
section{padding:88px 0;}

/* ---------- shared bits ---------- */
.section-tag{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-head);
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--orange); margin-bottom:18px; font-weight:600;
}
.section-tag::before{content:""; width:22px; height:2px; border-radius:2px; background:var(--orange);}
.section-tag.blue{color:var(--blue);}
.section-tag.blue::before{background:var(--blue);}
h1,h2,h3,h4{font-family:var(--font-head); font-weight:700; letter-spacing:-0.02em;}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:14px;
  border-radius:999px; font-weight:600; font-size:14.5px; font-family:var(--font-head);
  cursor:pointer; border:none; text-decoration:none; white-space:nowrap;
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn:active{transform:scale(.97);}
.btn-primary{
  background:linear-gradient(180deg,var(--gold-2),var(--gold));
  color:var(--gold-dark);
  padding:6px 6px 6px 26px;
  box-shadow:0 14px 30px -10px rgba(224,172,31,.55);
}
.btn-primary:hover{filter:brightness(1.06); box-shadow:0 18px 36px -8px rgba(224,172,31,.65);}
.btn-primary .arrow-circle{background:var(--gold-dark); color:#ffe9ab;}
.btn-secondary{
  background:rgba(255,255,255,.03);
  color:var(--text);
  border:1px solid #33333c;
  padding:6px 22px 6px 6px;
}
.btn-secondary:hover{background:var(--card-2); border-color:#44444f;}
.btn-secondary .arrow-circle{background:var(--blue); color:var(--blue-dark);}
.btn .arrow-circle{
  width:38px; height:38px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
}
.pill{
  display:inline-flex; align-items:center; gap:9px;
  font-size:12.5px; font-weight:500; background:var(--card-2);
  border:1px solid var(--border); padding:7px 15px 7px 12px; border-radius:20px; color:var(--text-2);
}
.pill .dot{width:7px; height:7px; border-radius:50%; flex-shrink:0;}
.dot-blue{background:var(--blue); box-shadow:0 0 9px 1px rgba(106,140,255,.65);}
.dot-orange{background:var(--orange); box-shadow:0 0 9px 1px rgba(255,154,77,.65);}
.dot-gray{background:var(--text-3);}
.pill-muted{background:transparent; border-color:var(--border-soft); color:var(--text-3); padding:7px 15px;}

/* ---------- hero background fx ---------- */
.hero{
  padding:110px 0 40px; position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse 900px 500px at 82% 8%, rgba(255,154,77,.14), transparent 60%),
    radial-gradient(ellipse 700px 500px at 8% 30%, rgba(106,140,255,.10), transparent 60%),
    linear-gradient(180deg,#0a0a12,#07070c 60%);
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(ellipse 100% 70% at 50% 0%, black 40%, transparent 90%);
  z-index:0;
}
.particles{position:absolute; inset:0; z-index:1; pointer-events:none;}
.particle{
  position:absolute; border-radius:50%;
  animation:float 7s ease-in-out infinite;
}
.particle.orange{background:var(--orange); box-shadow:0 0 10px 2px rgba(255,154,77,.7);}
.particle.blue{background:var(--blue); box-shadow:0 0 10px 2px rgba(106,140,255,.7);}
@keyframes float{
  0%,100%{transform:translateY(0); opacity:.5;}
  50%{transform:translateY(-16px); opacity:1;}
}

.hot-badge{
  position:relative; display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,#ff6b52,#df2418);
  color:#fff; font-family:var(--font-head); font-weight:700; font-size:13px; letter-spacing:.02em;
  padding:10px 20px 10px 28px; border-radius:6px 16px 16px 6px;
  transform:rotate(-3deg);
  box-shadow:0 14px 26px -8px rgba(223,36,24,.6);
  margin-bottom:30px;
}
.hot-badge::before{
  content:""; position:absolute; left:11px; top:50%; transform:translateY(-50%);
  width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.9);
}

.hero-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns:1.2fr 0.9fr;
  column-gap:48px;
  align-items:start;
  grid-template-areas:
    "badge  media"
    "h1     media"
    "lead   media"
    "tags   media"
    "cta    media"
    "ticker media";
}
.g-badge{grid-area:badge; justify-self:start;}
.g-h1{grid-area:h1;}
.g-lead{grid-area:lead;}
.g-tags{grid-area:tags;}
.g-cta{grid-area:cta;}
.g-ticker{grid-area:ticker;}
.g-media{grid-area:media; align-self:center; justify-self:end;}
.hero h1{font-size:58px; line-height:1.08; max-width:600px;}
.hero h1 .accent{
  background:linear-gradient(90deg,#ffd9a8,var(--orange));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p.lead{font-size:17px; color:var(--text-2); max-width:500px; margin:22px 0 28px;}
.tag-row{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:34px;}
.cta-row{display:flex; gap:14px; align-items:center; flex-wrap:wrap;}
.ticker{
  margin-top:56px; border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft);
  padding:18px 0; display:flex; gap:40px; overflow:hidden; white-space:nowrap;
}
.ticker span{font-size:14px; color:var(--text-2);}
.ticker span strong{color:var(--text); font-weight:600;}

.hero-media{
  position:relative; width:100%; max-width:380px; aspect-ratio:4/5; border-radius:24px; overflow:hidden;
  background:var(--card); border:1px solid var(--border-soft);
  box-shadow:0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.02) inset;
  display:flex; align-items:center; justify-content:center; text-align:center; padding:0;
}
.hero-media img, .hero-media video{width:100%; height:100%; object-fit:contain; object-position:center; display:block;}
.hero-media .ph-text{font-size:13px; color:var(--text-3); line-height:1.7;}
.media-caption{
  position:absolute; left:16px; right:16px; bottom:16px;
  display:flex; align-items:center; gap:8px;
  background:rgba(10,10,15,.55); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.08);
  padding:10px 14px; border-radius:12px; font-size:12.5px; color:var(--text-2);
}
.live-dot{width:7px; height:7px; border-radius:50%; background:var(--orange); box-shadow:0 0 8px 2px rgba(255,154,77,.7); flex-shrink:0;}

/* ---------- intro ---------- */
.intro h2{font-size:38px; max-width:540px; line-height:1.22;}
.intro h2 .blue-t{color:var(--blue);}
.intro p.lead{color:var(--text-2); max-width:480px; margin:16px 0 44px; font-size:15px;}
.cards{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.card{
  background:var(--card); border:1px solid var(--border-soft); border-radius:18px;
  padding:28px; position:relative; transition:transform .2s ease, border-color .2s ease;
}
.card:hover{transform:translateY(-4px); border-color:var(--border);}
.card .num{position:absolute; top:24px; right:26px; font-size:13px; color:var(--text-3); font-weight:600; font-family:var(--font-head);}
.card .badge{
  display:inline-flex; font-size:11px; padding:6px 13px; border-radius:20px; margin-bottom:18px;
  font-weight:700; letter-spacing:.03em; font-family:var(--font-head);
}
.card .badge.b1{background:#12182e; color:#8fb4ff;}
.card .badge.b2{background:#2a1810; color:#ffb98a;}
.card h3{font-size:19px; margin-bottom:10px;}
.card p{font-size:13.5px; color:var(--text-2);}

/* ---------- stats ---------- */
.stats-bar{
  border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft);
  display:grid; grid-template-columns:repeat(4,1fr);
  background:linear-gradient(180deg,transparent,rgba(255,255,255,.015));
}
.stats-bar .stat{padding:38px 26px; text-align:left; border-right:1px solid var(--border-soft);}
.stats-bar .stat:last-child{border-right:none;}
.stats-bar .stat .n{font-size:36px; font-weight:700; margin-bottom:6px; font-family:var(--font-head);}
.stats-bar .stat .n.orange{color:var(--orange);}
.stats-bar .stat .n.blue{color:var(--blue);}
.stats-bar .stat .l{font-size:13px; color:var(--text-2);}

/* ---------- includes ---------- */
.included h2{font-size:36px; max-width:540px;}
.inc-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:38px;}
.inc-item{
  background:var(--card); border:1px solid var(--border-soft); border-radius:16px;
  padding:24px; display:flex; gap:16px; align-items:flex-start;
  transition:border-color .2s ease;
}
.inc-item:hover{border-color:var(--border);}
.inc-icon{
  width:38px; height:38px; border-radius:11px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:16px;
}
.inc-icon.orange{background:linear-gradient(135deg,#2a1810,#3a2010); color:var(--orange);}
.inc-icon.blue{background:linear-gradient(135deg,#12182e,#182238); color:var(--blue);}
.inc-item h4{font-size:15.5px; margin-bottom:6px; font-family:var(--font-head);}
.inc-item p{font-size:13px; color:var(--text-2);}

/* ---------- pricing ---------- */
.pricing{background:linear-gradient(180deg,var(--bg-2),var(--bg));}
.price-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:56px; align-items:start;}
.price-title{font-size:36px; line-height:1.18; margin-bottom:24px;}
.price-title .accent{color:var(--orange);}
.price-num{font-size:58px; font-weight:700; color:var(--orange); display:flex; align-items:baseline; gap:14px; font-family:var(--font-head);}
.price-num .old{font-size:20px; color:var(--text-3); text-decoration:line-through; font-weight:600;}
.price-off{
  display:inline-flex; font-size:12px; background:#2a1810; color:var(--orange);
  padding:6px 13px; border-radius:8px; margin-top:16px; font-weight:700; font-family:var(--font-head);
}
.price-note{font-size:13px; color:var(--text-2); margin:20px 0 28px;}
.countdown{display:flex; gap:10px; margin-top:28px;}
.countdown .box{
  flex:1; background:var(--card); border:1px solid var(--border-soft); border-radius:12px;
  padding:16px 0; text-align:center;
}
.countdown .box .v{font-size:24px; font-weight:700; font-family:var(--font-head);}
.countdown .box .u{font-size:10px; color:var(--text-3); text-transform:uppercase; letter-spacing:.06em;}

.includes-list{
  background:var(--card); border:1px solid var(--border-soft); border-radius:20px; padding:30px;
  box-shadow:0 24px 50px -24px rgba(0,0,0,.6);
}
.includes-list .h{font-size:12px; color:var(--text-3); text-transform:uppercase; letter-spacing:.07em; margin-bottom:20px; display:flex; justify-content:space-between; font-family:var(--font-head); font-weight:700;}
.includes-list ul{list-style:none;}
.includes-list li{
  display:flex; align-items:center; gap:12px; padding:13px 0; border-bottom:1px solid var(--border-soft);
  font-size:14px;
}
.includes-list li:last-child{border-bottom:none;}
.includes-list li .tick{
  width:22px; height:22px; border-radius:50%; background:#1c2e22; color:var(--green);
  display:flex; align-items:center; justify-content:center; font-size:12px; flex-shrink:0;
}
.includes-list li .tag{margin-left:auto; font-size:11px; color:var(--text-3); font-family:var(--font-head);}
.price-cta{width:100%; margin-top:26px; justify-content:center; padding:16px 6px; font-size:15px;}

/* ---------- about ---------- */
.about-grid{display:grid; grid-template-columns:260px 1fr; gap:56px; align-items:center;}
.avatar-ring{
  width:260px; height:260px; border-radius:50%; border:4px solid var(--orange);
  background:var(--card-2); display:flex; align-items:center; justify-content:center;
  font-size:12.5px; color:var(--text-3); text-align:center; line-height:1.6;
  box-shadow:0 0 0 10px rgba(255,154,77,.14), 0 0 0 24px rgba(255,154,77,.07), 0 0 0 44px rgba(255,154,77,.03);
  overflow:hidden;
}
.avatar-ring img{width:100%; height:100%; object-fit:cover; object-position:center 12%; display:block;}
.about-grid h2{font-size:46px; line-height:1.1; margin-bottom:22px;}
.about-grid h2 .accent{color:var(--orange);}
.about-grid p{color:var(--text-2); font-size:15.5px; margin-bottom:14px; max-width:520px;}
.about-grid p strong{color:var(--orange);}

/* ---------- faq ---------- */
.faq-item{border-bottom:1px solid var(--border-soft);}
.faq-q{
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 0; cursor:pointer; font-size:16.5px; font-weight:600; font-family:var(--font-head);
}
.faq-q:hover{color:var(--orange);}
.faq-q .icon{
  width:30px; height:30px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:14px;
  transition:transform .2s ease, background .2s ease; color:var(--text);
}
.faq-item.open .faq-q .icon{transform:rotate(45deg); background:var(--orange); border-color:var(--orange); color:var(--orange-dark);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .28s ease;}
.faq-a p{color:var(--text-2); font-size:14.5px; padding-bottom:24px; max-width:600px;}

/* ---------- final cta ---------- */
.final-cta{
  text-align:center; padding:100px 24px; position:relative; overflow:hidden;
  background:radial-gradient(ellipse 700px 400px at 50% 0%, rgba(255,154,77,.12), transparent 70%);
}
.final-cta h2{font-size:34px; max-width:560px; margin:0 auto 26px;}
.final-cta .accent{color:var(--orange);}
.final-cta .btn{margin:0 auto;}

/* ---------- whatsapp ---------- */
.wa-btn{
  position:fixed; bottom:24px; left:24px; width:54px; height:54px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.45); z-index:50; cursor:pointer;
}
.wa-btn::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  box-shadow:0 0 0 0 rgba(37,211,102,.6);
  animation:pulse 2.2s ease-out infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.55);}
  100%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
}
.wa-btn svg{width:27px; height:27px; position:relative;}

@media (max-width:760px){
  .hero h1{font-size:40px;}
  .cards, .inc-grid{grid-template-columns:1fr;}
  .stats-bar{grid-template-columns:repeat(2,1fr);}
  .stats-bar .stat:nth-child(2){border-right:none;}
  .price-grid, .about-grid{grid-template-columns:1fr; gap:34px;}
  .avatar-ring{margin:0 auto; width:200px; height:200px;}
  .about-grid h2{font-size:34px;}
  .hero-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "badge"
      "h1"
      "lead"
      "tags"
      "cta"
      "media"
      "ticker";
  }
  .g-media{justify-self:start; margin:24px 0 8px;}
}
