@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d0d0d;
  --text: #ccc;
  --text-strong: #fff;
  --muted: #555;
  --link: #ccc;
  --link-hover: #fff;
  --border: #333;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--link-hover);
  outline: none;
}

.page {
  width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.center {
  text-align: center;
}

h1 {
  color: var(--text-strong);
  margin: 0 0 1.5rem;
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  color: var(--text-strong);
  margin: 2rem 0 0.5rem;
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

li {
  margin-bottom: 0.5rem;
}

.small {
  font-size: 0.8rem;
  color: var(--muted);
}

.logo {
  width: 500px;
  max-width: 100%;
  display: block;
  margin: 0 auto 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin: 4rem auto 0;
}

.footer-grid h4 {
  color: var(--text-strong);
  margin: 0 0 1rem;
  font-size: 1rem;
}

.nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.nav a {
  color: var(--link);
}

.nav a:hover {
  color: var(--link-hover);
}

.hero {
  text-align: center;
}

.hero p {
  font-size: 1.2rem;
}

.footer-legal {
  margin-top: 2.5rem;
}

