:root {
  --ink: #080808;
  --paper: #ffffff;
  --mist: #f1f3f5;
  --soft: #dfe3e8;
  --yellow: #f4cf5d;
  --yellow-deep: #dcae25;
  --blue: #739df1;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 1.25rem;
  background: var(--paper);
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.85s cubic-bezier(0.77, 0, 0.18, 1) 0.1s;
}

.page-loader.is-complete {
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.page-loader__mark {
  position: relative;
  width: 76px;
  height: 76px;
  margin: auto;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  animation: loader-pulse 0.9s ease-in-out infinite alternate;
}

.page-loader__mark::before,
.page-loader__mark::after {
  position: absolute;
  top: 35px;
  width: 44px;
  height: 3px;
  background: var(--ink);
  content: "";
}

.page-loader__mark::before {
  left: -31px;
}

.page-loader__mark::after {
  right: -31px;
}

.page-loader__mark span {
  position: absolute;
  inset: 18px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
}

.page-loader p {
  margin: 0;
  font: 900 0.65rem/1 "Heebo", sans-serif;
}

@keyframes loader-pulse {
  to { transform: translateY(-9px) rotate(7deg); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.brand__copy { display: grid; gap: 0.08rem; }
.brand__copy small { font-size: 0.53rem; font-weight: 700; }
.brand__copy strong { font: 700 1rem/1.2 "Heebo", "Noto Sans SC", sans-serif; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.desktop-nav a {
  display: grid;
  min-width: 3.5rem;
  gap: 0.1rem;
  text-align: center;
}

.desktop-nav span {
  font-size: 0.78rem;
  font-weight: 900;
}

.desktop-nav small {
  color: var(--yellow-deep);
  font: 700 0.5rem/1 "Heebo", sans-serif;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover small,
.desktop-nav a:focus-visible small {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 58px;
  height: 58px;
  align-content: center;
  gap: 6px;
  justify-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
}

.menu-toggle span {
  width: 27px;
  height: 3px;
  background: var(--ink);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.menu-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 8rem 8vw 3rem;
  background: var(--yellow);
  visibility: hidden;
  clip-path: circle(0 at calc(100% - 40px) 40px);
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.18, 1), visibility 0s 0.7s;
}

.menu-panel.is-open {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 40px) 40px);
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.18, 1), visibility 0s;
}

.menu-panel > p {
  margin: 0;
  font: 900 1.2rem/1 "Heebo", sans-serif;
}

.menu-panel nav {
  align-self: center;
}

.menu-panel nav a {
  display: flex;
  align-items: baseline;
  border-bottom: 2px solid rgba(0, 0, 0, 0.24);
  padding: 0.35rem 0;
  font-size: 3.5rem;
  font-weight: 900;
}

.menu-panel nav span {
  width: 3.5rem;
  font: 900 0.65rem/1 "Heebo", sans-serif;
}

.menu-panel__github {
  justify-self: end;
  border-bottom: 2px solid;
  font-weight: 900;
}

.side-rail {
  position: fixed;
  z-index: 80;
  right: 0.8rem;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.55rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  transform: translateY(-45%);
}

.side-rail > a:first-child {
  color: var(--yellow-deep);
  font: italic 700 1rem/1 "Heebo", sans-serif;
}

.side-rail__mail {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0.9rem;
  writing-mode: horizontal-tb;
}

.copyright {
  position: fixed;
  z-index: 80;
  left: 0.9rem;
  top: 50%;
  margin: 0;
  font: 700 0.48rem/1 "Heebo", sans-serif;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: var(--paper);
}

.hero__watermark {
  position: absolute;
  z-index: 0;
  top: -8%;
  left: -2%;
  margin: 0;
  color: var(--mist);
  font: 700 clamp(8rem, 17vw, 17rem)/0.64 "Caveat", cursive;
  transform: rotate(-10deg);
}

.hero__eyebrow {
  position: absolute;
  z-index: 4;
  left: 2.1rem;
  top: 43%;
  margin: 0;
  color: #787878;
  font: 700 0.54rem/1 "Heebo", sans-serif;
  writing-mode: vertical-rl;
}

.hero__art {
  position: absolute;
  z-index: 2;
  top: 29%;
  left: 50%;
  width: min(56vw, 850px);
  height: 57%;
  transform: translateX(-50%);
}

.hero__art img,
.hero__art video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hero__video-poster {
  z-index: 0;
}

.hero__video {
  z-index: 1;
}

.hero__spark {
  position: absolute;
  z-index: 3;
  color: var(--yellow-deep);
  font-size: 2.2rem;
  animation: spin-slow 7s linear infinite;
}

.spark--one { top: 21%; left: 19%; }
.spark--two { right: 6%; bottom: 14%; font-size: 1.3rem; }

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.hero__satellite {
  position: absolute;
  z-index: 4;
  right: 9%;
  top: 28%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  font: 900 0.7rem/1 "Heebo", sans-serif;
}

.hero__title {
  position: absolute;
  z-index: 3;
  top: 17%;
  left: 29.5%;
  margin: 0;
  font-size: clamp(4.4rem, 6.7vw, 7rem);
  font-weight: 900;
  line-height: 0.98;
}

.hero__title > span {
  display: block;
}

.hero__title > span:nth-child(2) { margin-left: 0.48em; }
.hero__title > span:nth-child(3) { margin-left: 1.46em; }
.blue { color: var(--blue); }
.yellow { color: var(--yellow); }

.hero-news {
  position: absolute;
  z-index: 6;
  left: 9.5%;
  bottom: 4%;
  display: grid;
  width: 285px;
  grid-template-columns: auto 1fr;
  gap: 0.18rem 0.65rem;
  font-size: 0.68rem;
}

.hero-news i {
  grid-row: 1 / 3;
  color: var(--yellow-deep);
  font-size: 1.5rem;
  font-style: normal;
}

.hero-news time { font: 700 0.62rem/1.2 "Heebo", sans-serif; }
.hero-news span { text-decoration: underline; text-underline-offset: 0.22rem; }

.hero__planet {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.planet--yellow {
  left: -6%;
  bottom: -11%;
  width: 220px;
  height: 220px;
  background: var(--yellow);
}

.planet--blue {
  right: -4%;
  bottom: -20%;
  width: 370px;
  height: 310px;
  background: var(--blue);
}

.planet--blue i {
  position: absolute;
  inset: 25% 12%;
  border: 7px solid var(--paper);
  border-radius: 50%;
  transform: rotate(-19deg);
}

.scroll-hint {
  position: absolute;
  z-index: 6;
  right: 1.05rem;
  bottom: 7.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--yellow-deep);
  font: italic 700 0.72rem/1 "Heebo", sans-serif;
  writing-mode: vertical-rl;
}

.scroll-hint i { font-size: 1.2rem; font-style: normal; }

.intro-section {
  position: relative;
  display: grid;
  min-height: 92svh;
  grid-template-columns: minmax(300px, 0.85fr) minmax(330px, 1fr);
  gap: 8vw;
  align-items: center;
  overflow: hidden;
  padding: 9rem 22vw 9rem 12vw;
}

.intro-section__heading > p,
.fields__header > p,
.manifesto__copy > p:first-child,
.journal__header > p,
.about__copy > p:first-child,
.explore__header > p {
  margin: 0 0 1.2rem;
  color: var(--yellow-deep);
  font: 900 0.62rem/1.5 "Heebo", sans-serif;
}

.intro-section h2,
.fields__header h2,
.manifesto h2,
.about h2,
.explore h2 {
  margin: 0;
  font-size: clamp(3.5rem, 5.1vw, 5.7rem);
  font-weight: 900;
  line-height: 1.08;
}

.intro-section h2 b,
.fields__header h2 span,
.about h2 span {
  color: var(--yellow);
}

.intro-section__copy {
  padding-top: 4rem;
}

.intro-section__copy p {
  margin: 0 0 1.2rem;
  font-size: 0.86rem;
  line-height: 2.1;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
  font: 900 0.64rem/1 "Heebo", "Noto Sans SC", sans-serif;
}

.more-link i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid;
  border-radius: 50%;
  font-size: 0.9rem;
  font-style: normal;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.more-link:hover i,
.more-link:focus-visible i {
  background: var(--ink);
  color: var(--yellow);
  transform: translateX(4px);
}

.intro-section__ghost {
  position: absolute;
  left: 4%;
  bottom: 1%;
  margin: 0;
  color: var(--mist);
  font: 700 clamp(6rem, 12vw, 12rem)/1 "Caveat", cursive;
  transform: rotate(-7deg);
  white-space: nowrap;
}

.fields {
  position: relative;
  background: var(--paper);
}

.fields__header {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 104svh;
  align-content: center;
  justify-items: end;
  padding: 8rem 16vw 8rem 50vw;
  text-align: left;
}

.fields__header > p,
.fields__header > span,
.fields__header h2 {
  width: min(100%, 520px);
}

.fields__header > span {
  margin-top: 2rem;
  font-size: 0.78rem;
  line-height: 1.8;
}

.story-scroll {
  position: relative;
  background: var(--paper);
}

.story-pin {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

.story-pin > img {
  position: absolute;
  left: 50%;
  top: 51%;
  width: min(66vw, 980px);
  height: 83%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.story-pin__ghost {
  position: absolute;
  z-index: 0;
  left: -1%;
  top: 10%;
  margin: 0;
  color: var(--mist);
  font: 700 clamp(5.5rem, 10vw, 11rem)/0.68 "Caveat", cursive;
  transform: rotate(-8deg);
}

.story-pin__marker {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.24;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.story-pin__marker span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font: 900 0.55rem/1 "Heebo", sans-serif;
}

.story-pin__marker i {
  width: 38px;
  height: 2px;
  background: var(--ink);
}

.marker--roof { left: 59%; top: 17%; }
.marker--three { left: 61%; top: 36%; }
.marker--two { left: 63%; top: 53%; }
.marker--one { left: 61%; top: 70%; }

.story-pin[data-active="next"] .marker--roof,
.story-pin[data-active="paper"] .marker--three,
.story-pin[data-active="build"] .marker--two,
.story-pin[data-active="life"] .marker--one {
  opacity: 1;
  transform: translateX(8px);
}

.story-pin[data-active="next"] .marker--roof span,
.story-pin[data-active="paper"] .marker--three span,
.story-pin[data-active="build"] .marker--two span,
.story-pin[data-active="life"] .marker--one span {
  background: var(--yellow);
}

.story-chapters {
  position: relative;
  z-index: 2;
  margin-top: -100svh;
}

.story-chapter {
  --visibility: 0.08;
  position: relative;
  display: flex;
  min-height: 150svh;
  align-items: center;
  padding: 0 8vw;
  pointer-events: none;
}

.story-chapter--right {
  justify-content: flex-end;
}

.chapter-panel {
  position: relative;
  width: min(29vw, 390px);
  padding: 2.1rem 2.2rem 2.4rem;
  background: var(--mist);
  clip-path: polygon(2% 5%, 94% 0, 100% 12%, 97% 94%, 87% 100%, 4% 96%, 0 83%, 3% 18%);
  opacity: var(--visibility);
  pointer-events: auto;
  transform: translateY(calc((1 - var(--visibility)) * 34px));
  transition: opacity 0.18s linear, transform 0.18s linear;
}

.story-chapter--right .chapter-panel {
  clip-path: polygon(6% 0, 98% 5%, 100% 83%, 94% 98%, 9% 100%, 0 90%, 2% 11%);
}

.chapter-panel__number {
  margin: 0;
  color: #6f6f6f;
  font: 900 0.6rem/1 "Heebo", sans-serif;
}

.chapter-panel figure {
  width: 145px;
  height: 145px;
  margin: 1.2rem 0 1.4rem auto;
  overflow: hidden;
  border: 4px solid var(--paper);
  border-radius: 50%;
  outline: 2px solid var(--ink);
}

.chapter-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) saturate(0.72) contrast(1.05);
}

.chapter-panel h3 {
  margin: 0 0 1.1rem;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.1;
}

.chapter-panel > p:last-of-type {
  margin: 0;
  font-size: 0.8rem;
  line-height: 2;
}

.chapter-word {
  position: absolute;
  top: 24%;
  margin: 0;
  color: var(--yellow-deep);
  font: italic 900 3.5rem/1 "Heebo", sans-serif;
  opacity: var(--visibility);
  transform: rotate(-9deg);
}

.story-chapter--left .chapter-word { right: 6vw; }
.story-chapter--right .chapter-word { left: 6vw; }

.manifesto {
  position: relative;
  display: grid;
  min-height: 112svh;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  overflow: hidden;
  padding: 8rem 9vw;
  background: var(--ink);
  color: var(--paper);
}

.manifesto__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(72svh, 760px);
  overflow: hidden;
  background: var(--paper);
  clip-path: polygon(0 9%, 100% 0, 91% 94%, 7% 100%);
}

