
:root{
  --bg:#0B0E14;
  --card:#121826;
  --card2:#0F1624;
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);
  --text:#E8ECF5;
  --muted:rgba(232,236,245,.70);
  --muted2:rgba(232,236,245,.55);
  --p:#7B5CFF;
  --b:#4DA3FF;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 22px;
  --glow: 0 0 0 1px rgba(123,92,255,.18), 0 0 28px rgba(77,163,255,.18);
  --glow2: 0 0 0 1px rgba(77,163,255,.16), 0 0 34px rgba(123,92,255,.14);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  background:
    radial-gradient(1200px 700px at 18% 10%, rgba(123,92,255,.18), transparent 55%),
    radial-gradient(900px 600px at 86% 16%, rgba(77,163,255,.14), transparent 52%),
    radial-gradient(800px 600px at 70% 86%, rgba(123,92,255,.10), transparent 60%),
    var(--bg);
  color:var(--text);
}
a{color:inherit}
code{font-family:var(--mono); font-size:.95em; color:rgba(232,236,245,.9)}
.container{max-width:1200px; margin:0 auto; padding:26px 18px 64px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid var(--stroke);
  backdrop-filter: blur(10px);
  background: rgba(11,14,20,.70);
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand__logo{width:34px; height:34px; border-radius:10px; box-shadow: var(--glow)}
.brand__name{
  font-weight:800; letter-spacing:.2px;
  background: linear-gradient(90deg, var(--p), var(--b));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}

/* Buttons */
.btn{
  border:1px solid var(--stroke);
  background: rgba(18,24,38,.55);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
}
.btn:hover{transform: translateY(-1px); border-color: var(--stroke2); box-shadow: var(--glow)}
.btn:active{transform: translateY(0)}
.btn--ghost{background: rgba(18,24,38,.35)}
.btn--primary{
  border-color: rgba(123,92,255,.35);
  background: linear-gradient(180deg, rgba(123,92,255,.20), rgba(77,163,255,.12));
  box-shadow: var(--glow2);
}
.btn--full{width:100%}
.btn--xl{padding:14px 20px; font-size:15px; border-radius:18px}

/* Chip + Cart */
.chip{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.40);
  cursor:pointer;
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}
.chip:hover{border-color: rgba(123,92,255,.35); box-shadow: var(--glow); transform: translateY(-1px)}
.chip__label{font-size:12px; color:rgba(232,236,245,.75)}
.chip__value{font-family:var(--mono); font-size:13px; color:rgba(232,236,245,.92)}
.chip__hint{font-size:12px; color:rgba(232,236,245,.55)}

.cartBtn{
  position:relative;
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.40);
  cursor:pointer;
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}
.cartBtn:hover{border-color: rgba(77,163,255,.35); box-shadow: var(--glow2); transform: translateY(-1px)}
.cartBtn__count{
  min-width:22px; height:22px; display:grid; place-items:center;
  border-radius:999px;
  font-size:12px; font-weight:900;
  background: linear-gradient(90deg, rgba(123,92,255,.85), rgba(77,163,255,.85));
  box-shadow: 0 0 24px rgba(123,92,255,.18);
}

/* Hero */
.hero--atlas{
  padding:40px 0 20px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap:46px;
}
@media(max-width:980px){ .hero--atlas{grid-template-columns:1fr; gap:26px; padding-top:26px} }
.h1{font-size:56px; line-height:1.03; margin:0 0 16px}
.grad{background:linear-gradient(90deg,var(--p),var(--b)); -webkit-background-clip:text; background-clip:text; color:transparent}
.lead{max-width:560px; font-size:16px; color:var(--muted); line-height:1.65; margin:0}
.ctaRow{display:flex; gap:14px; margin:22px 0; flex-wrap:wrap}
.statsRow{display:flex; gap:18px; flex-wrap:wrap; margin:12px 0 0}
.stat{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.35);
  border-radius:16px;
  padding:12px 16px;
  min-width:120px;
  text-align:center;
}
.stat__value{font-weight:900; font-size:18px}
.stat__label{font-size:12px; color:var(--muted)}

.featureList{display:flex; gap:14px; align-items:flex-start; margin-top:16px}
.featureList__logo{width:56px; height:56px; border-radius:14px; box-shadow: var(--glow)}
.featureList ul{list-style:none; margin:0; padding:0}
.featureList li{margin:8px 0; color:rgba(232,236,245,.88); font-size:14px}
.featureList strong{color:rgba(232,236,245,.98)}

.hero__right{position:relative; display:flex; align-items:center; justify-content:center; min-height:380px}
.ring{
  width:320px; height:320px; border-radius:50%;
  background: linear-gradient(180deg, rgba(123,92,255,.55), rgba(77,163,255,.55));
  padding:2px;
  box-shadow: 0 0 70px rgba(77,163,255,.22);
}
.ring__inner{
  width:100%; height:100%; border-radius:50%;
  background: rgba(11,14,20,.92);
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.08);
}
.ring__inner img{width:120px; height:120px}
.tag{
  position:absolute;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(18,24,38,.60);
  border-radius:14px;
  padding:10px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.40);
}
.tag strong{display:block; font-size:13px}
.tag span{display:block; font-size:12px; color:var(--muted); margin-top:2px}
.tag--top{top:16px; left:18px}
.tag--right{top:120px; right:-18px}
.tag--bottom{bottom:26px; left:46px}
@media(max-width:980px){
  .tag--right{right:8px}
}

