:root {
  --ink: #080b0d;
  --ink-soft: #10161a;
  --slate: #182126;
  --bone: #f0ede6;
  --bone-soft: #c7c4bd;
  --muted: #7d8588;
  --amber: #f2b44a;
  --amber-soft: #ffd98b;
  --sea: #77cdc7;
  --red: #e74d3c;
  --line: rgba(240, 237, 230, 0.14);
  --line-strong: rgba(240, 237, 230, 0.27);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --header-h: 5rem;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  color-scheme: dark;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scrollbar-color: var(--amber) var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  translate: 0 -160%;
  background: var(--bone);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.36;
  pointer-events: none;
}

.grain {
  position: fixed;
  z-index: 30;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
  animation: grain 0.2s steps(2) infinite;
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--amber);
}

.cursor {
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin: -1.125rem 0 0 -1.125rem;
  border: 1px solid rgba(242, 180, 74, 0.7);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease, background 0.25s ease, opacity 0.3s ease;
}

.cursor span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3px;
  height: 3px;
  translate: -50% -50%;
  border-radius: 50%;
  background: var(--amber);
}

.cursor.is-active {
  width: 4.5rem;
  height: 4.5rem;
  margin: -2.25rem 0 0 -2.25rem;
  background: rgba(242, 180, 74, 0.12);
}

.boot {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto auto;
  padding: var(--pad);
  background: #050708;
  color: var(--bone);
  transition: opacity 0.65s ease 0.12s, visibility 0.65s ease 0.12s;
}

.boot::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 auto;
  width: 1px;
  background: var(--line);
}

.boot__mark {
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  font-family: var(--display);
  font-size: clamp(5rem, 19vw, 17rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.boot__line {
  grid-column: 1 / -1;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.boot__line span {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: var(--amber);
  animation: boot-line 1.1s cubic-bezier(0.75, 0, 0.25, 1) forwards;
}

.boot__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 0.8rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.boot.is-done {
  visibility: hidden;
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  height: 4.3rem;
  border-color: var(--line);
  background: rgba(8, 11, 13, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
  font-family: var(--display);
  text-transform: uppercase;
}

.brand__monogram {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand__text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  justify-self: center;
}

.desktop-nav a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--bone-soft);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--amber);
  transition: transform 0.35s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 0 rgba(119, 205, 199, 0.5);
  animation: ping 2.2s infinite;
}

.local-time {
  color: var(--bone);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--ink);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.menu-panel__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: calc(var(--header-h) + 3rem) var(--pad) 2rem;
}

