:root{
  --bg0:#070c16;
  --bg1:#0b1630;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.55);
  --gold:#f6c21c;
  --gold2:#ffd65a;
  --green:#3cc76a;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --shadow2: 0 12px 28px rgba(0,0,0,.35);
  --radius: 22px;
}

*{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:
    radial-gradient(900px 500px at 20% 10%, rgba(246,194,28,.18), transparent 55%),
    radial-gradient(800px 520px at 90% 20%, rgba(60,199,106,.14), transparent 55%),
    radial-gradient(900px 600px at 55% 120%, rgba(93,134,255,.12), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.wrap{
  max-width: 1120px;
  margin:0 auto;
  padding: 32px 22px 70px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand-badge{
  width:32px; height:32px; border-radius:10px;
  background: linear-gradient(135deg, rgba(246,194,28,.25), rgba(246,194,28,.05));
  border:1px solid rgba(246,194,28,.28);
  display:grid; place-items:center;
  box-shadow: 0 10px 24px rgba(246,194,28,.12);
}
.brand small{display:block; color:var(--muted2); font-weight:600; margin-top:2px}

.navlinks{
  display:flex; gap:16px; align-items:center; flex-wrap:wrap;
  color: var(--muted);
  font-weight:600;
  font-size: 14px;
}
.navlinks a{
  padding: 10px 10px;
  border-radius: 12px;
}
.navlinks a:hover{
  background: rgba(255,255,255,.05);
}

.hero{
  margin-top: 30px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.kdot{
  width:10px; height:10px; border-radius:999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(60,199,106,.14);
}

.h1{
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.02;
  margin: 16px 0 14px;
  letter-spacing: -1px;
}
.sub{
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
  margin: 0 0 22px;
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow2);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btnPrimary{
  border-color: rgba(246,194,28,.28);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a1224;
  box-shadow: 0 18px 40px rgba(246,194,28,.20);
}
.btnGhost{
  background: rgba(255,255,255,.03);
}

.miniMeta{
  margin-top: 16px;
  color: var(--muted2);
  font-size: 13px;
}

.rightCard{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow:hidden;
}
.rightCard:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 260px at 20% 20%, rgba(246,194,28,.18), transparent 60%);
  pointer-events:none;
}
.iconWrap{
  display:grid;
  place-items:center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(10,18,36,.45);
  border: 1px solid rgba(255,255,255,.10);
}
.iconWrap img{
  width: 280px;
  max-width: 100%;
  height:auto;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.45));
}

.grid3{
  margin-top: 34px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  padding: 22px;
  box-shadow: var(--shadow2);
}
.card h3{
  margin:0 0 10px;
  letter-spacing: -.2px;
}
.card p{margin:0; color: var(--muted); line-height:1.6}

.split{
  margin-top: 20px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}
.list li{margin: 6px 0}

.price{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
}
.price .tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246,194,28,.14);
  border: 1px solid rgba(246,194,28,.26);
  color: rgba(255,255,255,.90);
  font-weight: 700;
  font-size: 13px;
}

.footer{
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-size: 13px;
}
.footer a{color: var(--muted)}
.footer a:hover{color: var(--text)}
hr.sep{
  border: none;
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 20px 0;
}

.pageTitle{
  margin-top: 26px;
  font-size: 34px;
  letter-spacing:-.6px;
}
.pageLead{
  color: var(--muted);
  line-height: 1.65;
  max-width: 70ch;
}

@media (max-width: 920px){
  .hero{grid-template-columns: 1fr; }
  .grid3{grid-template-columns: 1fr; }
  .split{grid-template-columns: 1fr;}
}
