:root{
  --bg: #0f1218;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --thin: rgba(255,255,255,0.52);
  --line: rgba(255,255,255,0.09);
  --panel: rgba(255,255,255,0.03);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.6;
}

.hero{
  min-height: 46vh;
  display: grid;
  place-items: center;
  padding: 56px 20px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      1100px 500px at 50% 30%,
      rgba(255,255,255,0.10),
      rgba(0,0,0,0.0)
    );
}

.hero__content{
  text-align: center;
  max-width: 900px;
}

.kicker{
  margin: 0 0 18px 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--thin);
}

.title{
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
}

.subtitle{
  margin: 14px 0 0 0;
  font-size: 14px;
  letter-spacing: 0.10em;
  color: var(--muted);
}

.section{
  padding: 46px 20px 64px 20px;
}

.prose{
  max-width: 820px;
  margin: 0 auto 34px auto;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  color: var(--muted);
}

.legal{
  max-width: 820px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.legal h2{
  margin: 0 0 10px 0;
  font-size: 16px;
  color: rgba(255,255,255,0.86);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.legal p{
  margin: 0 0 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
}

.legal p:last-child{
  margin-bottom: 0;
}

.footer{
  padding: 22px 20px 36px 20px;
  border-top: 1px solid var(--line);
}

.footer__small{
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