.menu-panel a {
  padding: 0.2em 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(3.2rem, 14vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-panel__foot {
  margin-top: auto;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.menu-open .menu-panel {
  visibility: visible;
  opacity: 1;
}

main {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--amber);
  font-family: var(--display);
  font-size: clamp(0.64rem, 0.8vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.65fr);
  min-height: 100svh;
  padding: calc(var(--header-h) + 3rem) var(--pad) 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  inset: 0 auto 0 64%;
  width: 1px;
  background: var(--line);
}

.hero::after {
  right: -12vw;
  bottom: -35vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(119, 205, 199, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(119, 205, 199, 0.018), 0 0 0 14vw rgba(119, 205, 199, 0.012);
}

.hero__index {
  position: absolute;
  top: calc(var(--header-h) + 1rem);
  right: var(--pad);
  left: var(--pad);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__copy {
  align-self: end;
  padding-right: clamp(1.5rem, 5vw, 6rem);
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.1rem, 13vw, 13.8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-transform: uppercase;
}

.title-row {
  display: block;
  overflow: hidden;
}

.title-row span {
  display: block;
  transform: translateY(115%);
  will-change: transform;
}

.is-ready .title-row span {
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-ready .title-row--mittelbach span {
  transition-delay: 0.1s;
}

.title-row--mittelbach {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--bone);
}

.hero__statement {
  display: grid;
  grid-template-columns: minmax(14rem, 26rem) auto;
  align-items: end;
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
}

.hero__statement p {
  max-width: 25rem;
  margin: 0;
  color: var(--bone-soft);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-style: italic;
  line-height: 1.35;
}

.circle-link {
  display: inline-grid;
  width: 6.1rem;
  height: 6.1rem;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.circle-link svg {
  width: 1rem;
  margin-top: -1.3rem;
}

.circle-link:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
}

.hero__instrument {
  position: relative;
  width: min(36vw, 34rem);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.instrument__coordinates {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 142%;
  justify-content: space-between;
  transform: translate(-50%, -50%);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
}

.instrument__orbit,
.instrument__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit--outer {
  width: 100%;
  height: 100%;
  animation: orbit 34s linear infinite;
}

.orbit--outer::before,
.orbit--outer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit--outer::before {
  inset: 4%;
  border: 1px dashed rgba(240, 237, 230, 0.12);
}

.orbit--outer::after {
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  translate: -50% 0;
  background: var(--amber);
  box-shadow: 0 0 20px rgba(242, 180, 74, 0.7);
}

.orbit--middle {
  width: 73%;
  height: 73%;
  border-color: rgba(119, 205, 199, 0.34);
  animation: orbit-reverse 24s linear infinite;
}

.orbit--middle::before,
.orbit--middle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid var(--sea);
  transform: translateY(-50%) rotate(45deg);
}

.orbit--middle::before { left: -4px; }
.orbit--middle::after { right: -4px; }

.orbit--inner {
  width: 43%;
  height: 43%;
  border-style: dashed;
  border-color: rgba(240, 237, 230, 0.2);
}

.orbit__label {
  position: absolute;
  padding: 0.4rem 0.7rem;
  background: var(--ink);
  color: var(--bone-soft);
  font-family: var(--display);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.label--one { top: 17%; right: 2%; transform: rotate(54deg); }
.label--two { bottom: 5%; left: 18%; transform: rotate(214deg); }
.label--three { top: 23%; left: -4%; transform: rotate(-52deg); }

.instrument__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--line);
}

.instrument__cross--x {
  width: 118%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.instrument__cross--y {
  width: 1px;
  height: 118%;
  transform: translate(-50%, -50%);
}

.instrument__needle {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 61%;
  height: 61%;
  transform: translate(-50%, -50%) rotate(-27deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.instrument__needle::before,
.instrument__needle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-right: 0.62rem solid transparent;
  border-left: 0.62rem solid transparent;
}

.instrument__needle::before {
  top: 0;
  border-bottom: 6.7rem solid var(--amber);
}

.instrument__needle::after {
  bottom: 0;
  border-top: 6.7rem solid rgba(240, 237, 230, 0.27);
}

.instrument__needle span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 1.15rem;
  height: 1.15rem;
  translate: -50% -50%;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--bone);
}

.instrument__core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 7rem;
  height: 7rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 11, 13, 0.9);
  font-family: var(--display);
  text-align: center;
}

.instrument__core span {
  color: var(--muted);
  font-size: 0.48rem;
  letter-spacing: 0.3em;
}

.instrument__core strong {
  font-size: 1.85rem;
  letter-spacing: -0.07em;
}

.instrument__pulse {
  width: 43%;
  height: 43%;
  border-color: var(--amber);
  animation: instrument-pulse 3s ease-out infinite;
}

.hero__side-note {
  position: absolute;
  right: 1.2rem;
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__side-note i {
  display: block;
  width: 1px;
  height: 3rem;
  overflow: hidden;
  background: var(--line-strong);
}

.hero__side-note i::after {
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  background: var(--amber);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--amber);
  color: var(--ink);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.5rem;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.marquee i {
  display: block;
  width: 0.38rem;
  height: 0.38rem;
  transform: rotate(45deg);
  border: 1px solid currentColor;
}

.section {
  position: relative;
  display: grid;
  grid-template-columns: clamp(4rem, 8vw, 8rem) 1fr;
  padding: clamp(7rem, 12vw, 12rem) var(--pad);
  border-bottom: 1px solid var(--line);
}

.section__rail {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.56rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section__rail span:first-child {
  color: var(--amber);
}

.manifest {
  min-height: 100svh;
  align-items: center;
}

.manifest__content {
  max-width: 82rem;
}

.manifest__title {
  max-width: 69rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.4vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.manifest__title .word {
  display: inline-block;
  opacity: 0.18;
  transition: opacity 0.7s ease, color 0.7s ease;
}

.manifest__title .word.is-lit {
  opacity: 1;
}

.manifest__body {
  display: grid;
  grid-template-columns: minmax(17rem, 31rem) auto;
  align-items: center;
  gap: clamp(2rem, 8vw, 9rem);
  margin-top: clamp(4rem, 8vw, 8rem);
  margin-left: min(25%, 18rem);
}

.manifest__body > p {
  margin: 0;
  color: var(--bone-soft);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.manifest__seal {
  position: relative;
  display: grid;
  width: clamp(7rem, 12vw, 10rem);
  aspect-ratio: 1;
  place-items: center;
}

.manifest__seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  animation: orbit 24s linear infinite;
}

.manifest__seal text {
  fill: var(--bone-soft);
  stroke: none;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 2px;
}

.manifest__seal > span {
  display: grid;
  width: 43%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--amber);
  border-radius: 50%;
  color: var(--amber);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
}

.worlds {
  background: rgba(5, 8, 9, 0.73);
}

.worlds__content {
  min-width: 0;
}

.worlds__head {
  display: grid;
  grid-template-columns: 1fr minmax(15rem, 26rem);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.section-title em,
.contact__title em {
  color: var(--amber);
  font-family: var(--serif);
  font-weight: 400;
}

.worlds__intro {
  margin: 0 0 0.5rem;
  color: var(--bone-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.world-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(19rem, 1.2fr);
  min-height: min(78svh, 48rem);
  margin-bottom: 1.3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.world-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle 18rem at var(--mx) var(--my), rgba(255, 255, 255, 0.09), transparent 68%);
  transition: opacity 0.35s ease;
}

.world-card:hover::before {
  opacity: 1;
}

.world-card__meta {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: rgba(240, 237, 230, 0.62);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.world-card__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 4vw, 4.5rem);
}

.world-card__copy h3 {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.world-card__copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin: 0;
  color: rgba(240, 237, 230, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link svg {
  width: 0.9rem;
  transition: transform 0.3s ease;
}

.text-link:hover svg {
  transform: translate(3px, -3px);
}

.world-card__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.world-card--windhook {
  background: #c6b689;
  color: #101719;
}

.world-card--windhook .eyebrow,
.world-card--windhook .world-card__copy > p:not(.eyebrow) {
  color: rgba(16, 23, 25, 0.68);
}

.world-card--windhook .world-card__meta {
  color: rgba(16, 23, 25, 0.55);
}

.visual--windhook {
  background: #172e35;
}

.sun-disc {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 28%;
  aspect-ratio: 1;
  translate: -50% 0;
  border-radius: 50%;
  background: var(--amber-soft);
  box-shadow: 0 0 7rem rgba(255, 217, 139, 0.26);
}

.horizon {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 29%;
  border: 1px solid rgba(240, 237, 230, 0.25);
  border-radius: 50%;
}

.horizon--one { bottom: 6%; transform: rotate(-3deg); }
.horizon--two { bottom: -2%; transform: rotate(2deg); }
.horizon--three { bottom: -11%; transform: rotate(-1deg); }

.visual__word {
  position: absolute;
  right: -0.05em;
  bottom: -0.1em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(7rem, 16vw, 17rem);
  font-weight: 800;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.24);
}

.world-card--fire {
  background: #4d1715;
}

.visual--fire {
  background: var(--red);
}

.signal-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  translate: -50% -50%;
}

.signal-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.47);
  border-radius: 50%;
  animation: signal-ring 3.2s ease-out infinite;
}

.signal-rings i:nth-child(2) { animation-delay: 1.05s; }
.signal-rings i:nth-child(3) { animation-delay: 2.1s; }

.visual__code {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-family: var(--display);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
}

.signal-line {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.signal-line::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -20%;
  width: 20%;
  height: 7px;
  background: #fff;
  filter: blur(2px);
  animation: signal-sweep 2.4s ease-in-out infinite;
}

.world-card--digital {
  background: #0e272b;
}

.visual--digital {
  background: #72c7c2;
  color: #082225;
}

.data-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: linear-gradient(rgba(8, 34, 37, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 34, 37, 0.5) 1px, transparent 1px);
  background-size: 3rem 3rem;
  transform: perspective(600px) rotateX(58deg) scale(1.6) translateY(12%);
}

