
:root{
--bg:#081120;
--card:#101c2e;
--line:#22324b;
--text:#e8eef7;
--muted:#9fb0c7;
--accent:#ff6d00;
--accent2:#4cc9f0;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter,sans-serif;
background:linear-gradient(180deg,#07101d,#0d1728);
color:var(--text);
line-height:1.7;
}

.container{
width:min(1200px,92%);
margin:auto;
}

.narrow{
max-width:800px;
}

.legal-header{
position:sticky;
top:0;
backdrop-filter:blur(12px);
background:rgba(8,17,32,.85);
border-bottom:1px solid rgba(255,255,255,.08);
z-index:50;
}

.legal-header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
text-decoration:none;
color:#fff;
font-weight:800;
letter-spacing:2px;
}

.btn-back{
text-decoration:none;
padding:12px 18px;
border-radius:12px;
background:var(--accent);
color:#fff;
font-weight:700;
}

.hero-legal{
padding:90px 0 60px;
text-align:center;
}

.eyebrow{
display:inline-block;
padding:8px 14px;
border-radius:999px;
background:rgba(255,109,0,.15);
color:var(--accent);
font-weight:700;
margin-bottom:20px;
}

.hero-legal h1{
font-size:clamp(2.4rem,5vw,4rem);
margin-bottom:20px;
}

.hero-legal p{
color:var(--muted);
font-size:1.1rem;
}

.legal-layout{
display:grid;
grid-template-columns:280px 1fr;
gap:40px;
padding-bottom:80px;
}

.sidebar-card{
position:sticky;
top:110px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:24px;
border-radius:24px;
}

.sidebar-card h3{
margin-bottom:20px;
}

.sidebar-card nav{
display:flex;
flex-direction:column;
gap:12px;
}

.sidebar-card a{
color:var(--muted);
text-decoration:none;
transition:.3s;
}

.sidebar-card a:hover{
color:#fff;
transform:translateX(4px);
}

.legal-content{
display:flex;
flex-direction:column;
gap:28px;
}

.legal-card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:28px;
padding:40px;
}

.tag{
display:inline-block;
padding:6px 12px;
border-radius:999px;
background:rgba(76,201,240,.15);
color:var(--accent2);
font-size:.85rem;
font-weight:700;
margin-bottom:18px;
}

.legal-card h2{
font-size:2rem;
margin-bottom:18px;
}

.legal-card h3{
margin:28px 0 12px;
}

.legal-card p{
color:var(--muted);
margin-bottom:16px;
}

.highlight{
background:rgba(255,109,0,.12);
border:1px solid rgba(255,109,0,.25);
padding:18px;
border-radius:18px;
margin:24px 0;
}

.info-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:18px;
margin:28px 0;
}

.info-box{
background:#0c1727;
border:1px solid rgba(255,255,255,.08);
padding:22px;
border-radius:20px;
}

.info-box h4{
margin-bottom:10px;
}

.legal-list{
padding-left:20px;
color:var(--muted);
}

.legal-footer{
padding:30px 0;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
color:var(--muted);
margin-top:40px;
}

@media(max-width:900px){
.legal-layout{
grid-template-columns:1fr;
}

.sidebar-card{
position:relative;
top:0;
}
}
