:root {
  color-scheme: dark;
  --background: #050505;
  --background-soft: #0a0a0a;
  --panel: #111111;
  --text: #f2f0ea;
  --muted: #8c8c8c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --red: #8b1e1e;
  --gold: #b08d57;
  --max-width: 1120px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, Helvetica, Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    var(--background);
  background-size: 100% 96px, 96px 100%, auto;
  font-family: var(--sans);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.35), var(--background) 72%),
    linear-gradient(90deg, rgba(139, 30, 30, 0.14), transparent 26%, transparent 74%, rgba(176, 141, 87, 0.08));
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: screen;
}

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

a {
  color: inherit;
}

::selection {
  color: var(--background);
  background: var(--text);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 10px 14px;
  color: var(--background);
  background: var(--text);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-block {
  width: min(100% - 40px, var(--max-width));
  min-height: 100svh;
  margin: 0 auto;
  padding: 120px 0;
}

.hero {
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-inner {
  width: min(100%, 820px);
}

.logo-lockup {
  display: grid;
  place-items: center;
  min-height: 122px;
  margin-bottom: 44px;
}

.logo-image {
  width: min(360px, 72vw);
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.62));
}

.logo-wordmark {
  display: none;
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

.logo-image.is-missing {
  display: none;
}

.logo-image.is-missing + .logo-wordmark {
  display: block;
}

.dates,
.eyebrow {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-title,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 9px;
  font-size: 4rem;
  line-height: 1.03;
}

.hero-line {
  margin: 52px 0 0;
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1.2;
}

.text-center {
  display: grid;
  place-items: center;
  text-align: center;
}

.section-copy {
  width: min(100%, 780px);
  margin: 0 auto;
}

.section-copy.narrow {
  width: min(100%, 660px);
}

.section-copy h2,
.platform-copy h2,
.ending-copy h2 {
  margin-bottom: 40px;
  font-size: 3.1rem;
  line-height: 1.08;
}

.section-copy p,
.platform-copy p,
.ending-copy p {
  margin: 0 auto 28px;
  color: var(--text);
  font-size: 1.12rem;
}

.section-copy p:last-child,
.platform-copy p:last-child,
.ending-copy p:last-child {
  margin-bottom: 0;
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 80px;
  align-items: center;
}

.platform-copy {
  max-width: 680px;
}

.archive-window {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 240, 234, 0.07), transparent 26%),
    linear-gradient(135deg, rgba(139, 30, 30, 0.16), transparent 48%),
    var(--background-soft);
  overflow: hidden;
}

.archive-window::before,
.archive-window::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.archive-window::before {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 26px,
      rgba(255, 255, 255, 0.065) 26px,
      rgba(255, 255, 255, 0.065) 28px
    );
  opacity: 0.25;
}

.archive-window::after {
  border: 18px solid rgba(5, 5, 5, 0.5);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.72);
}

.archive-line {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(242, 240, 234, 0.42), transparent);
}

.archive-years {
  position: absolute;
  inset: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(242, 240, 234, 0.72);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.archive-years span:last-child {
  align-self: flex-end;
  color: rgba(176, 141, 87, 0.82);
}

.ecosystem {
  padding-top: 148px;
}

.ecosystem > .section-copy {
  margin-bottom: 56px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ecosystem-card {
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.72);
}

.ecosystem-card h3 {
  margin-bottom: 34px;
  font-size: 2.1rem;
  line-height: 1.1;
}

.ecosystem-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.98rem;
  list-style: none;
}

.ecosystem-card li {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ending {
  display: grid;
  align-items: center;
}

.ending-copy {
  width: min(100%, 820px);
}

.ending-copy h2 {
  font-size: 4rem;
}

.ending-copy p {
  margin-top: 42px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.2;
}

.outro {
  min-height: 74svh;
}

.outro h2 {
  margin-bottom: 30px;
  font-size: 5.2rem;
  line-height: 0.95;
}

.outro p {
  color: var(--text);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.45;
}

.site-footer {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 0 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

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

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

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

@media (max-width: 900px) {
  .section-block {
    width: min(100% - 32px, var(--max-width));
    min-height: auto;
    padding: 104px 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-line {
    font-size: 1.8rem;
  }

  .section-copy h2,
  .platform-copy h2,
  .ending-copy h2 {
    font-size: 2.45rem;
  }

  .platform {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .archive-window {
    min-height: 360px;
  }

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

  .ecosystem-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    background-size: 100% 72px, 72px 100%, auto;
  }

  .section-block {
    width: min(100% - 28px, var(--max-width));
    padding: 86px 0;
  }

  .logo-lockup {
    margin-bottom: 36px;
  }

  .logo-wordmark {
    font-size: 3.6rem;
  }

  .dates,
  .eyebrow {
    margin-bottom: 24px;
    font-size: 0.72rem;
    letter-spacing: 0.19em;
  }

  .hero-title {
    gap: 7px;
    font-size: 2.45rem;
  }

  .hero-line {
    margin-top: 42px;
    font-size: 1.55rem;
  }

  .section-copy h2,
  .platform-copy h2,
  .ending-copy h2 {
    margin-bottom: 34px;
    font-size: 2rem;
  }

  .section-copy p,
  .platform-copy p,
  .ending-copy p {
    font-size: 1rem;
  }

  .archive-years {
    inset: 26px;
    font-size: 2.25rem;
  }

  .ecosystem {
    padding-top: 100px;
  }

  .ecosystem-card {
    padding: 28px;
  }

  .ecosystem-card h3 {
    font-size: 1.75rem;
  }

  .ending-copy p,
  .outro p {
    font-size: 1.55rem;
  }

  .outro h2 {
    font-size: 3.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
