:root{
  --bg:#080808;
  --panel:#0d0f0c;
  --green:#6db33f;
  --white:#f5f7f2;
  --muted:#a7aea2;
  --line:rgba(255,255,255,.10);
}
*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  font-family:'Outfit',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:
    radial-gradient(circle at 76% 18%,rgba(109,179,63,.12),transparent 28%),
    linear-gradient(180deg,#080808,#050605);
  color:var(--white);
}
a{color:inherit;text-decoration:none}
.legal-page{
  width:min(900px,calc(100% - 32px));
  min-height:100vh;
  margin:0 auto;
  padding:44px 0;
  display:grid;
  align-content:center;
  gap:34px;
}
.brand-link img{width:168px;height:auto}
.legal-card{
  border:1px solid var(--line);
  background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.014));
  border-radius:28px;
  padding:42px;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--green);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
h1{
  margin:0 0 18px;
  font-size:clamp(38px,6vw,72px);
  line-height:.95;
  letter-spacing:0;
}
p{
  margin:0;
  max-width:680px;
  color:var(--muted);
  font-size:20px;
  line-height:1.5;
}
.back-link{
  display:inline-flex;
  margin-top:32px;
  min-height:46px;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:999px;
  background:var(--green);
  color:#071006;
  font-weight:850;
}
