:root {
  --ink: #050608;
  --ink-soft: #0b0d11;
  --ink-raised: #11141a;
  --paper: #eee9df;
  --paper-soft: #c9c4ba;
  --muted: #94918b;
  --gold: #c6a85f;
  --gold-bright: #e2c77e;
  --gold-dark: #76602f;
  --line: rgba(220, 204, 164, 0.2);
  --line-light: rgba(255, 255, 255, 0.1);
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 74px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.gtm-noscript {
  display: none;
  visibility: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--gold-bright);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 4, 6, 0.9), transparent);
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line-light);
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 3;
  display: flex;
  width: 160px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0 10px 10px;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle-lines {
  display: grid;
  width: 25px;
  gap: 6px;
}

.menu-toggle-lines i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 240ms var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: calc(var(--header-height) + 52px) 20px 40px;
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 168, 95, 0.13), transparent 30%),
    var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 240ms ease, transform 320ms var(--ease);
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  display: flex;
  min-height: 66px;
  border-bottom: 1px solid var(--line-light);
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 7vw, 2.6rem);
}

.main-nav .nav-highlight {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: relative;
  width: 100%;
  height: 54svh;
  min-height: 390px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 26%;
  filter: grayscale(1) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 58svh;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.35) 0%, transparent 24%, transparent 58%, var(--ink) 98%),
    linear-gradient(90deg, rgba(3, 4, 5, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 26px;
  padding-bottom: 108px;
}

.eyebrow,
.kicker,
.card-meta {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 13vw, 5.9rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 4vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(5, 6, 8, 0.24);
  color: var(--paper);
}

.button-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: #fff;
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-foot span {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.hero-foot span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.scroll-cue {
  display: none;
}

.greek-line {
  position: relative;
  z-index: 4;
  height: 62px;
  overflow: hidden;
  border-block: 1px solid rgba(198, 168, 95, 0.22);
  background: #07090c;
}

.greek-line div {
  position: absolute;
  inset: 0 auto 0 0;
  width: 260%;
  background-image: url("../images/greekShapeLine.png");
  background-position: left center;
  background-repeat: repeat-x;
  background-size: auto 47px;
  opacity: 0.66;
  animation: greek-flow 80s linear infinite;
}

@keyframes greek-flow {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding-block: clamp(84px, 14vw, 168px);
}

.section-label {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 38px;
  color: var(--gold-dark);
}

.section-label span {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-size: 0.58rem;
  font-weight: 800;
}

.section-label p {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label.light {
  color: var(--gold-bright);
}

.manifesto {
  background: var(--paper);
  color: #161719;
}

.manifesto-copy h2,
.section-heading h2,
.trajectory-copy h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 9vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.manifesto-copy .kicker {
  color: #725c28;
}

.body-copy {
  margin: 30px 0 0;
  color: #53504a;
  font-size: clamp(1rem, 3vw, 1.16rem);
  line-height: 1.85;
}

.universes {
  background:
    radial-gradient(circle at 90% 5%, rgba(198, 168, 95, 0.08), transparent 24%),
    var(--ink-soft);
}

.section-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 800px;
}

.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.universe-grid {
  border-top: 1px solid var(--line-light);
}

.universe-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  min-height: 260px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: start;
  isolation: isolate;
}

.universe-card::before {
  position: absolute;
  inset: 0 -20px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(198, 168, 95, 0.12), transparent 72%);
  content: "";
  opacity: 0;
  transform: scaleX(0.97);
  transition: opacity 220ms ease, transform 360ms var(--ease);
}

.universe-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.card-number {
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.universe-card h3 {
  max-width: 640px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 6vw, 2.35rem);
  font-weight: 400;
  line-height: 1.12;
}

.universe-card p:not(.card-meta) {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 280ms var(--ease);
}

.universe-card:hover .card-arrow {
  transform: translate(4px, -4px);
}

.trajectory {
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(15, 20, 29, 0.92), rgba(4, 5, 7, 0.97)),
    var(--ink);
}

.trajectory-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(198, 168, 95, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.trajectory-orbit::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(198, 168, 95, 0.08);
  border-radius: inherit;
  content: "";
}

.orbit-left {
  top: -260px;
  left: -270px;
}

.orbit-right {
  right: -300px;
  bottom: -250px;
}

.trajectory-copy {
  position: relative;
  z-index: 2;
}