.data-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  translate: -50% -50%;
  border: 1px solid currentColor;
  border-radius: 50%;
  animation: orbit 13s linear infinite;
}

.data-orbit::before,
.data-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.data-orbit::before { inset: 18%; }
.data-orbit::after { inset: 37%; background: currentColor; }

.data-orbit i {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  translate: 0 -50%;
  border-radius: 50%;
  background: var(--amber);
}

.visual__prompt {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  padding-top: 0.8rem;
  border-top: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.principles {
  min-height: 100svh;
  align-items: center;
}

.principles__content {
  min-width: 0;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 21rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  transition: color 0.4s ease, background 0.4s ease;
}

.principle:last-child {
  border-right: 0;
}

.principle:hover {
  background: var(--bone);
  color: var(--ink);
}

.principle__index {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--amber);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 800;
}

.principle h3 {
  margin: 6.5rem 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  letter-spacing: -0.05em;
}

.principle p {
  max-width: 19rem;
  margin: 0;
  color: var(--bone-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  transition: color 0.4s ease;
}

.principle:hover p {
  color: rgba(8, 11, 13, 0.68);
}

.contact {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--pad) 2rem;
  overflow: hidden;
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: clamp(3rem, 8vw, 8rem) clamp(3rem, 8vw, 8rem);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.contact__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9.5vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.contact__button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 1.4rem 2rem;
  border: 1px solid var(--amber);
  background: var(--amber);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease;
}

