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

body {
  background: #0f0f0f;
  color: #f5f5f5;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.4;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  background: #0f0f0f;
  z-index: 10;
}

header a {
  color: #f5f5f5;
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}

.brand {
  font-weight: 500;
}

/* MAIN */
main {
  padding-top: 120px;
}

/* ONE SCREEN = ONE IDEA */
.screen {
  min-height: 100vh;
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
}

/* TEXT */
.eyebrow {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 14px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 18px;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.sub {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 650px;
}

/* WORK */
.reels {
  margin-top: 28px;
  display: grid;
  gap: 24px;
  max-width: 500px;
}

/* LINKS */
.links a {
  margin-right: 20px;
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 2px;
}

/* FOOTER */
footer {
  padding: 40px 8%;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* WORD ANIMATION */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.word.show {
  opacity: 1;
  transform: translateY(0);
}

.word.hide {
  opacity: 0;
  transform: translateY(-16px);
}
