:root{
  --bg:#0b0c10;
  --bg2:#11131a;
  --card:#0f1117;
  --text:#e9ecf1;
  --muted:#a8b0bf;
  --line:rgba(255,255,255,.10);
  --accent:#ff3b3b;
  --accent2:#c60b0b;
  --good:#45d483;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:22px;
  --radius2:16px;
  --max:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(900px 500px at 25% -10%, rgba(255,59,59,.20), transparent 60%),
              radial-gradient(900px 600px at 85% 10%, rgba(198,11,11,.22), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,12,16,.70);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:200px;
}
.brand .mark{
  width:40px;
  height:40px;
  border-radius:12px;
  padding:8px;
  background: linear-gradient(145deg, rgba(255,59,59,.20), rgba(255,59,59,.06));
  border:1px solid rgba(255,59,59,.25);
  box-shadow: 0 10px 30px rgba(255,59,59,.10);
}
.brand .name{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .name strong{font-size:15px; letter-spacing:.2px}
.brand .name span{font-size:12px; color:var(--muted)}

.links{
  display:flex;
  align-items:center;
  gap:18px;
}
.links a{
  font-size:13px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  appearance:none;
  border:0;
  cursor:pointer;
  font-weight:700;
  font-size:13px;
  border-radius:14px;
  padding:11px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  user-select:none;
  white-space:nowrap;
}

.btn:active{transform:translateY(1px)}
.btn.primary{
  background: linear-gradient(145deg, rgba(255,59,59,.95), rgba(198,11,11,.95));
  color:#0b0c10;
  box-shadow: 0 14px 45px rgba(255,59,59,.18);
}
.btn.primary:hover{box-shadow: 0 18px 60px rgba(255,59,59,.26)}

.btn.ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid rgba(255,255,255,.10);
}
.btn.ghost:hover{background:rgba(255,255,255,.09)}

.btn.outline{
  background: transparent;
  color:var(--text);
  border:1px solid rgba(255,59,59,.32);
}
.btn.outline:hover{background:rgba(255,59,59,.10)}

.hamburger{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  display:none;
  align-items:center;
  justify-content:center;
}

.hamburger svg{opacity:.92}

.mobile{
  display:none;
  padding:10px 0 16px;
}
.mobile a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
}
.mobile a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.hero{
  padding:58px 0 30px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:26px;
  align-items:stretch;
}

.heroCard{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.heroCard .inner{
  padding:34px 30px 30px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,59,59,.25);
  background: rgba(255,59,59,.10);
  color:rgba(255,255,255,.92);
  font-size:12px;
  font-weight:700;
}

.h1{
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.5px;
  margin:16px 0 14px;
}

.sub{
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
  margin:0 0 18px;
}

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 0;
}

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.pill{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.90);
  padding:9px 11px;
  border-radius:999px;
  font-size:12px;
}

.side{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(15,17,23,.86), rgba(15,17,23,.55));
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.sideTop{
  padding:18px 18px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.sideTop .tag{
  font-size:12px;
  font-weight:800;
  color:rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  gap:10px;
}
.dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(69,212,131,.15);
}

.statGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  padding:16px 18px 18px;
}
.stat{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding:14px 14px;
}
.stat strong{
  display:block;
  font-size:16px;
  letter-spacing:-.2px;
}
.stat span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
  line-height:1.45;
}

.sideMid{
  padding:0 18px 18px;
}
.panel{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding:16px 16px;
}
.panel h3{
  margin:0 0 8px;
  font-size:14px;
  letter-spacing:-.2px;
}
.panel p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}
.panel .mini{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mini a{
  font-size:12px;
  color:rgba(255,255,255,.92);
  border:1px solid rgba(255,59,59,.28);
  background: rgba(255,59,59,.08);
  padding:9px 10px;
  border-radius:999px;
}

section{
  padding:44px 0;
}

.sectionHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:18px;
}
.sectionHead h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.3px;
}
.sectionHead p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  max-width:540px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:18px 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

.card h3{margin:0 0 8px; font-size:15px}
.card p{margin:0; color:var(--muted); font-size:13px; line-height:1.7}

