:root {
  --bg: #F6F7F8;
  --bg-alt: #EDEEF0;
  --nav-bg: #1A1A1A;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --rule: #E4E5E7;
  --accent: #006AFF;
  --accent-deep: #004DCC;
  --teal: #00B4A6;
  --gold: #FFB800;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--accent-deep);
}

.container {
  width: 100%;
  max-width: var(--max, 64rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */

header.site-header {
  background: var(--nav-bg);
  padding: 1.5rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand svg {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer a {
  border: 0;
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--accent);
}
