@font-face {
  font-family: 'Nouten';
  src: url('/fonts/Nouten-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #f7f7f7;
  --surface-2: #f1f1f1;
  --border: #e6e6e6;
  --text: #1e1e1e;
  --muted: #6b6b6b;
  --accent: #ff6900;
  --accent-hover: #e65d00;
  --ok: #2e7d32;
  --header: #1e1e1e;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; }

.site-header {
  background: var(--header);
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .logo img { height: 44px; display: block; }
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.site-header nav a:hover { color: var(--accent); }
.site-header nav a.cta {
  background: var(--accent);
  padding: 11px 22px;
  border-radius: 4px;
}
.site-header nav a.cta:hover { background: var(--accent-hover); color: #fff; }

@media (max-width: 720px) {
  .site-header nav a:not(.cta) { display: none; }
}
