@font-face {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/fonts/GoogleSansFlex-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/fonts/GoogleSansFlex-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { min-height: 100%; }
body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #ac2c2c;
  color: #fff;
  font-family: "Google Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a { color: inherit; }
.brand {
  position: absolute;
  top: 36px;
  left: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.brand svg { width: 36px; height: 36px; display: block; }
.site-footer {
  position: relative;
  z-index: 1;
  padding: 32px 48px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  background: #ac2c2c;
}
.copyright { opacity: 0.85; }
.legal-nav {
  display: flex;
  gap: 22px;
}
.legal-nav a { text-decoration: none; opacity: 0.85; }
.legal-nav a:hover,
.legal-nav a[aria-current="page"] { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

.hero {
  min-height: min-content;
  display: flex;
  align-items: center;
  padding: 120px 48px 48px;
}
.copy { max-width: 720px; }
.kicker {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  white-space: nowrap;
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 12ch;
}
.rule {
  width: 168px;
  height: 2px;
  background: #fff;
  margin: 28px 0 26px;
  position: relative;
}
.rule::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateY(-62%) rotate(45deg);
}
.lead {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 28ch;
}

.legal {
  min-height: min-content;
  max-width: 720px;
  padding: 128px 48px 24px;
}
.legal h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 36px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 32px 0 10px;
}
.legal p, .legal li {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}
.legal p + p { margin-top: 12px; }
.legal ul { margin: 8px 0 0 1.2em; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal address { font-style: normal; }

@media (max-width: 720px) {
  .brand { left: 24px; top: 24px; }
  .site-footer { padding: 24px 24px 24px; }
  .hero { padding: 108px 24px 48px; }
  .kicker { white-space: normal; }
  .legal { padding: 108px 24px 16px; }
}