.manifesto__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.13);
  transform: scale(1.08);
}

.manifesto__copy {
  position: relative;
  z-index: 3;
  max-width: 35rem;
  margin-left: -3rem;
  padding: 3rem 0 3rem 5vw;
}

.manifesto h2 {
  font-size: clamp(3.4rem, 4.7vw, 5.3rem);
}

.manifesto h2 span { color: var(--yellow); }
.manifesto__copy > p:last-child { max-width: 28rem; margin: 2rem 0 0; font-size: 0.85rem; line-height: 2; }

.manifesto__script {
  position: absolute;
  z-index: 2;
  right: -2%;
  top: 4%;
  color: var(--yellow);
  font: 700 clamp(7rem, 13vw, 13rem)/1 "Caveat", cursive;
  opacity: 0.9;
  transform: rotate(-7deg);
}

.journal {
  position: relative;
  min-height: 112svh;
  overflow: hidden;
  padding: 9rem 0 8rem 10vw;
  background: var(--mist);
}

.journal::before {
  position: absolute;
  right: 4vw;
  top: 2rem;
  color: var(--paper);
  content: "NOTES";
  font: italic 900 12vw/1 "Heebo", sans-serif;
  transform: rotate(-6deg);
}

.journal__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 1.6rem;
}

.journal__header > p {
  position: absolute;
  top: -1.8rem;
}

