:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --card: #171717;
  --text: #f5f5f0;
  --muted: #a6a29a;
  --line: #2c2a27;
  --accent: #c9a96e;
  --accent-soft: rgba(201, 169, 110, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
  letter-spacing: 0.01em;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(201, 169, 110, 0.22);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  padding: 64px 0 44px;
}

.hero-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 30px);
}

.hero-logo {
  flex: 0 0 auto;
  width: clamp(72px, 12vw, 116px);
  height: clamp(72px, 12vw, 116px);
  object-fit: cover;
  border-radius: 20px;
  margin-top: 4px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 8vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.subtitle {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 8px;
  padding: 22px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.legal {
  display: grid;
  gap: 18px;
  padding-top: 34px;
}

.legal h1 {
  font-size: clamp(32px, 6vw, 56px);
}

.legal h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal p {
  margin: 0;
}

.legal ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.footer {
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-heading {
    align-items: center;
    gap: 14px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-top: 0;
  }

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

@media (max-width: 420px) {
  .hero-heading {
    gap: 12px;
  }

  .hero-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }
}
