:root {
  --black: #050506;
  --panel: #101012;
  --line: #392127;
  --red: #cf263d;
  --red-bright: #ff4d62;
  --text: #f2f2f3;
  --muted: #aaaab0;
  color: var(--text);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at 50% -15%, #2a090f 0, #09090b 34%, var(--black) 68%);
}

a {
  color: #ff8796;
}

.site-header,
.site-footer,
main {
  margin: 0 auto;
  max-width: 1040px;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 24px;
}

.brand {
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-header nav a {
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.hero,
.content-card,
.faq-item {
  background: rgba(13, 13, 15, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.hero {
  padding: clamp(28px, 7vw, 70px);
  text-align: center;
}

.eyebrow {
  color: var(--red-bright);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.12;
}

h1,
h2 {
  font-family: Georgia, serif;
}

h1 {
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  margin: 12px 0 18px;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

.hero > p:not(.eyebrow) {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin: 0 auto;
  max-width: 740px;
}

.primary-link {
  background: var(--red);
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  margin-top: 26px;
  padding: 13px 18px;
  text-decoration: none;
}

.primary-link:hover {
  background: var(--red-bright);
}

.content-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.content-card {
  padding: 24px;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 10px;
}

.content-card p {
  margin-bottom: 0;
}

.wide {
  grid-column: 1 / -1;
}

.section-heading {
  margin: 52px auto 22px;
  max-width: 760px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item h2 {
  font-family: inherit;
  font-size: 1.15rem;
  margin: 0;
}

.faq-item p {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid #29292e;
  color: #888890;
  font-size: 0.78rem;
  margin-top: 52px;
  padding-bottom: 32px;
  padding-top: 24px;
  text-align: center;
}

.legal-page {
  max-width: 900px;
}

.legal-document {
  background: rgba(13, 13, 15, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(26px, 6vw, 60px);
}

.legal-document h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}

.legal-document h2 {
  border-top: 1px solid #29292e;
  font-family: inherit;
  font-size: 1.35rem;
  margin: 36px 0 8px;
  padding-top: 28px;
}

.legal-document h3 {
  font-size: 1.03rem;
  margin: 24px 0 5px;
}

.legal-document p,
.legal-document li {
  color: #b7b7bd;
}

.legal-document ul {
  padding-left: 24px;
}

.legal-updated {
  color: #85858d !important;
  font-size: .85rem;
  margin-top: -8px;
}

.legal-callout {
  background: #1a0c0f;
  border: 1px solid #71333e;
  border-radius: 12px;
  margin: 28px 0 12px;
  padding: 20px 22px;
}

.legal-callout strong {
  color: #ff8796;
}

.legal-callout p {
  margin-bottom: 0;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.legal-footer p {
  font-size: inherit;
  margin: 12px 0 0;
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }
}
