:root{
  --bg:#05060b;
  --bg2:#0a0d17;
  --text:#f7f8fb;
  --muted:#c9cfdd;
  --muted2:#929aae;
  --accent:#ca72ff;
  --accent2:#9360ff;
  --border:rgba(205,164,255,.18);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  min-height:100vh;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  line-height:1.5;
  background:
    linear-gradient(rgba(118,54,210,.15) 1px,transparent 1px),
    linear-gradient(90deg,rgba(118,54,210,.15) 1px,transparent 1px),
    radial-gradient(circle at 8% 86%,rgba(148,78,255,.32),transparent 25%),
    radial-gradient(circle at 90% 7%,rgba(195,104,255,.28),transparent 24%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  background-size:72px 72px,72px 72px,auto,auto,auto;
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px,calc(100% - 48px));margin:0 auto}

header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(5,6,11,.74);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(182,132,255,.12);
}
.header-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:center;
}
nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:48px;
}
nav a{
  font-size:20px;
  font-weight:500;
  color:#eef0f7;
}
nav a:hover{color:#fff}

.hero{padding:92px 0 72px}
.kicker{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 18px;
  border:1px solid rgba(220,179,255,.55);
  border-radius:16px;
  color:#e6caff;
  font-size:17px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
h1{
  margin:30px 0 22px;
  max-width:930px;
  font-size:clamp(58px,8.4vw,104px);
  line-height:.96;
  letter-spacing:-.055em;
  font-weight:800;
}
.grad{
  background:linear-gradient(90deg,#b768ff,#e07cff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-copy{
  max-width:790px;
  margin:0;
  color:var(--muted);
  font-size:clamp(21px,2vw,28px);
  line-height:1.42;
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  min-height:52px;
  padding:0 22px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(224,181,255,.36);
  border-radius:13px;
  font-size:18px;
}
.btn.primary{
  background:linear-gradient(90deg,rgba(174,85,255,.22),rgba(212,118,255,.2));
}

.section{padding:52px 0 20px}
.section-label{
  margin:0 0 12px;
  color:var(--accent);
  font-size:18px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.lead-copy{
  max-width:760px;
  margin:0 0 18px;
  font-size:clamp(30px,3.1vw,40px);
  line-height:1.16;
  font-weight:600;
}
.body-copy{
  max-width:780px;
  margin:0;
  color:var(--muted);
  font-size:19px;
  line-height:1.62;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:38px 0 24px;
}
.card{
  padding:26px;
  border:1px solid var(--border);
  border-radius:20px;
  background:rgba(8,10,17,.7);
}
.card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.2;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.58;
}
.note{
  max-width:860px;
  margin-top:26px;
  padding:17px 0 17px 18px;
  border-left:3px solid #d883ff;
  color:var(--muted);
  font-size:18px;
  line-height:1.58;
}

.article{
  padding:76px 0 88px;
}
.article .section-label{margin-bottom:14px}
.article h1{
  max-width:880px;
  font-size:clamp(46px,6.2vw,74px);
  line-height:1.02;
}
.article h2{
  margin:38px 0 12px;
  font-size:32px;
  line-height:1.18;
}
.article p,.article li{
  max-width:800px;
  color:var(--muted);
  font-size:19px;
  line-height:1.62;
}
.meta{
  margin-top:-4px;
  color:var(--muted2)!important;
  font-size:16px!important;
}
.review-grid{display:grid;gap:18px;margin-top:28px}
.review-item{
  display:block;
  padding:24px;
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(8,10,17,.7);
}
.review-item strong{
  display:block;
  margin-bottom:7px;
  font-size:23px;
}
.review-item span{color:var(--muted);font-size:18px;line-height:1.55}

footer{
  padding:48px 0 58px;
  color:var(--muted2);
  font-size:16px;
}
.footer-line{
  padding-top:24px;
  border-top:1px solid rgba(182,132,255,.14);
}
.disclosure{margin-top:10px;font-size:15px}

@media(max-width:900px){
  nav{gap:32px}
  .cards{grid-template-columns:1fr}
  .hero{padding-top:66px}
}
@media(max-width:560px){
  body{background-size:44px 44px,44px 44px,auto,auto,auto}
  .container{width:min(100% - 34px,1120px)}
  .header-inner{min-height:78px}
  nav{gap:24px}
  nav a{font-size:18px}
  .kicker{font-size:14px;min-height:40px;padding:0 15px}
  h1{font-size:clamp(48px,14vw,70px)}
  .hero-copy{font-size:20px}
  .section-label{font-size:16px}
  .lead-copy{font-size:28px}
  .body-copy,.card p,.article p,.article li,.review-item span{font-size:17px}
  .card h3,.review-item strong{font-size:22px}
  .article h2{font-size:28px}
}