:root{
  --bg:#061526;
  --bg-soft:#0a1b2f;
  --card:#0d1d33;
  --line:#23364d;
  --text:#f5f7fb;
  --muted:#c7d1df;
  --aqua:#22d3c5;
  --blue:#33b8f2;
  --max:900px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(34,211,197,.12), transparent 34%),
    linear-gradient(135deg,#071828 0%,#061526 55%,#06111f 100%);
  min-height:100vh;
}
a{color:var(--aqua)}
.site-header{
  border-bottom:1px solid rgba(199,209,223,.16);
  background:rgba(6,21,38,.82);
  backdrop-filter:blur(10px);
}
.header-inner,.main-inner,.footer-inner{
  width:min(calc(100% - 40px),var(--max));
  margin:0 auto;
}
.header-inner{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--text);
  text-decoration:none;
  font-size:27px;
  font-weight:800;
}
.brand-mark{
  width:38px;height:38px;
  border:2px solid var(--aqua);
  border-radius:11px;
  display:grid;place-items:center;
  color:var(--aqua);
  font-weight:800;
}
.top-nav{display:flex;gap:18px;flex-wrap:wrap}
.top-nav a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}
.top-nav a:hover{color:var(--text)}
.hero{
  min-height:690px;
  display:flex;
  align-items:center;
  padding:70px 0 46px;
}
.eyebrow{
  color:var(--aqua);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
  font-size:14px;
}
h1{
  margin:20px 0 24px;
  font-size:clamp(48px,7vw,78px);
  line-height:.97;
  letter-spacing:-.045em;
  max-width:900px;
}
.gradient{
  background:linear-gradient(90deg,var(--aqua),var(--blue));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  max-width:720px;
  color:var(--muted);
  font-size:21px;
  line-height:1.55;
  margin:0 0 54px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  background:rgba(13,29,51,.78);
  border:1px solid var(--line);
  border-radius:18px;
  padding:25px;
}
.card h2{font-size:20px;margin:0 0 12px}
.card p{color:var(--muted);line-height:1.55;margin:0}
.legal-main{padding:64px 0 78px}
.legal-shell{
  background:rgba(13,29,51,.76);
  border:1px solid var(--line);
  border-radius:22px;
  padding:clamp(28px,5vw,56px);
}
.legal-shell h1{font-size:clamp(38px,6vw,60px);margin-top:0}
.legal-shell h2{font-size:25px;margin-top:36px}
.legal-shell h3{font-size:19px;margin-top:26px}
.legal-shell p,.legal-shell li{
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}
.legal-shell ul{padding-left:24px}
.notice{
  border-left:4px solid var(--aqua);
  background:rgba(34,211,197,.08);
  padding:16px 18px;
  border-radius:10px;
  margin:24px 0;
}
.back-link{
  display:inline-block;
  margin-bottom:30px;
  text-decoration:none;
  font-weight:700;
}
.site-footer{
  border-top:1px solid rgba(199,209,223,.16);
  padding:26px 0 34px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer-status{
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--muted);
  font-size:14px;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 0 6px rgba(34,211,197,.12);
}
.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
}
.footer-links a:hover{color:var(--text)}
.copyright{
  width:100%;
  color:#8391a3;
  font-size:12px;
  margin-top:4px;
}
@media(max-width:760px){
  .header-inner{min-height:82px;align-items:flex-start;padding:20px 0}
  .top-nav{display:none}
  .hero{min-height:auto;padding:62px 0}
  .lead{font-size:18px}
  .cards{grid-template-columns:1fr}
  .footer-inner{align-items:flex-start}
}