:root {
  color-scheme: dark;
  --navy: #020817;
  --navy-soft: #06162f;
  --orange: #ff641f;
  --white: #ffffff;
  --ink: #0a1224;
  --muted: #617087;
  --line: rgba(255, 255, 255, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 100, 31, .18), transparent 28rem),
    var(--navy);
  font-family: "DM Sans", Arial, sans-serif;
}

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(2, 8, 23, .92);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

main { padding: 68px 0 88px; }

.legal-shell { width: min(900px, 100%); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin: 0 0 34px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.7rem, 8vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.legal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 60px);
  border-radius: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.legal-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--orange);
  content: "";
}

.legal-card p {
  margin: 0 0 24px;
  color: #26344a;
  font-size: 17px;
  line-height: 1.75;
}

.legal-card p:last-child { margin-bottom: 0; }

.legal-card strong {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.04em;
}

.legal-card a {
  color: #c8460d;
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-card a:hover,
.legal-card a:focus-visible { color: #8e2c00; }

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: #9eb0ca;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner a { text-underline-offset: 3px; }

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 82px; }
  .brand img { height: 58px; }
  .back-link { padding: 10px 14px; font-size: 13px; }
  main { padding: 44px 0 64px; }
  .legal-card { border-radius: 22px; }
  .legal-card p { font-size: 16px; }
}
