:root{
--bg:#0b1016;
--panel:#161d27;
--panel2:#1d2632;
--text:#d4dce7;
--muted:#8c98ab;
--lime:#c8f168;
--cyan:#63d7da;
--line:rgba(255,255,255,.08);
--radius:26px;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Spline Sans',sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.8;
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
}

::selection{
background:var(--lime);
color:#000;
}

.bg{
position:fixed;
inset:0;
z-index:-2;
background:
radial-gradient(circle at 85% 0%,rgba(200,241,104,.12),transparent 42%),
radial-gradient(circle at 0% 100%,rgba(99,215,218,.12),transparent 42%),
var(--bg);
}

.grid{
position:fixed;
inset:0;
z-index:-1;
opacity:.18;
background-image:
linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
background-size:54px 54px;
mask-image:radial-gradient(circle at center,#000 20%,transparent 85%);
}

.wrap{
max-width:1120px;
margin:auto;
padding:0 28px;
}

header{
position:sticky;
top:0;
z-index:999;
backdrop-filter:blur(16px);
background:rgba(11,16,22,.72);
border-bottom:1px solid var(--line);
}

header .wrap{
height:76px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
display:flex;
align-items:center;
gap:12px;
font-family:'Bricolage Grotesque',sans-serif;
font-weight:800;
font-size:21px;
color:#fff;
}

.logo span{
width:40px;
height:40px;
display:grid;
place-items:center;
border-radius:12px;
background:linear-gradient(135deg,var(--lime),var(--cyan));
color:#000;
font-weight:800;
}

.top-btn{
text-decoration:none;
background:var(--lime);
color:#000;
padding:12px 24px;
border-radius:12px;
font-weight:700;
transition:.3s;
}

.top-btn:hover{
transform:translateY(-3px);
box-shadow:0 18px 40px rgba(200,241,104,.22);
}

.hero{
padding:100px 0 70px;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:center;
}

.kicker{
display:flex;
align-items:center;
gap:12px;
font-size:12px;
letter-spacing:.18em;
text-transform:uppercase;
color:var(--lime);
font-weight:700;
margin-bottom:20px;
}

.kicker:before{
content:"";
width:36px;
height:2px;
background:var(--lime);
}

h1{
font-family:'Bricolage Grotesque',sans-serif;
font-size:clamp(2.8rem,6vw,5rem);
line-height:1.02;
font-weight:800;
color:#fff;
margin-bottom:24px;
letter-spacing:-.04em;
}

h1 span{
color:transparent;
-webkit-text-stroke:1.5px var(--lime);
}

.hero p{
font-size:1.1rem;
color:var(--muted);
max-width:48ch;
margin-bottom:34px;
}

.hero-actions{
display:flex;
gap:16px;
flex-wrap:wrap;
}

.btn-main,.btn-ghost{
padding:15px 30px;
border-radius:14px;
font-weight:700;
text-decoration:none;
transition:.3s;
display:inline-flex;
align-items:center;
gap:10px;
}

.btn-main{
background:linear-gradient(135deg,var(--lime),#a4d63f);
color:#000;
box-shadow:0 16px 40px rgba(200,241,104,.22);
}

.btn-main:hover{
transform:translateY(-4px);
}

.btn-ghost{
border:1px solid rgba(255,255,255,.14);
color:#fff;
}

.btn-ghost:hover{
border-color:var(--lime);
color:var(--lime);
transform:translateY(-4px);
}

.visual{
background:var(--panel);
border:1px solid var(--line);
border-radius:var(--radius);
padding:36px;
box-shadow:0 35px 60px rgba(0,0,0,.45);
}

.visual h4{
font-size:12px;
letter-spacing:.14em;
text-transform:uppercase;
color:var(--muted);
margin-bottom:10px;
}

.note{
font-family:'Bricolage Grotesque',sans-serif;
font-size:4rem;
font-weight:800;
line-height:1;
color:var(--lime);
margin-bottom:24px;
}

.note small{
font-size:1rem;
font-weight:500;
color:var(--muted);
}

.bars{
display:flex;
align-items:flex-end;
gap:5px;
height:100px;
margin-bottom:24px;
}

.bars span{
flex:1;
border-radius:8px;
background:rgba(255,255,255,.08);
animation:bars 1.8s infinite ease-in-out;
}

.bars span:nth-child(odd){
background:linear-gradient(var(--cyan),var(--lime));
}

.bars span:nth-child(1){height:20%}
.bars span:nth-child(2){height:40%}
.bars span:nth-child(3){height:55%}
.bars span:nth-child(4){height:72%}
.bars span:nth-child(5){height:90%}
.bars span:nth-child(6){height:76%}
.bars span:nth-child(7){height:58%}
.bars span:nth-child(8){height:84%}
.bars span:nth-child(9){height:65%}
.bars span:nth-child(10){height:34%}

@keyframes bars{
50%{
transform:scaleY(.72);
}
}

.visual-row{
display:flex;
justify-content:space-between;
font-size:13px;
padding-top:16px;
border-top:1px solid var(--line);
color:var(--muted);
}

.visual-row b{
color:#fff;
}

article{
padding-bottom:100px;
}

.content{
background:var(--panel);
border:1px solid var(--line);
border-radius:32px;
padding:72px;
}

.content p{
margin-bottom:22px;
color:var(--text);
}

.content a{
color:var(--lime);
font-weight:700;
text-decoration:none;
border-bottom:2px solid rgba(200,241,104,.25);
}

.content a:hover{
color:var(--cyan);
border-color:var(--cyan);
}

h2{
font-family:'Bricolage Grotesque',sans-serif;
font-size:clamp(1.8rem,4vw,2.6rem);
line-height:1.15;
margin:60px 0 18px;
color:#fff;
display:flex;
gap:14px;
align-items:center;
}

h2 span{
font-size:13px;
padding:5px 10px;
border-radius:8px;
border:1px solid rgba(200,241,104,.25);
color:var(--lime);
}

.callout{
margin:36px 0;
padding:32px;
background:var(--panel2);
border-radius:20px;
border:1px solid var(--line);
border-left:4px solid var(--lime);
}

.callout strong{
display:block;
margin-bottom:10px;
font-size:12px;
letter-spacing:.14em;
text-transform:uppercase;
color:var(--lime);
}

.table-wrap{
overflow-x:auto;
margin:30px 0;
border-radius:18px;
border:1px solid var(--line);
}

table{
width:100%;
border-collapse:collapse;
min-width:520px;
}

thead{
background:var(--panel2);
}

thead th{
padding:18px;
text-align:left;
font-size:13px;
letter-spacing:.08em;
text-transform:uppercase;
font-family:'Bricolage Grotesque',sans-serif;
}

tbody td{
padding:16px 18px;
border-top:1px solid var(--line);
}

tbody td:first-child{
font-weight:700;
color:var(--lime);
}

tbody tr:hover{
background:rgba(255,255,255,.02);
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:16px;
margin:30px 0;
}

.features li{
list-style:none;
padding:18px 20px;
background:var(--panel2);
border-radius:18px;
border:1px solid var(--line);
display:flex;
gap:12px;
transition:.3s;
}

.features li:hover{
transform:translateY(-4px);
border-color:var(--cyan);
}

.check{
width:24px;
height:24px;
border-radius:7px;
display:grid;
place-items:center;
background:linear-gradient(var(--cyan),var(--lime));
color:#000;
font-weight:800;
flex:none;
}

.tips{
display:grid;
gap:14px;
margin:28px 0;
}

.tips li{
list-style:none;
padding:18px 22px 18px 54px;
background:var(--panel2);
border-radius:14px;
border:1px solid var(--line);
position:relative;
}

.tips li:before{
content:"";
position:absolute;
left:22px;
top:50%;
transform:translateY(-50%);
width:14px;
height:14px;
border-radius:50%;
background:var(--lime);
box-shadow:0 0 0 5px rgba(200,241,104,.14);
}

.cta{
margin-top:70px;
padding:72px 40px;
text-align:center;
border-radius:32px;
background:linear-gradient(135deg,#181f2a,#10141b);
border:1px solid var(--line);
position:relative;
overflow:hidden;
}

.cta:before{
content:"";
position:absolute;
inset:0;
background:
radial-gradient(circle at 20% 20%,rgba(200,241,104,.16),transparent 35%),
radial-gradient(circle at 80% 80%,rgba(100,216,218,.14),transparent 35%);
opacity:.9;
}

.cta h2{
justify-content:center;
margin:0 0 16px;
position:relative;
}

.cta p{
max-width:54ch;
margin:0 auto 30px;
position:relative;
color:var(--muted);
}

.cta .btn-main{
position:relative;
}

footer{
padding:50px 0 70px;
text-align:center;
color:var(--muted);
font-size:15px;
}

footer .logo{
justify-content:center;
margin-bottom:16px;
}

footer a{
color:var(--lime);
text-decoration:none;
font-weight:700;
}

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
gap:40px;
}

.content{
padding:36px 24px;
}

}