.trajectory-copy h2 {
  max-width: 880px;
}

.trajectory-columns .body-copy {
  color: #aaa69e;
}

.proof-grid {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line-light);
  align-items: center;
}

.proof-item:last-child {
  border-bottom: 0;
}

.proof-item strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.proof-item span {
  color: var(--paper-soft);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 36px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold-dark);
  align-items: center;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.two-worlds {
  background: var(--paper);
  color: #17181a;
}

.two-worlds .kicker,
.explore .kicker {
  color: #725c28;
}

.section-heading.compact {
  margin-bottom: 40px;
}

.world-grid {
  display: grid;
}

.world-panel {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 34px 28px;
  overflow: hidden;
  align-items: flex-end;
  color: var(--paper);
}

.world-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  transition: transform 700ms var(--ease);
}

.world-panel:hover::before {
  transform: scale(1.04);
}

.world-business::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 7, 13, 0.86) 72%),
    radial-gradient(circle at 72% 18%, #2a4d64, transparent 32%),
    linear-gradient(135deg, #0e1821, #06090d);
}

.world-holistic::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(18, 11, 3, 0.87) 72%),
    radial-gradient(circle at 70% 18%, #756036, transparent 31%),
    linear-gradient(135deg, #251d10, #090704);
}

.world-panel > div,
.world-index {
  position: relative;
  z-index: 2;
}

.world-index {
  position: absolute;
  top: 22px;
  right: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 1;
}

.world-panel h3 {
  max-width: 580px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.world-panel div > p:not(.card-meta) {
  max-width: 520px;
  margin: 20px 0 28px;
  color: rgba(238, 233, 223, 0.72);
  font-size: 0.92rem;
}

.world-panel .button {
  width: 100%;
}

.explore {
  background: #e5dfd4;
  color: #17181a;
}

.explore-grid {
  border-top: 1px solid rgba(20, 20, 20, 0.18);
}

.explore-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  padding-block: 26px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.18);
  align-items: center;
  transition: color 180ms ease, padding 280ms var(--ease);
}

.explore-link span {
  grid-column: 1;
  color: #6b665d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.explore-link strong {
  grid-column: 1;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 400;
}

.explore-link i {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #80682f;
  font-size: 1.45rem;
  font-style: normal;
  transition: transform 240ms var(--ease);
}

.explore-link:hover {
  color: #7a6129;
  padding-left: 10px;
}

.explore-link:hover i {
  transform: translateX(5px);
}

