@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;800;900&family=Inter:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --red: #CA0000;
  --red-deep: #7A0000;
  --bg: #150606;
  --ink: #F3E9DE;
  --ink-dim: #C7A79C;
  --line: rgba(243,233,222,0.14);
  --line-strong: rgba(243,233,222,0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

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

#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  background: var(--bg);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 56px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand svg {
  width: 22px;
  height: auto;
  fill: var(--ink);
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .2s ease;
}

.nav-links a:hover, 
.nav-links a:focus-visible {
  color: var(--red);
}

.nav-links a:focus-visible {
  outline: 1px solid var(--red);
  outline-offset: 4px;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
}

.wordmark {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  line-height: .9;
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  letter-spacing: .01em;
  text-transform: uppercase;
}

.wordmark .red {
  color: var(--red);
}

.hero-tag {
  margin-top: 20px;
  max-width: 800px;
  font-size: 1.02rem;
  color: var(--ink-dim);
  line-height: 1.6;
  background: rgba(21, 6, 6, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 4px;
  border: 1px solid rgba(243, 233, 222, 0.06);
}

.hero-cta-btn {
  margin-top: 32px;
  font-family: 'Space Mono', monospace;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 14px 32px;
  border-radius: 2px;
  transition: all .25s ease;
  font-weight: 700;
}

.hero-cta-btn:hover, 
.hero-cta-btn:focus-visible {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(202, 0, 0, 0.4);
}

footer {
  border-top: 1px solid var(--line);
  padding: 40px clamp(20px, 5vw, 56px) 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.foot-mark {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.foot-links a {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .2s ease;
}

.foot-links a:hover, 
.foot-links a:focus-visible {
  color: var(--red);
}