:root{
  --bg:#0b0f17;
  --card:#0f1623;
  --card2:#0c1320;
  --line:rgba(255,255,255,.08);
  --text:#e8eefc;
  --muted:rgba(232,238,252,.72);

  --blue:#1a46ff;
  --blue2:#0d2fe6;

  --orange:#ff9c2a;
  --orange2:#ff7f11;

  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: Arial, Helvetica, sans-serif; }

body{
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(26,70,255,.35), transparent 60%),
    radial-gradient(800px 520px at 100% 10%, rgba(255,156,42,.18), transparent 62%),
    radial-gradient(900px 620px at 50% 120%, rgba(26,70,255,.15), transparent 55%),
    var(--bg);
}

.wrap{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

/* ================= HEADER ================= */
.topbar{
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.25));
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0 10px;
}

.logo{ height:44px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.55)); }

.top-links{
  display:flex;
  align-items:center;
  gap:10px;
}

.top-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:12px;
  padding:9px 12px;
  border-radius:10px;
  border:1px solid transparent;
  transition:.18s ease;
}

.top-links a:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.pill{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.pill--primary{
  background: linear-gradient(180deg, rgba(26,70,255,.9), rgba(13,47,230,.9));
  border-color: rgba(26,70,255,.55);
  box-shadow: 0 14px 40px rgba(26,70,255,.22);
  color:#fff !important;
}

/* NAVBAR */
.navbar{
  display:flex;
  align-items:center;
  gap:16px;
  padding:10px 0 12px;
  border-top:1px solid var(--line);
}

.nav-item{
  color:rgba(232,238,252,.70);
  text-decoration:none;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
  padding:6px 8px;
  border-radius:10px;
  transition:.18s ease;
}

.nav-item:hover{
  color:#fff;
  background: rgba(255,255,255,.04);
}

.nav-item--active{
  color:#fff;
  font-weight:900;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.navbar__right{
  margin-left:auto;
  display:flex;
  align-items:center;
}

.mini-logo{
  height:28px;
  opacity:.9;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.45));
}

/* ================= SUBBAR ================= */
.subbar{
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.subbar__inner{
  padding:12px 0;
}

.crumbs{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.crumbs__label{
  font-size:12px;
  letter-spacing:.6px;
  color:rgba(232,238,252,.75);
  text-transform:uppercase;
  font-weight:800;
}

.search{
  display:flex;
  align-items:center;
  gap:8px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:6px 8px;
}

.search input{
  width:220px;
  background: transparent;
  border:0;
  outline:none;
  color:#fff;
  font-size:12px;
}

.search input::placeholder{ color:rgba(232,238,252,.55); }

.search button{
  border:0;
  background: rgba(255,255,255,.06);
  color:#fff;
  padding:7px 10px;
  border-radius:10px;
  cursor:pointer;
}

/* ================= PAGE TITLE ================= */
.page{ padding:22px 0 44px; }

.title h1{
  margin:0 0 10px;
  font-size:26px;
  line-height:1.25;
  font-weight:900;
  letter-spacing:.2px;
  text-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  font-size:12px;
  color:rgba(232,238,252,.65);
  margin-bottom:18px;
}

.meta a{ color:#9db6ff; text-decoration:none; }
.meta a:hover{ text-decoration:underline; }

.dot{ opacity:.5; }
.tag{
  margin-left:6px;
  color:#ff5d5d;
  font-weight:900;
  letter-spacing:.3px;
}

/* ================= CTA ROW ================= */
.cta-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin:14px 0 20px;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:1000;
  letter-spacing:1px;
  border-radius:14px;
  padding:18px 12px;
  font-size:16px;
  border:1px solid rgba(26,70,255,.35);
  transition:.18s ease;
  position:relative;
  overflow:hidden;
}

.cta--blue{
  background: linear-gradient(180deg, rgba(26,70,255,.95), rgba(13,47,230,.92));
  color:#fff;
  box-shadow: 0 20px 50px rgba(26,70,255,.22);
}

.cta--blue:hover{
  transform: translateY(-1px);
  box-shadow: 0 26px 65px rgba(26,70,255,.28);
}

.cta--orange{
  background: linear-gradient(180deg, rgba(255,156,42,.98), rgba(255,127,17,.95));
  border-color: rgba(255,156,42,.35);
  color:#141414;
  box-shadow: 0 22px 55px rgba(255,156,42,.18);
}

.cta--orange:hover{
  transform: translateY(-1px);
  box-shadow: 0 28px 70px rgba(255,156,42,.22);
}

/* ================= PRODUCT ================= */
.product{
  display:grid;
  grid-template-columns: 1fr 340px;
  gap:18px;
  align-items:start;
  margin-bottom:26px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow2);
}

.card--hero{
  position:relative;
  overflow:hidden;
}

.card--hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(26,70,255,.25), transparent 60%),
    radial-gradient(600px 260px at 90% 10%, rgba(255,156,42,.18), transparent 60%);
  pointer-events:none;
}

