:root {
  --red: #e21c2a;
  --red-soft: rgba(226, 28, 42, .16);
  --white: #f7f7f8;
  --muted: #aaaab2;
  --line: rgba(255, 255, 255, .13);
  --panel: rgba(15, 15, 18, .88);
  --max: 1040px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: #070708;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 8%, rgba(226, 28, 42, .2), transparent 28%),
    linear-gradient(180deg, #070708, #0c0c0e 48%, #050506);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .36;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='104' height='90' viewBox='0 0 104 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpath d='M26 2h52l25 43-25 43H26L1 45 26 2Z' stroke='%23ffffff' stroke-opacity='.15' stroke-width='1.2'/%3E%3Cpath d='M31 10h42l20 35-20 35H31L11 45 31 10Z' stroke='%23ffffff' stroke-opacity='.06' stroke-width='.8'/%3E%3Cpath d='M52 2v8M52 80v8M1 45h10M93 45h10' stroke='%23e21c2a' stroke-opacity='.32'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 104px 90px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

a { color: inherit; }
.container { width: min(calc(100% - 34px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, .9);
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 20px rgba(226, 28, 42, .75);
}

.header-inner,
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner { min-height: 76px; }
.brand { text-decoration: none; font-size: 1rem; letter-spacing: .2em; }
.brand span { font-weight: 400; color: #ddd; }
.brand strong { color: var(--red); font-weight: 900; }
.header-nav, .footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.header-nav a, .footer-nav a { color: #c4c4ca; font-size: .78rem; font-weight: 700; text-decoration: none; }
.header-nav a:hover, .header-nav a:focus-visible, .footer-nav a:hover, .footer-nav a:focus-visible { color: #fff; }

main { padding: clamp(70px, 9vw, 118px) 0 90px; }
.eyebrow { margin: 0 0 12px; color: #ff4d59; font-size: .72rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2.5rem, 7vw, 5.2rem); line-height: .98; letter-spacing: -.055em; text-transform: uppercase; }
.lead { max-width: 760px; margin: 24px 0 42px; color: #c3c3c9; font-size: clamp(1rem, 2vw, 1.18rem); }

.legal-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.legal-section + .legal-section { margin-top: 38px; padding-top: 38px; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 14px; font-size: clamp(1.3rem, 3vw, 1.8rem); line-height: 1.2; }
.legal-section h3 { margin: 26px 0 8px; font-size: 1rem; }
.legal-section p, .legal-section ul { margin: 0 0 16px; color: #d0d0d5; }
.legal-section ul { padding-left: 22px; }
.legal-section a { color: #ff6973; overflow-wrap: anywhere; }
.legal-section strong { color: #fff; }
.notice { padding: 18px 20px; border-left: 3px solid var(--red); background: var(--red-soft); color: #eeeef1; }
.updated { color: #8e8e96; font-size: .78rem; }

.site-footer { border-top: 1px solid var(--line); background: #050506; }
.footer-inner { min-height: 94px; color: #7f7f87; font-size: .76rem; }

@media (max-width: 720px) {
  .header-inner, .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
  .header-nav, .footer-nav { gap: 10px 16px; }
  main { padding-top: 54px; }
  .legal-card { padding: 24px 20px; }
}
