:root{
  --bg:#0b0d12;
  --paper:#0f131b;
  --paper2:#101624;
  --text:#f4f5f7;
  --muted:#b2bacb;
  --muted2:#8f98ab;
  --line:rgba(255,255,255,.10);
  --radius:22px;
  --shadow: 0 20px 90px rgba(0,0,0,.55);
  --shadow2: 0 10px 40px rgba(0,0,0,.35);
  --accent:#e6e2ff;
  --accent2:#9af3d1;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(190,170,255,.18), transparent 60%),
    radial-gradient(900px 520px at 82% 0%, rgba(154,243,209,.10), transparent 62%),
    radial-gradient(900px 520px at 50% 115%, rgba(255,255,255,.06), transparent 62%),
    linear-gradient(180deg, #080a10, var(--bg));
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  overflow-x:hidden;
}
a{color:inherit}
.container{width:min(1040px, 92vw); margin:0 auto; padding: 54px 0 88px;}
/* brand strip */
.brandline{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:16px; flex-wrap:wrap;
  margin-bottom: 26px;
}
.brandline .left{display:flex; flex-direction:column; gap:8px;}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:13px;
}
.badge .dot{
  width:8px; height:8px; border-radius:999px;
  background: rgba(154,243,209,.95);
  box-shadow: 0 0 0 6px rgba(154,243,209,.10);
}
.nav{
  display:flex; gap:10px; flex-wrap:wrap;
  color: var(--muted2);
  font-size:14px;
}
.nav a{
  padding: 8px 10px;
  border-radius: 14px;
  text-decoration:none;
}
.nav a:hover{background: rgba(255,255,255,.04); color:var(--text);}

/* type */
h1{
  margin:0;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing:-0.9px;
  line-height: 1.02;
}
h1 span{
  color: transparent;
  background: linear-gradient(90deg, var(--text), rgba(230,226,255,.92), rgba(154,243,209,.88));
  -webkit-background-clip:text;
  background-clip:text;
}
.lead{
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16.5px;
  max-width: 62ch;
}
.small{color:var(--muted2); font-size: 12.8px; line-height: 1.75;}
.hr{height:1px; background: var(--line); margin: 20px 0;}

/* layout */
.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:start;
}
.card{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.card.pad{padding: 28px;}
.panel{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow2);
}
.panel.pad{padding: 18px;}

.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 18px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  font-weight: 650;
}
.btn:hover{background: rgba(255,255,255,.07);}
.btn.primary{
  border-color: rgba(230,226,255,.45);
  background: linear-gradient(135deg, rgba(230,226,255,.18), rgba(154,243,209,.10));
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(230,226,255,.24), rgba(154,243,209,.14));}
.btn.ghost{background: transparent;}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px;}
.feature{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.02);
}
.feature h3{margin:0 0 8px; font-size: 16px; letter-spacing:-0.2px;}
.feature p{margin:0; color: var(--muted); line-height: 1.8;}

/* pricing */
.pricing{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;}
.plan{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  background: rgba(255,255,255,.02);
}
.plan.featured{
  background: linear-gradient(180deg, rgba(230,226,255,.12), rgba(255,255,255,.02));
  border-color: rgba(230,226,255,.35);
}
.plan .name{font-weight: 900;}
.plan .price{margin-top:10px; font-size: 32px; font-weight: 950; letter-spacing:-0.4px;}
.plan .per{color:var(--muted2); font-size: 13px; font-weight:650;}
.plan .desc{margin-top:8px; color:var(--muted); line-height: 1.8; font-size: 14px;}
.plan ul{margin: 12px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.9; font-size: 14px;}
.plan .cta{margin-top: 14px;}

/* table */
.table{
  width:100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.table th,.table td{
  text-align:left;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th{color: var(--muted2); font-size:12px; letter-spacing:.2px; text-transform: uppercase;}
.table tr:last-child td{border-bottom:none;}

/* footer */
footer{
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
footer a{color: var(--muted); text-decoration: underline; text-underline-offset: 4px;}
footer a:hover{color: var(--text);}

/* reveal */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease;}
.reveal.show{opacity:1; transform: translateY(0);}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none}
}

@media (max-width: 980px){
  .hero{grid-template-columns: 1fr;}
  .grid-3{grid-template-columns: 1fr;}
  .grid-2{grid-template-columns: 1fr;}
  .pricing{grid-template-columns: 1fr;}
}
