:root{
  color-scheme: dark;
  --bg:#020304;
  --bg2:#05080c;
  --text:#f2efe8;
  --muted:#cfc8bd;
  --soft:#9d9487;
  --line:#161b21;
  --accent:#7da9d6;
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;background:var(--bg);color:var(--text)}
body{
  min-height:100vh;
  display:grid;
  grid-template-rows:1fr auto;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(52,88,126,.16), transparent 22%),
    radial-gradient(circle at 50% 62%, rgba(26,52,78,.12), transparent 28%),
    linear-gradient(180deg, #040608 0%, #020304 100%);
}

.page{
  width:100%;
  display:flex;
  justify-content:center;
  padding:0 22px;
}
.page-home{
  align-items:center;
  min-height:calc(100vh - 74px);
}
.hero{
  width:min(100%, 980px);
}
.hero-center{
  text-align:center;
}
.eyebrow{
  margin:0 0 26px;
  font-size:14px;
  letter-spacing:.42em;
  color:#b5aea2;
  text-transform:uppercase;
}
h1{
  margin:0;
  font-weight:300;
  font-size:clamp(54px, 10vw, 108px);
  line-height:.95;
  letter-spacing:-.04em;
  color:#f2efe8;
}
.divider{
  width:72px;
  height:1px;
  margin:34px auto 38px;
  background:linear-gradient(90deg, transparent, rgba(125,169,214,.95), transparent);
  box-shadow:0 0 24px rgba(61,110,163,.42);
}
h2{
  margin:0;
  font-weight:400;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.1;
  color:#f0ebe2;
}
.lead{
  width:min(100%, 760px);
  margin:28px auto 0;
  color:#c6bfb4;
  font-size:clamp(16px, 1.5vw, 22px);
  line-height:1.75;
}

.site-footer{
  min-height:74px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:20px 18px;
  font-size:14px;
  background:rgba(0,0,0,.16);
}
.site-footer a{
  color:#d8d0c3;
  text-decoration:none;
}
.site-footer a:hover,
.site-footer a:focus-visible{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}
.site-footer a:focus-visible{
  outline:1px solid #8ba3bd;
  outline-offset:5px;
}

.legal-shell{
  width:min(100%, 980px);
  padding:54px 0 56px;
}
.legal-eyebrow{
  margin:0 0 18px;
  font-size:13px;
  letter-spacing:.34em;
  color:#b5aea2;
  text-transform:uppercase;
}
.legal-title{
  margin:0;
  font-weight:300;
  font-size:clamp(52px, 8vw, 92px);
  line-height:.95;
  letter-spacing:-.04em;
  color:#f3efe8;
}
.legal-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  margin-top:48px;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.legal-card{
  padding:30px 26px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.legal-card h2,
.privacy section h2{
  margin:0 0 16px;
  color:#c9ab80;
  font-size:12px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.legal-card p,
.privacy section p{
  margin:0;
  color:#d8d0c3;
  font-size:16px;
  line-height:1.8;
}
.privacy{
  margin-top:46px;
  border-top:1px solid var(--line);
}
.privacy section{
  padding:28px 0;
  border-bottom:1px solid var(--line);
}
@media (max-width: 760px){
  .page{padding:0 18px}
  .page-home{min-height:calc(100vh - 68px)}
  .eyebrow{font-size:12px; letter-spacing:.30em}
  .lead{font-size:16px}
  .legal-grid{grid-template-columns:1fr}
}
