.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: calc(var(--z-nav) + 10);
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--gold);
}

.canvas-wrapper {
  position: fixed;
  inset: 0;
  z-index: var(--z-canvas);
  pointer-events: none;
}

.canvas-wrapper canvas {
  width: 100%;
  height: 100%;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(10, 8, 5, 0.55) 65%,
    rgba(10, 8, 5, 0.88) 100%
  );
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  border-bottom: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 8, 5, 0.7);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.nav--scrolled {
  background: rgba(10, 8, 5, 0.9);
  box-shadow: 0 1px 0 var(--gold-border), var(--shadow-glow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.nav__logo:hover {
  color: var(--text);
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav__links a:hover {
  color: var(--gold);
}

.section {
  position: relative;
  z-index: var(--z-base);
  padding: var(--space-3xl) 0;
}

.section:first-of-type {
  padding-top: 0;
}

.section__header {
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: var(--space-sm) 0 var(--space-md);
}

.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-3xl) var(--space-lg);
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  max-width: 800px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 540px;
  line-height: 1.72;
  color: var(--text-muted);
}

.hero__stats {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--space-sm);
  border-top: var(--border);
  width: 100%;
  max-width: 680px;
}

.split-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-section--reverse .split-section__inner {
  direction: rtl;
}

.split-section--reverse .split-section__inner > * {
  direction: ltr;
}

.split-section__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.split-section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: var(--space-sm) 0;
}

.split-section__text p {
  color: var(--text-muted);
  line-height: 1.75;
}

.cta-section {
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 97, 0.04) 50%, transparent 100%);
}

.cta-section__inner {
  display: flex;
  justify-content: center;
}

.cta-section__content {
  max-width: 580px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-section__content p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.footer {
  position: relative;
  z-index: var(--z-base);
  border-top: var(--border);
  background: rgba(8, 6, 4, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: var(--border);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.footer__issue {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  gap: var(--space-md);
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-subtle);
}

@media (max-width: 900px) {
  .container {
    padding: 0 var(--space-md);
  }

  .nav__links {
    display: none;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .hero__inner {
    padding: var(--space-2xl) var(--space-md);
  }

  .hero__stats {
    gap: var(--space-lg);
  }

  .split-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .split-section--reverse .split-section__inner {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
}

@media (max-width: 500px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
  }

  .nav__cta {
    display: none;
  }

  .hero__stats {
    gap: var(--space-md);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}
