:root{
  --bg0:#070A12;
  --bg1:#0B1730;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.74);
  --line:rgba(234,240,255,.14);
  --blue:#2E7BFF;
  --green:#53E08B;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(46,123,255,.35), transparent 60%),
    radial-gradient(700px 380px at 85% 20%, rgba(83,224,139,.22), transparent 55%),
    radial-gradient(900px 520px at 70% 92%, rgba(46,123,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  line-height:1.5;
}

a{color:inherit}
img{max-width:100%; display:block}

.container{width:min(1120px, 92vw); margin:0 auto}
.row{display:flex; gap:22px; flex-wrap:wrap}
.stack{display:grid; gap:14px}
.muted{color:var(--muted)}
.small{font-size:.92rem}
.tiny{font-size:.84rem}

header.site{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,10,18,.92), rgba(7,10,18,.62));
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand img{width:40px; height:40px; object-fit:contain}
.brand .name{font-weight:800; letter-spacing:.2px}
.pills{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.pill{
  text-decoration:none;
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
}
.pill:hover{background:rgba(255,255,255,.06)}
.pill.primary{
  border-color: rgba(46,123,255,.35);
  background: linear-gradient(180deg, rgba(46,123,255,.18), rgba(46,123,255,.06));
}

.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(7,10,18,.92), rgba(7,10,18,.70) 55%, rgba(7,10,18,.90)),
    url("../images/banner.png");
  background-size: cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}
.hero .content{
  position:relative;
  padding:54px 0 28px;
}
.kicker{
  display:inline-flex;
  gap:8px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(83,224,139,.30);
  background:rgba(83,224,139,.08);
  border-radius:999px;
  font-weight:650;
  letter-spacing:.2px;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background:var(--green);
  box-shadow: 0 0 0 6px rgba(83,224,139,.16);
}
h1{
  margin:14px 0 10px;
  font-size:clamp(2.0rem, 3.2vw, 3.1rem);
  line-height:1.1;
  letter-spacing:-.02em;
}
.lede{font-size:1.10rem; color:var(--muted); max-width:68ch}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  text-decoration:none;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-weight:700;
}
.btn:hover{background:rgba(255,255,255,.07)}
.btn.primary{
  border-color: rgba(46,123,255,.45);
  background: linear-gradient(180deg, rgba(46,123,255,.26), rgba(46,123,255,.10));
}
.btn.ghost{
  border-color: rgba(234,240,255,.18);
  background: rgba(7,10,18,.35);
}

.section{padding:34px 0}
.section h2{
  margin:0 0 10px;
  font-size:1.6rem;
  letter-spacing:-.01em;
}
.card{
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(12, 1fr);
}
.col-7{grid-column: span 7}
.col-5{grid-column: span 5}
.col-4{grid-column: span 4}
.col-6{grid-column: span 6}
.col-12{grid-column: span 12}

.badge{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(46,123,255,.32);
  background:rgba(46,123,255,.10);
  font-weight:700;
  letter-spacing:.2px;
}

.list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.12);
  background:rgba(255,255,255,.03);
}
.check{
  width:22px; height:22px; flex:0 0 22px;
  border-radius:7px;
  background: rgba(83,224,139,.12);
  border:1px solid rgba(83,224,139,.32);
  display:grid; place-items:center;
  margin-top:1px;
}
.check svg{width:14px; height:14px}

.pricing{
  display:grid;
  gap:14px;
}
.plan{
  position:relative;
  padding:18px;
}
.plan h3{margin:0 0 6px; font-size:1.2rem}
.plan .price{font-weight:900; font-size:1.5rem; letter-spacing:-.02em}
.plan .meta{color:var(--muted); font-size:.95rem}
.plan .cap{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(234,240,255,.14);
  display:grid;
  gap:8px;
}
.plan.highlight{
  border-color: rgba(83,224,139,.30);
  background: linear-gradient(180deg, rgba(83,224,139,.10), rgba(255,255,255,.05));
}
.ribbon{
  position:absolute;
  top:14px; right:14px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(83,224,139,.34);
  background: rgba(83,224,139,.10);
  font-weight:800;
  font-size:.82rem;
}

.media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(255,255,255,.02);
}
.media img{width:100%; height:100%; object-fit:cover}
.caption{padding:12px 14px; border-top:1px solid rgba(234,240,255,.14); color:var(--muted); font-size:.92rem}

.footer{
  padding:24px 0 34px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer .row{align-items:center; justify-content:space-between}
.footer a{color:var(--text); text-decoration:none; border-bottom:1px solid rgba(234,240,255,.22)}
.footer a:hover{border-bottom-color:rgba(83,224,139,.45)}

.kv{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:8px 14px;
  margin:0;
}
.kv dt{color:rgba(234,240,255,.72); font-weight:700}
.kv dd{margin:0; color:var(--text)}

.notice{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 14px;
  border-radius:16px;
  border:1px dashed rgba(234,240,255,.22);
  background:rgba(255,255,255,.03);
}
.notice svg{width:20px; height:20px; flex:0 0 20px; margin-top:2px; color:rgba(234,240,255,.85)}

@media (max-width: 920px){
  .col-7,.col-5,.col-6,.col-4{grid-column: span 12}
  .kv{grid-template-columns: 1fr}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important}
}