.card__media{
  position:relative;
  z-index:1;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}

.card__media img{
  width:100%;
  display:block;
  transform: scale(1.01);
}

.card__actions{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:14px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.6px;
  font-size:12px;
  padding:11px 18px;
  border-radius:12px;
  border:1px solid transparent;
  transition:.18s ease;
}

.btn--orange{
  background: linear-gradient(180deg, rgba(255,156,42,.98), rgba(255,127,17,.95));
  color:#111;
  border-color: rgba(255,156,42,.35);
  box-shadow: 0 18px 45px rgba(255,156,42,.14);
}

.btn--orange:hover{ transform: translateY(-1px); }

.btn--ghost{
  background: rgba(255,255,255,.04);
  color:#fff;
  border-color: rgba(255,255,255,.12);
}

.btn--ghost:hover{
  background: rgba(255,255,255,.07);
}

.btn--blue{
  background: rgba(26,70,255,.14);
  border-color: rgba(26,70,255,.35);
  color:#fff;
}

.btn--blue:hover{
  background: rgba(26,70,255,.22);
}

.btn-block{ width:100%; }
.mt8{ margin-top:8px; }

/* Side card */
.sidecard{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow);
}

.sidecard__top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  margin-bottom:12px;
}

.license__title{
  font-weight:900;
  font-size:13px;
  color:#fff;
}

.license__sub{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:rgba(232,238,252,.68);
}

.price{
  text-align:right;
  line-height:1;
}

.currency{
  font-size:12px;
  opacity:.8;
  vertical-align:top;
}

.amount{
  font-size:34px;
  font-weight:1000;
}

.checklist{
  list-style:none;
  padding:0;
  margin:10px 0 10px;
  color:rgba(232,238,252,.82);
  font-size:12px;
}

.checklist li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
  border-top:1px solid rgba(255,255,255,.06);
}

.checklist li:first-child{ border-top:0; }

.tick{
  width:20px; height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(26,70,255,.18);
  border:1px solid rgba(26,70,255,.25);
  color:#bcd0ff;
  font-weight:900;
  font-size:12px;
}

.divider{
  height:1px;
  background: rgba(255,255,255,.08);
  margin:12px 0;
}

.fineprint{
  margin:12px 0 0;
  font-size:11px;
  color:rgba(232,238,252,.55);
  text-align:center;
}

/* ================= FAQ ================= */
.faq{ margin:26px 0 30px; }

.faq h2{
  text-align:center;
  margin:0 0 18px;
  font-size:20px;
  font-weight:1000;
  letter-spacing:.6px;
}

.faq-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.faq-card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-left:4px solid rgba(255,156,42,.95);
  border-radius:18px;
  padding:16px 16px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}

.faq-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -50px auto;
  width:180px; height:180px;
  background: radial-gradient(circle, rgba(26,70,255,.18), transparent 60%);
  transform: rotate(15deg);
}

.faq-card__title{
  font-weight:1000;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
  margin-bottom:8px;
  position:relative;
  z-index:1;
}

.faq-card p{
  margin:0;
  font-size:12px;
  line-height:1.55;
  color:rgba(232,238,252,.72);
  position:relative;
  z-index:1;
}

.faq-card--wide{
  grid-column: 1 / -1;
  max-width: 680px;
  margin: 0 auto;
  text-align:center;
}

/* ================= CONTENT ================= */
.content{
  text-align:center;
  padding:18px 0 0;
}

.content h2{
  margin:0 0 12px;
  font-size:22px;
  font-weight:1000;
}

.content p{
  margin:0 auto 14px;
  max-width: 980px;
  color:rgba(232,238,252,.72);
  line-height:1.9;
  font-size:13px;
}

.center-cta{
  margin-top:16px;
  display:flex;
  justify-content:center;
}

/* ================= FOOTER ================= */
.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.25);
  padding:16px 0;
}

.footer__inner{
  text-align:center;
  color:rgba(232,238,252,.55);
  font-size:12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 920px){
  .product{ grid-template-columns: 1fr; }
  .cta-row{ grid-template-columns: 1fr; }
  .search input{ width:170px; }
}

@media (max-width: 720px){
  .navbar{ flex-wrap:wrap; }
  .navbar__right{ width:100%; justify-content:flex-end; }
  .faq-grid{ grid-template-columns: 1fr; }
  .faq-card--wide{ max-width:none; }
}