.egyptian-divider {
  height: clamp(74px, 12vw, 116px);
  border-block: 1px solid rgba(198, 168, 95, 0.15);
  background-color: #08090b;
  background-image: url("../images/pattern-egyptian.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 82%;
}

.site-footer {
  padding: 74px 0 26px;
  background: #030405;
}

.footer-grid {
  display: grid;
  gap: 44px;
}

.footer-brand img {
  width: min(270px, 76vw);
  height: auto;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-nav,
.footer-social {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav a,
.footer-social a {
  width: fit-content;
  color: var(--paper-soft);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-social a:hover,
.footer-base a:hover {
  color: var(--gold-bright);
}

.footer-base {
  display: grid;
  gap: 14px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: #6e6e6b;
  font-size: 0.66rem;
  line-height: 1.6;
}

.footer-base p {
  margin: 0;
}

.footer-base > a {
  width: fit-content;
}

.cookie-banner {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 200;
  display: grid;
  gap: 14px;
  max-width: 450px;
  padding: 18px;
  border: 1px solid rgba(198, 168, 95, 0.32);
  background: rgba(8, 10, 13, 0.95);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.cookie-banner p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.cookie-banner button {
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 750ms ease, transform 900ms var(--ease);
}

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

@media (min-width: 540px) {
  :root {
    --shell: min(1180px, calc(100vw - 64px));
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    min-width: 210px;
  }

  .cookie-banner {
    right: 20px;
    bottom: 20px;
    left: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cookie-banner button {
    min-width: 102px;
  }
}

@media (min-width: 700px) {
  :root {
    --header-height: 82px;
  }

  .brand {
    width: 188px;
  }

  .hero {
    display: flex;
    min-height: 900px;
    align-items: flex-end;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    inset: 0;
    height: auto;
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(3, 4, 6, 0.3) 0%, transparent 25%, rgba(3, 4, 6, 0.18) 48%, rgba(3, 4, 6, 0.96) 96%),
      linear-gradient(90deg, rgba(3, 4, 6, 0.94) 0%, rgba(3, 4, 6, 0.68) 43%, rgba(3, 4, 6, 0.06) 78%);
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 118px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(4.3rem, 9.2vw, 6.3rem);
  }

  .hero-lead {
    max-width: 540px;
  }

  .hero-foot {
    max-width: 670px;
  }

  .scroll-cue {
    position: absolute;
    right: 32px;
    bottom: 38px;
    z-index: 4;
    display: flex;
    gap: 14px;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(-100%);
    transform-origin: right bottom;
  }

  .scroll-cue i {
    position: relative;
    display: block;
    width: 56px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
  }

  .scroll-cue i::after {
    position: absolute;
    inset: 0;
    background: var(--gold);
    content: "";
    transform: translateX(-100%);
    animation: scroll-line 2.2s ease-in-out infinite;
  }

  @keyframes scroll-line {
    50%, 100% { transform: translateX(100%); }
  }

  .manifesto-grid,
  .trajectory-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 54px;
  }

  .section-label {
    align-self: start;
    margin: 8px 0 0;
  }

  .manifesto-copy .body-copy {
    max-width: 680px;
    margin-left: auto;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: end;
  }

  .universe-card {
    grid-template-columns: 52px 1fr auto;
    min-height: 230px;
    padding: 38px 12px;
  }

  .trajectory-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }

  .trajectory-columns .body-copy {
    margin-top: 38px;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-item {
    display: block;
    min-height: 168px;
    padding: 30px 24px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .proof-item:last-child {
    border-right: 0;
  }

  .proof-item strong,
  .proof-item span {
    display: block;
  }

  .proof-item strong {
    margin-bottom: 18px;
    font-size: 2.65rem;
  }

  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-panel {
    min-height: 640px;
    padding: 48px 42px;
  }

  .world-panel .button {
    width: auto;
  }

  .explore-link {
    grid-template-columns: 180px 1fr auto;
    gap: 24px;
    padding-block: 30px;
  }

  .explore-link span,
  .explore-link strong,
  .explore-link i {
    grid-row: 1;
  }

  .explore-link span {
    grid-column: 1;
  }

  .explore-link strong {
    grid-column: 2;
  }

  .explore-link i {
    grid-column: 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 150px 150px;
    gap: 60px;
  }

  .footer-base {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    background: linear-gradient(180deg, rgba(3, 4, 6, 0.78), transparent);
  }

  .brand {
    width: 204px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 34px;
    padding: 0;
    background: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    position: relative;
    min-height: auto;
    padding-block: 8px;
    border: 0;
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 280ms var(--ease);
  }

  .main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 4, 6, 0.18) 0%, transparent 42%, rgba(3, 4, 6, 0.64) 100%),
      linear-gradient(90deg, rgba(3, 4, 6, 0.98) 0%, rgba(3, 4, 6, 0.84) 31%, rgba(3, 4, 6, 0.2) 60%, transparent 82%);
  }

  .hero-content {
    display: flex;
    min-height: 100svh;
    padding-top: 150px;
    padding-bottom: 78px;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1 {
    width: min(60vw, 790px);
    font-size: clamp(5rem, 7vw, 7rem);
  }

  .hero-lead {
    max-width: 570px;
    font-size: 1.12rem;
  }

  .hero-foot {
    max-width: 730px;
    margin-top: 54px;
  }

  .section-heading {
    margin-bottom: 68px;
  }

  .universe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .universe-card {
    min-height: 330px;
    padding: 42px 38px;
    border-right: 1px solid var(--line-light);
  }

  .universe-card:nth-child(even) {
    border-right: 0;
  }

  .universe-card::before {
    inset: 0;
  }

  .trajectory-orbit {
    width: 660px;
    height: 660px;
  }

  .orbit-left {
    top: -390px;
    left: -420px;
  }

  .orbit-right {
    right: -440px;
    bottom: -420px;
  }

  .world-panel {
    min-height: 700px;
    padding: 58px 54px;
  }

  .world-index {
    top: 34px;
    right: 44px;
    font-size: 6.2rem;
  }

  .site-footer {
    padding-top: 92px;
  }
}

@media (min-width: 1380px) {
  .hero-media img {
    object-position: 54% center;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