.journal__header h2 {
  margin: 0;
  font: 900 clamp(4.5rem, 7vw, 7rem)/0.9 "Heebo", sans-serif;
}

.journal__header > span {
  padding-bottom: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.journal__tools {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: calc(100% - 10vw);
  justify-content: space-between;
  gap: 2rem;
  margin: 2.4rem 0 1.3rem;
}

.filters {
  display: flex;
  gap: 0.45rem;
}

.filter {
  min-width: 44px;
  height: 34px;
  border: 1px solid #a3a3a3;
  border-radius: 50%;
  padding: 0 0.7rem;
  background: transparent;
  font-size: 0.57rem;
  font-weight: 900;
}

.filter:hover,
.filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid #8b8b8b;
  font: 900 0.57rem/1 "Heebo", sans-serif;
}

.search input {
  width: 205px;
  border: 0;
  outline: 0;
  padding: 0.45rem 0;
  background: transparent;
}

.journal__viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0.8rem 0;
  cursor: grab;
}

.journal__viewport:active { cursor: grabbing; }
.article-track { display: flex; gap: 1.3rem; width: max-content; transition: transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1); }
.post-card { width: min(27vw, 375px); flex: 0 0 auto; background: var(--paper); }
.post-card.is-filtered { display: none; }
.post-card > a { display: block; padding: 0 0 1.5rem; }
.post-card__image { height: min(42svh, 390px); overflow: hidden; background: #e8e8e8; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.18) saturate(0.72); transition: transform 0.7s ease, filter 0.4s ease; }
.post-card:hover img { filter: grayscale(0) saturate(0.95); transform: scale(1.035); }
.post-card time { display: block; margin: 1rem 1.2rem 0; font: 700 0.6rem/1 "Heebo", sans-serif; }
.post-card h3 { min-height: 3.6rem; margin: 0.55rem 1.2rem; font-size: 1.18rem; line-height: 1.45; }
.post-card > a > p { min-height: 3.6rem; margin: 0 1.2rem; color: #666; font-size: 0.7rem; line-height: 1.75; }
.post-card > a > span { display: inline-block; margin: 0.9rem 1.2rem 0; border-bottom: 3px solid var(--yellow); font-size: 0.62rem; font-weight: 900; }
.empty-state { display: none; margin: 4rem 0; font-weight: 900; }
.empty-state.is-visible { display: block; }

.track-control {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: calc(100% - 10vw);
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.track-control button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1rem;
}

.track-control button:hover { background: var(--yellow); }
.track-control button:disabled { cursor: default; opacity: 0.28; }
.track-control > span { position: relative; width: 100%; height: 2px; overflow: hidden; background: #c9c9c9; }
.track-control i { position: absolute; left: 0; top: 0; width: 25%; height: 100%; background: var(--ink); transition: transform 0.6s ease; }

.about {
  position: relative;
  display: grid;
  min-height: 112svh;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  overflow: hidden;
  padding: 8rem 10vw;
  background: var(--paper);
}

.about__band {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54%;
  background: var(--yellow);
  clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%);
}

.about__copy {
  position: relative;
  z-index: 3;
  max-width: 35rem;
  align-self: end;
  margin-bottom: 8vh;
}

.about h2 { font-size: clamp(3.5rem, 4.8vw, 5.2rem); }
.about h2 span { color: var(--ink); }
.about__copy > p:nth-of-type(2) { max-width: 30rem; margin: 2rem 0 0; font-size: 0.85rem; line-height: 2; }

.about__art {
  position: relative;
  z-index: 2;
  height: min(77svh, 790px);
}

.about__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.explore {
  position: relative;
  min-height: 132svh;
  overflow: hidden;
  padding: 10rem 9vw;
  background: var(--paper);
}

.explore::before {
  position: absolute;
  right: -3%;
  top: 7%;
  color: var(--mist);
  content: "EXPLORE";
  font: italic 900 15vw/1 "Heebo", sans-serif;
  transform: rotate(-7deg);
}

.explore__header {
  position: relative;
  z-index: 4;
}

.explore h2 { font-size: clamp(3.8rem, 5.2vw, 5.8rem); }

.explore__building {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 3%;
  width: min(70vw, 1020px);
  height: 76%;
  object-fit: contain;
  transform: translateX(-50%);
}

.explore__links {
  position: absolute;
  z-index: 3;
  inset: 0;
}

.explore__links a {
  position: absolute;
  display: flex;
  width: 220px;
  min-height: 122px;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--mist);
  clip-path: polygon(9% 0, 91% 4%, 100% 32%, 95% 88%, 72% 100%, 10% 94%, 0 65%, 3% 19%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.explore__links a:hover,
.explore__links a:focus-visible {
  background: var(--yellow);
  transform: translateY(-6px);
}

.explore__links a:nth-child(1) { left: 9%; top: 47%; }
.explore__links a:nth-child(2) { right: 8%; top: 38%; }
.explore__links a:nth-child(3) { right: 13%; bottom: 8%; }
.explore__links b { font: 900 0.65rem/1 "Heebo", sans-serif; }
.explore__links span { display: grid; font-size: 1.1rem; font-weight: 900; }
.explore__links small { margin-top: 0.25rem; color: #757575; font: 700 0.54rem/1 "Heebo", sans-serif; }

.site-footer {
  position: relative;
  display: grid;
  min-height: 82svh;
  grid-template-columns: 1fr 0.7fr 0.8fr;
  gap: 7vw;
  align-content: center;
  padding: 8rem 9vw 5rem;
  overflow: hidden;
  background: var(--mist);
}

.site-footer::after {
  position: absolute;
  right: -8%;
  bottom: -31%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.footer__brand > p,
.footer__contact > p {
  margin: 0 0 1rem;
  color: var(--yellow-deep);
  font: 900 0.62rem/1 "Heebo", sans-serif;
}

.footer__brand h2 {
  margin: 0;
  font: 900 clamp(3.5rem, 5.5vw, 6rem)/0.84 "Heebo", sans-serif;
}

.footer__brand h2 span { color: var(--yellow-deep); }
.footer__nav { display: grid; align-content: center; }
.footer__nav a { display: flex; justify-content: space-between; border-bottom: 1px solid #b8b8b8; padding: 0.8rem 0; font-size: 0.78rem; font-weight: 700; }
.footer__nav span { color: #777; font: 700 0.54rem/1.4 "Heebo", sans-serif; }
.footer__contact { position: relative; z-index: 2; align-self: center; }
.footer__contact a { display: inline-block; border-bottom: 3px solid var(--yellow); font: 900 1.25rem/1.5 "Heebo", sans-serif; }
.footer__bottom { position: absolute; z-index: 2; right: 9vw; bottom: 2rem; left: 9vw; display: flex; justify-content: space-between; border-top: 1px solid #bcbcbc; padding-top: 1rem; font: 700 0.55rem/1 "Heebo", sans-serif; }

.page-top {
  position: fixed;
  z-index: 81;
  right: 0.7rem;
  bottom: 0.7rem;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 1.2rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.page-top:hover { background: var(--blue); color: var(--paper); }
.reveal { opacity: 0; transform: translateY(2rem); }
.reveal.is-visible { animation: reveal 0.85s both cubic-bezier(0.075, 0.82, 0.165, 1); }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 1.4rem; }
  .hero__art { top: 31%; left: 50%; width: 68vw; height: 63%; }
  .hero__title { left: 25%; }
  .intro-section { padding-right: 12vw; }
  .chapter-panel { width: min(34vw, 380px); }
  .story-pin > img { width: 74vw; }
  .manifesto { grid-template-columns: 1fr 0.9fr; padding-inline: 6vw; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .site-header { padding: 0 1rem; background: rgba(255, 255, 255, 0.96); pointer-events: none; }
  .brand, .menu-toggle { pointer-events: auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .brand__copy small { display: none; }
  .brand__copy strong { font-size: 0.92rem; }
  .side-rail, .copyright { display: none; }
  .menu-panel { padding: 7rem 1.4rem 2rem; }
  .menu-panel nav a { font-size: 2.6rem; }

  .hero { min-height: max(800px, 100svh); }
  .hero__watermark { top: 5%; left: -8%; font-size: 7rem; }
  .hero__eyebrow { display: none; }
  .hero__title { top: 14%; left: 11%; height: 44%; font-size: clamp(3.25rem, 12.8vw, 4rem); line-height: 1.03; writing-mode: vertical-rl; }
  .hero__title > span { display: inline; margin: 0 !important; }
  .hero__art { top: 34%; left: -10%; width: 120%; height: 61%; transform: none; }
  .hero__satellite { right: 13%; top: 35%; width: 42px; height: 42px; }
  .spark--one { top: 35%; left: 21%; }
  .spark--two { right: 11%; bottom: 20%; }
  .hero-news { left: 1.5rem; bottom: 2.4rem; width: calc(100% - 4.5rem); }
  .planet--yellow { left: -18%; bottom: 3%; width: 115px; height: 115px; }
  .planet--blue { right: -22%; bottom: -8%; width: 210px; height: 175px; }
  .scroll-hint { display: none; }

  .intro-section { min-height: 780px; grid-template-columns: 1fr; gap: 2.5rem; align-content: center; padding: 6rem 1.5rem; }
  .intro-section__copy { max-width: 36rem; padding-top: 0; }
  .intro-section h2, .manifesto h2, .about h2, .explore h2 { font-size: clamp(3rem, 11vw, 4.2rem); }
  .intro-section__ghost { left: -5%; font-size: 5rem; }

  .fields__header { min-height: 800px; justify-items: start; padding: 7rem 1.5rem; }
  .fields__header > p { width: auto; }
  .fields__header h2 { width: auto; height: 490px; font-size: clamp(3.4rem, 13vw, 4.4rem); writing-mode: vertical-rl; }
  .fields__header > span { width: 15rem; margin-left: auto; }
  .story-pin { display: none; }
  .story-chapters { margin-top: 0; background: var(--ink); }
  .story-chapter, .story-chapter--right { position: relative; display: block; min-height: 860px; padding: 5.5rem 1.4rem 0; overflow: hidden; background: var(--ink); color: var(--paper); }
  .story-chapter::before { position: absolute; z-index: 0; right: -20%; bottom: 0; left: -20%; height: 56%; background: var(--paper) url("./assets/hero-creative-building-v2.png") center bottom / contain no-repeat; content: ""; }
  .chapter-panel, .story-chapter--right .chapter-panel { position: relative; z-index: 2; width: min(100%, 420px); margin: 0 auto; padding: 1.6rem 1.7rem 2rem; color: var(--ink); opacity: 1 !important; transform: none !important; }
  .chapter-panel figure { width: 105px; height: 105px; margin: 0.7rem 0 0.8rem auto; }
  .chapter-panel h3 { font-size: 2.2rem; }
  .chapter-word { z-index: 3; right: 1.5rem !important; top: auto; bottom: 43%; left: auto !important; font-size: 2.7rem; opacity: 1; }

  .manifesto { min-height: 920px; grid-template-columns: 1fr; align-content: center; gap: 1.5rem; padding: 7rem 1.5rem; }
  .manifesto__image { height: 430px; }
  .manifesto__copy { margin: 0; padding: 0; }
  .manifesto__script { right: -10%; top: 5%; font-size: 6rem; }

  .journal { min-height: 900px; padding: 7rem 0 6rem 1.5rem; }
  .journal__header { display: block; }
  .journal__header h2 { font-size: 4.5rem; }
  .journal__header > span { display: block; margin-top: 0.55rem; }
  .journal__tools { max-width: calc(100% - 1.5rem); flex-direction: column; margin-top: 1.8rem; }
  .filters { overflow-x: auto; padding-bottom: 0.25rem; scrollbar-width: none; }
  .filter { flex: 0 0 auto; }
  .search input { width: 100%; }
  .post-card { width: 78vw; }
  .post-card__image { height: 340px; }
  .track-control { max-width: calc(100% - 1.5rem); }

  .about { min-height: 980px; grid-template-columns: 1fr; align-content: center; gap: 1rem; padding: 7rem 1.5rem 4rem; }
  .about__copy { align-self: auto; margin: 0; }
  .about__art { height: 470px; }
  .about__band { height: 48%; }

  .explore { min-height: 1050px; padding: 7rem 1.5rem; }
  .explore__building { bottom: 19%; width: 115%; height: 53%; }
  .explore__links { position: absolute; right: 1.5rem; bottom: 2rem; left: 1.5rem; top: auto; display: grid; gap: 0.6rem; }
  .explore__links a, .explore__links a:nth-child(n) { position: static; width: 100%; min-height: 64px; clip-path: none; padding: 0.75rem 1rem; border-bottom: 1px solid #bcbcbc; background: var(--mist); }

  .site-footer { min-height: 900px; grid-template-columns: 1fr; gap: 3.5rem; align-content: center; padding: 7rem 1.5rem 5rem; }
  .site-footer::after { right: -45%; bottom: -17%; width: 300px; height: 300px; }
  .footer__brand h2 { font-size: 4.2rem; }
  .footer__bottom { right: 1.5rem; left: 1.5rem; }
}

@media (max-width: 420px) {
  .brand__avatar { width: 42px; height: 42px; }
  .hero__title { left: 12%; font-size: 3.25rem; }
  .hero__art { top: 36%; height: 58%; }
  .fields__header h2 { font-size: 3.5rem; }
  .story-chapter, .story-chapter--right { min-height: 820px; }
  .chapter-panel { padding-inline: 1.25rem; }
  .post-card { width: 82vw; }
  .post-card__image { height: 315px; }
  .about__art { height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader { display: none; }
  .hero__video { display: none; }
  .reveal { opacity: 1; transform: none; }
  .chapter-panel, .chapter-word { opacity: 1; transform: none; }
}
