:root {
  --black: #060606;
  --black-soft: #101010;
  --panel: #151515;
  --silver: #c8c4bd;
  --silver-dark: #827d73;
  --white: #f6f6f4;
  --muted: #aaa7a1;
  --line: rgba(255,255,255,.14);
  --warm: #9e978b;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: .045;
  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='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  width: 460px;
  height: 460px;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 67%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 88px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: .35s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo-image {
  width: 150px;
  height: 54px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav { display: flex; gap: 34px; }

.desktop-nav a,
.header-cta {
  font-size: 13px;
  color: #d8d5d0;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.header-cta:hover { color: white; }

.header-cta {
  justify-self: end;
  border-bottom: 1px solid var(--silver-dark);
  padding-bottom: 4px;
}

.menu-toggle,
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px max(5vw, calc((100vw - var(--max))/2)) 100px;
  background:
    radial-gradient(circle at 73% 45%, rgba(255,255,255,.08), transparent 21%),
    linear-gradient(145deg, #111 0%, #050505 62%);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.15) 60%, rgba(0,0,0,.4));
}

.metal-wave {
  position: absolute;
  width: 120%;
  height: 34%;
  left: -10%;
  border-radius: 50%;
  border-top: 1px solid rgba(255,255,255,.14);
  transform: rotate(-8deg);
  opacity: .75;
}

.wave-a {
  bottom: -12%;
  background: linear-gradient(180deg, rgba(255,255,255,.12), transparent 45%);
}

.wave-b {
  bottom: -18%;
  left: -3%;
  transform: rotate(-4deg);
  border-top-color: rgba(159,153,142,.55);
}

.wave-c {
  top: -25%;
  left: 12%;
  transform: rotate(-13deg);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.kicker,
.section-number,
.section-kicker {
  color: var(--silver);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
}

.hero h1,
h2 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -.055em;
}

.hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(56px, 7.6vw, 112px);
  line-height: .93;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff, #8c877d 50%, #f0efeb);
  -webkit-background-clip: text;
  background-clip: text;
}

.intro {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.button-light {
  color: #080808;
  background: linear-gradient(135deg, #fff, #aaa59b);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.button-dark {
  color: white;
  background: #080808;
}

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

.hero-symbol {
  position: absolute;
  z-index: 3;
  right: 8vw;
  top: 50%;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateY(-48%);
}

.hero-logo-image {
  width: 62%;
  height: 62%;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(255,255,255,.16))
    drop-shadow(0 0 55px rgba(255,255,255,.08));
  animation: logoFloat 5.5s ease-in-out infinite;
}

.symbol-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
}

.ring-one { animation: spin 26s linear infinite; }

.ring-two {
  inset: 13%;
  border-style: dashed;
  animation: spinReverse 18s linear infinite;
}

.symbol-ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px white;
}

.ring-one::after { top: 13%; left: 18%; }
.ring-two::after { bottom: 8%; right: 25%; }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 5vw;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #77736d;
  font-size: 10px;
  letter-spacing: .16em;
}

.scroll-hint i {
  width: 60px;
  height: 1px;
  background: #373737;
  position: relative;
  overflow: hidden;
}

.scroll-hint i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  animation: sweep 2s infinite;
}

.section-shell {
  max-width: var(--max);
  margin: auto;
  padding: 125px 24px;
}

.section-number { margin-bottom: 52px; }

.two-column,
.world-info {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 9vw;
}

h2 {
  margin: 16px 0 0;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1.02;
}

.body-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.body-copy p {
  margin-top: 0;
  margin-bottom: 22px;
}

.highlight { color: #e2dfd9; }

.ticker {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 100px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 18px 0;
  animation: ticker 24s linear infinite;
  color: #a29e97;
  font: 600 13px "Montserrat", sans-serif;
  letter-spacing: .17em;
}

.ticker-track b { color: white; }

.world-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #151515, #0b0b0b);
}

.world-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 26%, rgba(255,255,255,.15), transparent 18%),
    linear-gradient(180deg, #202020, #0d0d0d 65%);
}

.moon {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  right: 12%;
  top: 10%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.78), transparent 3%),
    radial-gradient(circle at 38% 33%, #dedcd7, #8b867d 48%, #3c3935 74%);
  box-shadow:
    -20px 35px 100px rgba(255,255,255,.08),
    inset -70px -55px 80px rgba(0,0,0,.62);
}

