:root {
  --bg: #000000;
  --surface: #0f0f10;
  --surface2: #171718;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.14);
  --red: #8b1a1a;
  --green: #22d31d;
  --radius: 18px;
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(139, 26, 26, 0.28), transparent 55%),
              radial-gradient(900px 600px at 80% 20%, rgba(34, 211, 29, 0.18), transparent 55%),
              #000;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover { color: var(--text); }

.hero { padding: 66px 0 46px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(139, 26, 26, 0.55);
  background: rgba(139, 26, 26, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.eyebrow::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 211, 29, 0.18);
}

h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 6.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 22px;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.button-row { display: flex; gap: 12px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(139, 26, 26, 0.35);
}

.button.primary:hover { transform: translateY(-1px); }

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: #fff;
}

.section { padding: 34px 0; }

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.02em;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: rgba(15, 15, 16, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.muted { color: var(--muted); }

.legal-main { padding: 46px 0 72px; }

.content-card {
  background: rgba(15, 15, 16, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.content-card h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 42px);
}

.content-card h2 { margin: 24px 0 10px; font-size: 20px; }

.content-card p,
.content-card li { color: var(--muted); }

.content-card ul { padding-left: 20px; }

.site-footer {
  padding: 22px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

.footer-links a:hover { color: var(--text); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 40px; }
}
