@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg: #000000;
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --header-bg: rgba(0,0,0,0.5); /* Reduced from 0.8 to make blur visible */
  --accent: #ffffff;
  --link-hover: rgba(255,255,255,0.75);
  --border-subtle: rgba(255,255,255,0.08);
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2.5rem;
  height: 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.cta-btn {
  margin-left: auto;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 55px;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 2.5rem;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1.25rem;
    gap: 1rem;
    justify-content: space-between;
  }

  .nav-links {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .logo {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }

  .page-content {
    padding: 4rem 1.25rem 3rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-copy {
    margin-left: 0;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
  }
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 64px;
}

.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  font-weight: 300;
}

.placeholder-section {
  padding: 4rem 0 2rem;
}

.placeholder-section h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.placeholder-section p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

.about-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  max-width: 780px;
  font-weight: 300;
}

.about-text + .about-text {
  margin-top: 1.5rem;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text);
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 55px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pdf-link:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.pdf-link svg {
  flex-shrink: 0;
}