.landscape {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -20%;
  height: 55%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #4f4b45, #090909 70%);
  box-shadow: 0 -18px 70px rgba(255,255,255,.07);
}

.scanlines {
  position: absolute;
  inset: 0;
  opacity: .15;
  background: repeating-linear-gradient(180deg, transparent 0 4px, rgba(255,255,255,.05) 5px);
}

.status {
  position: absolute;
  left: 30px;
  bottom: 26px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  font-size: 10px;
  letter-spacing: .14em;
}

.status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 12px white;
}

.world-info { padding: 58px; }
.world-info .body-copy { padding-top: 28px; }

.inline-link {
  display: inline-flex;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.section-heading > p {
  max-width: 310px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.value-card {
  position: relative;
  min-height: 380px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  transition: transform .35s ease, border-color .35s ease;
}

.value-card::before {
  content: attr(data-label);
  position: absolute;
  right: 26px;
  top: 24px;
  color: #67635d;
  font-size: 11px;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  filter: blur(30px);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.34);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--silver);
  font-size: 22px;
}

.value-card h3 {
  margin-top: 145px;
  margin-bottom: 14px;
  font: 600 27px "Montserrat", sans-serif;
}

.value-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.join {
  max-width: calc(var(--max) - 48px);
  margin: 20px auto 100px;
  border-radius: 30px;
  overflow: hidden;
  color: #0b0b0b;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.55), transparent 25%),
    linear-gradient(135deg, #f4f3ef, #b4afa5 60%, #7f796f);
}

.join-inner {
  min-height: 670px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 7vw;
  align-items: center;
}

.join .section-kicker { color: #49453f; }

.join-copy > p:not(.section-kicker) {
  max-width: 600px;
  color: #393632;
  line-height: 1.8;
}

.role-list {
  border-top: 1px solid rgba(0,0,0,.28);
}

.role-list a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid rgba(0,0,0,.24);
  transition: padding .2s ease, background .2s ease;
}

.role-list a:hover {
  padding: 0 14px;
  background: rgba(255,255,255,.18);
}

.role-list span { font-size: 11px; }
.role-list strong { font-size: 17px; }

.site-footer {
  max-width: var(--max);
  margin: auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-image {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand strong {
  color: white;
  letter-spacing: .14em;
}

.footer-brand p { margin: 5px 0 0; }

.footer-links {
  display: flex;
  gap: 22px;
}

.site-footer > p { justify-self: end; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .85s ease,
    transform .85s cubic-bezier(.2,.7,.2,1);
}

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

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

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

@keyframes logoFloat {
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

@keyframes sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

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

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

  .desktop-nav,
  .header-cta { display: none; }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: white;
    transition: .25s;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 45;
    inset: 70px 0 auto 0;
    padding: 24px 5vw;
    background: rgba(5,5,5,.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu.open { display: flex; }

  .hero-symbol {
    opacity: .46;
    right: -12vw;
    width: 62vw;
  }

  .two-column,
  .world-info,
  .join-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .value-grid { grid-template-columns: 1fr; }

  .value-card { min-height: 290px; }

  .value-card h3 { margin-top: 85px; }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer > p { justify-self: start; }
}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .brand-logo-image {
    width: 120px;
    height: 46px;
  }

  .hero { padding: 125px 22px 90px; }

  .hero h1 { font-size: clamp(48px, 15vw, 72px); }

  .intro { font-size: 16px; }

  .hero-symbol {
    top: 40%;
    width: 82vw;
    right: -32vw;
  }

  .hero-logo-image {
    width: 68%;
    height: 68%;
  }

  .hero-actions .button { width: 100%; }

  .scroll-hint { left: 22px; }

  .section-shell { padding: 95px 20px; }

  .world-image { min-height: 390px; }

  .moon {
    width: 290px;
    height: 290px;
    right: -2%;
  }

  .world-info { padding: 32px 24px; }

  .join {
    margin: 0 12px 70px;
    border-radius: 22px;
  }

  .join-inner { padding: 54px 24px; }

  .role-list a { min-height: 72px; }

  .site-footer { padding: 0 20px 40px; }
}

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