/* ─── Fonts ─────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'NeueHaasGrotesk';
  src: url('assets/fonts/NeueHaasGroteskText-Pro-55-Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

/* ─── Password Gate ─────────────────────────────────────────────────────── */

.password-gate {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.password-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 280px;
}

.password-label {
  font-family: 'ABCDiatypeMono', 'Courier New', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
}

.password-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  padding: 8px 0;
  font-family: 'NeueHaasGrotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: transparent;
  outline: none;
}

.password-input::placeholder {
  color: #ccc;
}

.password-error {
  font-size: 13px;
  color: #c0392b;
  display: none;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────── */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'NeueHaasGrotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── Navigation ────────────────────────────────────────────────────────── */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
}

.nav-logo {
  font-family: 'NeueHaasGrotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'NeueHaasGrotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #666;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1a1a1a;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */

.footer {
  padding: 60px 48px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: #999;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: #666;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #1a1a1a;
}
