@font-face {
  font-family: "Hollander";
  src: url("src/Hollander W01 Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hollander";
  src: url("src/Hollander W04 Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0f1115;
  --surface: #171a21;
  --text: white;
  --muted: #9aa2b1;
  --primary: #6366f1;
  --primary-hover: #4f52d6;
  --border: #262b36;
  --radius: 12px;
  --max-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hollander", Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  text-align: center;
  background-image: url("src/background.jpg");
  background-position: 100% 95%;
  background-repeat: no-repeat;
  background-size: 150vw;
}

.hero-subtitle {
  max-width: 600px;
  opacity: 1;
  margin: 1.5rem auto 2.5rem;
  font-size: 1.15rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
  animation-duration: 100s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: normal;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.hero-subtitle.scrolled {
  color: #FDB701;
  opacity: 0.5;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.hero-subtitle:nth-child(1) {
  animation-name: float-up-left;
}

.hero-subtitle:nth-child(2) {
  animation-name: float-up-right;
}

.hero-subtitle:nth-child(3) {
  animation-name: float-down-left;
}

.hero-subtitle:nth-child(4) {
  animation-name: float-down-right;
}

@keyframes float-up-left {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-180px, -220px); }
  100% { transform: translate(0, 0); }
}

@keyframes float-up-right {
  0% { transform: translate(0, 0); }
  50% { transform: translate(180px, -220px); }
  100% { transform: translate(0, 0); }
}

@keyframes float-down-left {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-180px, 220px); }
  100% { transform: translate(0, 0); }
}

@keyframes float-down-right {
  0% { transform: translate(0, 0); }
  50% { transform: translate(180px, 220px); }
  100% { transform: translate(0, 0); }
}

.hero-inner {
  display: flex;
  position: fixed;
  max-width: unset;
  z-index: 3;
}

/* Sections */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 3rem;
}


/* LEAD Text */

.lead {
  min-height: 300vh;
  background: radial-gradient(59.32% 41.95% at 26.32% -8.38%, #250101 0%, #000 100%);
  position: relative;
}

.lead-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.lead-text {
  grid-column: 4 / span 6;
  grid-row: 1 / span 2;
  line-height: 1.3;
  font-weight: 700;
  font-size: 48px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  padding: 8rem 0;
}

.lead-word {
  opacity: 0.12;
  transition: opacity 0.25s ease;
  margin-right: 0.28em;
}

.lead-word.revealed {
  opacity: 1;
}



/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {

}