/* Sections */
.section{padding:18px 0}
.section__hdr h2, .section__hdr h1{margin:0}
.section__hdr p{margin:8px 0 0; color:var(--muted)}
.grid3{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:14px}
@media(max-width:980px){.grid3{grid-template-columns:1fr}}
.grid2{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:14px}
@media(max-width:980px){.grid2{grid-template-columns:1fr}}

.infoCard{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.35);
  border-radius: var(--radius2);
  padding:14px;
}
.infoCard h3{margin:0 0 8px}
.infoCard p{margin:0; color:var(--muted); line-height:1.5; font-size:14px}

/* Kits */
.filters{display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap; margin:16px 0}
.search{flex:1; min-width:240px}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.30);
  color:var(--text);
  outline:none;
}
.input:focus{border-color: rgba(123,92,255,.35); box-shadow: var(--glow)}
.label{display:block; margin:8px 0 6px; color:var(--muted); font-size:12px}
.pills{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.30);
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}
.pill:hover{border-color: rgba(77,163,255,.35); box-shadow: var(--glow2); transform: translateY(-1px)}
.pill--active{
  border-color: rgba(123,92,255,.40);
  background: linear-gradient(180deg, rgba(123,92,255,.18), rgba(77,163,255,.12));
  box-shadow: var(--glow);
}
.grid{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px}
@media(max-width:980px){.grid{grid-template-columns:1fr}}
.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.35);
  border-radius: var(--radius2);
  padding:14px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.card:hover{transform: translateY(-2px); border-color: rgba(123,92,255,.25); box-shadow: var(--shadow)}
.card__top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.card__name{font-weight:900; font-size:16px}
.badge{
  font-size:12px; font-weight:900;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(11,14,20,.35);
  color: rgba(232,236,245,.90);
}
.card__desc{margin:10px 0 12px; color:var(--muted); line-height:1.5; font-size:14px; min-height:44px}
.perks{display:flex; flex-wrap:wrap; gap:8px; margin:0 0 12px; padding:0; list-style:none}
.perks li{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(11,14,20,.28);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  color: rgba(232,236,245,.85);
}
.card__footer{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}
.price{font-family:var(--mono); font-weight:900; font-size:15px}
.qty{
  display:flex; align-items:center; gap:6px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(11,14,20,.25);
  border-radius:14px;
  padding:6px 8px;
}
.qty button{
  width:28px; height:28px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.35);
  color:var(--text);
  cursor:pointer;
}
.qty input{
  width:36px;
  text-align:center;
  background: transparent;
  border: none;
  color: var(--text);
  font-weight:900;
  outline:none;
  font-family: var(--mono);
}

/* Drawer */
.drawer{position:fixed; inset:0; pointer-events:none}
.drawer[aria-hidden="false"]{pointer-events:auto}
.drawer__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  opacity:0;
  transition: opacity .16s ease;
}
.drawer[aria-hidden="false"] .drawer__overlay{opacity:1}
.drawer__panel{
  position:absolute; right:0; top:0; bottom:0;
  width:min(440px, 92vw);
  background: rgba(11,14,20,.92);
  border-left:1px solid rgba(255,255,255,.10);
  transform: translateX(110%);
  transition: transform .18s ease;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display:flex; flex-direction:column;
}
.drawer[aria-hidden="false"] .drawer__panel{transform: translateX(0)}
.drawer__hdr{display:flex; align-items:center; justify-content:space-between; padding:14px 14px; border-bottom:1px solid rgba(255,255,255,.08)}
.drawer__title{font-weight:900}
.iconBtn{
  width:40px;height:40px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.35);
  color: var(--text);
  cursor:pointer;
}
.drawer__body{padding:14px; overflow:auto; display:flex; flex-direction:column; gap:14px}
.cartItem{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.25);
  border-radius: 18px;
  padding:12px;
}
.cartItem__name{font-weight:900}
.cartItem__meta{color:var(--muted); font-size:13px; margin-top:6px}
.cartItem__right{display:flex; flex-direction:column; gap:8px; align-items:flex-end}
.cartItem__remove{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(11,14,20,.25);
  color:var(--text);
  border-radius: 12px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:900;
}
.cartItem__remove:hover{border-color: rgba(255,255,255,.20); box-shadow: var(--glow)}
.drawer__summary{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,24,38,.25);
  border-radius: 18px;
  padding:12px;
}
.row{display:flex; justify-content:space-between; align-items:center; margin:10px 0}
.row--total{border-top:1px solid rgba(255,255,255,.08); padding-top:10px; margin-top:12px}
.checkout{display:flex; flex-direction:column; gap:10px; margin-top:12px}
.tiny{color:var(--muted2); font-size:12px; line-height:1.45; margin-top:10px}