.contact__button svg {
  width: 1rem;
  transition: transform 0.3s ease;
}

.contact__button:hover {
  background: transparent;
  color: var(--amber);
}

.contact__button:hover svg {
  transform: translate(4px, -4px);
}

.contact__orb {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(72vw, 52rem);
  aspect-ratio: 1;
  place-items: center;
  translate: -50% -50%;
  color: rgba(240, 237, 230, 0.08);
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 19rem);
  font-weight: 800;
  letter-spacing: -0.1em;
}

.contact__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  translate: -50% -50%;
}

.ring--a { width: 100%; height: 100%; animation: orbit 36s linear infinite; }
.ring--b { width: 72%; height: 72%; border-style: dashed; animation: orbit-reverse 27s linear infinite; }
.ring--c { width: 42%; height: 42%; border-color: rgba(242, 180, 74, 0.3); }

.contact__ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  translate: 0 -50%;
  border-radius: 50%;
  background: var(--amber);
}

.contact__foot {
  position: absolute;
  right: var(--pad);
  bottom: 2rem;
  left: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__foot button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bone);
  font: inherit;
  cursor: pointer;
  text-transform: inherit;
}

.js .reveal,
.js .reveal-card {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal-card {
  transform: translateY(4rem) scale(0.985);
  transition-duration: 1.15s;
}

.js .reveal.is-visible,
.js .reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes boot-line { to { transform: translateX(0); } }
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2%, -3%); }
  50% { transform: translate(-3%, 2%); }
  75% { transform: translate(3%, 4%); }
  100% { transform: translate(-2%, -3%); }
}
@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes ping {
  65% { box-shadow: 0 0 0 7px rgba(119, 205, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(119, 205, 199, 0); }
}
@keyframes instrument-pulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.82); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.75); }
}
@keyframes scroll-line {
  0% { transform: translateY(-110%); }
  100% { transform: translateY(180%); }
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes signal-ring {
  0% { opacity: 0.8; transform: scale(0.18); }
  100% { opacity: 0; transform: scale(1); }
}
@keyframes signal-sweep {
  0%, 20% { left: -20%; }
  80%, 100% { left: 120%; }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header__status {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 5rem);
  }

  .hero::before {
    left: 50%;
  }

  .hero__copy {
    position: relative;
    z-index: 4;
    align-self: end;
    padding-right: 0;
  }

  .hero__instrument {
    position: absolute;
    top: 20%;
    right: -12vw;
    width: min(60vw, 32rem);
    opacity: 0.72;
  }

  .title-row--mittelbach {
    font-size: 0.81em;
  }

  .world-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .world-card__copy {
    min-height: 34rem;
  }

  .world-card__visual {
    min-height: 27rem;
  }

  .principle {
    min-height: 18rem;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 1.2rem;
    --header-h: 4.7rem;
  }

  .brand__text {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 4.5rem);
    padding-bottom: 2rem;
  }

  .hero__index {
    top: calc(var(--header-h) + 0.65rem);
  }

  .hero__title {
    font-size: clamp(4.55rem, 24vw, 7.3rem);
    line-height: 0.77;
  }

  .title-row--mittelbach {
    font-size: 0.58em;
    letter-spacing: -0.045em;
    line-height: 1;
  }

  .hero__statement {
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
    margin-top: 2.2rem;
  }

  .hero__statement p {
    font-size: 1rem;
  }

  .circle-link {
    width: 4.7rem;
    height: 4.7rem;
  }

  .circle-link span {
    display: none;
  }

  .circle-link svg {
    width: 1.15rem;
    margin: 0;
  }

  .hero__instrument {
    top: 19%;
    right: -31vw;
    width: 92vw;
    opacity: 0.48;
  }

  .instrument__needle::before { border-bottom-width: 4.9rem; }
  .instrument__needle::after { border-top-width: 4.9rem; }
  .instrument__core { width: 5.5rem; height: 5.5rem; }
  .instrument__core strong { font-size: 1.45rem; }
  .hero__side-note { display: none; }

  .section {
    grid-template-columns: 1fr;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .section__rail {
    flex-direction: row;
    margin-bottom: 2rem;
    writing-mode: initial;
  }

  .manifest {
    min-height: auto;
  }

  .manifest__title {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .manifest__body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-left: 0;
  }

  .manifest__seal {
    width: 7.5rem;
    justify-self: end;
  }

  .worlds__head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .world-card__meta {
    right: 1rem;
    left: 1rem;
  }

  .world-card__copy {
    min-height: 31rem;
    padding: 6rem 1.35rem 2.3rem;
  }

  .world-card__copy h3 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .world-card__visual {
    min-height: 20rem;
  }

  .principles {
    min-height: auto;
  }

  .principles__grid {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .principle {
    min-height: 15rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    margin-top: 3.5rem;
  }

  .contact {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .contact__title {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .contact__foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    text-align: left;
  }

  .contact__foot span:nth-child(2) {
    display: none;
  }

  .cursor {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
  .world-card::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .field, .cursor, .grain { display: none; }
  .title-row span { transform: none; }
  .js .reveal, .js .reveal-card { opacity: 1; transform: none; }
  .manifest__title .word { opacity: 1; }
}
