
:root {
  --bg: #061826;
  --card: #0c2434;
  --card2: #102b3d;
  --text: #f2f7f5;
  --muted: #9eb3bd;
  --lime: #b7f238;
  --line: rgba(255,255,255,0.12);
  --shadow: 0 30px 80px rgba(0,0,0,0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(183,242,56,0.12), transparent 34rem),
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 24rem),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: block;
}

.header-link {
  color: var(--lime);
  font-weight: 800;
}

.page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 88px;
}

.legal-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: end;
  margin: 44px 0 34px;
}

.eyebrow {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0 0 14px;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero-summary {
  color: var(--muted);
  line-height: 1.55;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0;
}

.updated {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(183,242,56,0.1);
  color: var(--lime);
  font-weight: 800;
  font-size: 0.88rem;
}

.legal-card {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 34px;
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-card > p:first-child {
  font-size: 1.16rem;
  color: var(--text);
}

h2 {
  margin: 42px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.03rem;
}

strong {
  color: var(--text);
}

.legal-card a {
  color: var(--lime);
  font-weight: 800;
}

.back-row {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.primary {
  background: var(--lime);
  color: #061826;
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.legal-card a.button {
  text-decoration: none;
}

.legal-card a.button.primary {
  color: #061826;
}

.legal-card a.button.secondary {
  color: var(--lime);
}

footer {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--lime);
  font-weight: 800;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .legal-hero {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .legal-card {
    border-radius: 28px;
  }

  footer {
    flex-direction: column;
  }
}