.icon{
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,59,59,.25);
  background: rgba(255,59,59,.10);
  margin-bottom:12px;
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.priceCard{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius);
  padding:18px 18px;
  position:relative;
  overflow:hidden;
}
.priceCard.featured{
  border-color: rgba(255,59,59,.35);
  box-shadow: 0 18px 65px rgba(255,59,59,.12);
}
.badge{
  position:absolute;
  right:14px;
  top:14px;
  font-size:11px;
  font-weight:800;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,59,59,.30);
  background: rgba(255,59,59,.12);
}
.priceCard h3{margin:0 0 8px; font-size:16px}
.price{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin:14px 0 12px;
}
.price strong{font-size:30px; letter-spacing:-.5px}
.price span{color:var(--muted); font-size:12px; padding-bottom:6px}
.ul{
  list-style:none;
  padding:0;
  margin:0 0 14px;
}
.ul li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:8px 0;
  color:rgba(255,255,255,.90);
  font-size:13px;
  line-height:1.5;
}
.check{
  width:18px;
  height:18px;
  border-radius:6px;
  background: rgba(69,212,131,.15);
  border:1px solid rgba(69,212,131,.35);
  flex:0 0 auto;
  margin-top:1px;
  display:grid;
  place-items:center;
}
.check svg{opacity:.92}

.team{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.person{
  display:flex;
  align-items:center;
  gap:14px;
}
.avatar{
  width:58px;
  height:58px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background: rgba(255,255,255,.06);
  flex:0 0 auto;
}
.person .meta{min-width:0}
.person .meta strong{display:block; font-size:14px; letter-spacing:-.2px}
.person .meta span{display:block; font-size:12px; color:var(--muted); margin-top:3px}
.rolePill{
  margin-top:10px;
  display:inline-flex;
  font-size:11px;
  font-weight:800;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,59,59,.26);
  background: rgba(255,59,59,.09);
  color:rgba(255,255,255,.92);
}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:start;
}

.faq details{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  padding:14px 14px;
  margin-bottom:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  font-size:13px;
  outline:none;
}
.faq p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.callout{
  border:1px solid rgba(255,59,59,.28);
  background: linear-gradient(180deg, rgba(255,59,59,.12), rgba(255,255,255,.03));
  border-radius: calc(var(--radius) + 8px);
  padding:22px 20px;
  box-shadow: 0 20px 80px rgba(255,59,59,.10);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.callout h3{
  margin:0 0 6px;
  font-size:18px;
  letter-spacing:-.2px;
}
.callout p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:24px 0 34px;
  color:var(--muted);
  font-size:13px;
}
.footerGrid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer a{color:rgba(255,255,255,.90)}

.pageHero{
  padding:44px 0 16px;
}
.pageHero h1{
  margin:0;
  font-size:34px;
  letter-spacing:-.4px;
}
.pageHero p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
  max-width:800px;
}
.doc{
  padding:18px 0 50px;
}
.doc .paper{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:22px 20px;
}
.doc h2{margin:0 0 10px; font-size:18px}
.doc p{margin:0 0 12px; color:var(--muted); line-height:1.8; font-size:13px}
.doc ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.8; font-size:13px}
.doc li{margin:6px 0}

@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr; }
  .split{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .team{grid-template-columns: 1fr}
  .h1{font-size:38px}
}

@media (max-width: 860px){
  .links{display:none}
  .hamburger{display:flex}
  .mobile.show{display:block}
}

@media (max-width: 420px){
  .h1{font-size:34px}
  .brand{min-width:auto}
}

.shopGrid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.shopItem{border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.05);border-radius:var(--radius);overflow:hidden;box-shadow:0 14px 40px rgba(0,0,0,.25)}
.shopItem .img{aspect-ratio:1/1;background:rgba(0,0,0,.20)}
.shopItem .img img{width:100%;height:100%;object-fit:cover}
.shopItem .pad{padding:14px 14px}
.shopItem h3{margin:0 0 6px;font-size:14px;letter-spacing:-.2px}
.shopItem .row{display:flex;justify-content:space-between;align-items:center;gap:10px}
.shopItem .muted{color:var(--muted);font-size:12px}
.shopItem .priceTag{font-weight:900;font-size:13px;border:1px solid rgba(255,59,59,.28);background:rgba(255,59,59,.10);padding:8px 10px;border-radius:999px}
@media (max-width: 980px){.shopGrid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 420px){.shopGrid{grid-template-columns:1fr}}

.avatar img{width:100%;height:100%;object-fit:cover;object-position:center}

.person{align-items:flex-start}

.person .meta{margin-left:0}
