:root {
  color-scheme: light;
  --ink: #160c28;
  --deep: #473d5a;
  --mid: #706389;
  --mist: #d6cde6;
  --white: #ffffff;
  --blue: #4dafeb;
  --blue-soft: rgba(77, 175, 235, 0.16);
  --mist-soft: rgba(214, 205, 230, 0.18);
  --ink-soft: rgba(22, 12, 40, 0.68);
  --white-soft: rgba(255, 255, 255, 0.7);
  --line-light: rgba(22, 12, 40, 0.14);
  --line-dark: rgba(214, 205, 230, 0.2);
  --display: "Avenir Next", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 8vw, 1440px);
  margin: 0 auto;
  padding: 2rem 0;
  color: var(--white);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.wordmark-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.wordmark-mark i {
  display: block;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--blue);
}

.wordmark-mark i:nth-child(2) {
  background: var(--mist);
}

.wordmark-mark i:nth-child(3) {
  background: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 3rem);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.site-nav > a:not(.status-pill) {
  color: var(--white-soft);
  transition: color 180ms ease;
}

.site-nav > a:not(.status-pill):hover {
  color: var(--white);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 99px;
  color: var(--white);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.status-pill:hover {
  border-color: rgba(77, 175, 235, 0.72);
  background: rgba(77, 175, 235, 0.1);
}

.status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  min-height: 100dvh;
  padding: 9rem max(4vw, 2rem) 5.5rem;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(214, 205, 230, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 205, 230, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 70% 42%, rgba(77, 175, 235, 0.13), transparent 31rem);
  background-size: 4rem 4rem, 4rem 4rem, auto;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, rgba(22, 12, 40, 0.6));
  content: "";
  pointer-events: none;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(100%, 720px);
  margin-left: max(0rem, 3vw);
}

.eyebrow,
.section-index,
.art-label,
.hero-note,
.matrix-caption,
.fragment-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2.25rem;
  color: var(--mist);
}

.eyebrow-line {
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--blue);
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 500;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 8ch;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(4rem, 7.7vw, 8.5rem);
  line-height: 0.92;
}

h1 em,
h2 em {
  color: var(--mist);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.hero-lede {
  max-width: 35rem;
  margin-bottom: 2.25rem;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--mist);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white-soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 0.95rem;
  color: var(--white);
}

.hero-note {
  margin: 0;
  color: rgba(214, 205, 230, 0.56);
}

.hero-art {
  justify-self: center;
  width: min(100%, 650px);
  margin-top: 1rem;
}

.art-label {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.9rem;
  color: rgba(214, 205, 230, 0.62);
}

.art-label span:first-child {
  color: var(--blue);
}

.matrix-frame {
  position: relative;
  aspect-ratio: 1;
  padding: 1px;
  background: linear-gradient(135deg, rgba(214, 205, 230, 0.4), rgba(77, 175, 235, 0.28) 45%, rgba(214, 205, 230, 0.08));
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 96%);
}

.matrix-frame-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(22, 12, 40, 0.92);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 96%);
}

.matrix-frame-inner::before,
.matrix-frame-inner::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(214, 205, 230, 0.12);
  content: "";
  pointer-events: none;
}

.matrix-frame-inner::after {
  inset: 22%;
  border-color: rgba(77, 175, 235, 0.16);
}

.matrix {
  --columns: 18;
  position: absolute;
  inset: 13%;
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: clamp(0.4rem, 1.15vw, 0.9rem);
  align-content: center;
  justify-content: center;
  transform: rotate(-6deg);
}

.matrix-dot {
  display: block;
  width: 0.3rem;
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background: rgba(214, 205, 230, 0.34);
  opacity: 0.28;
  transform: scale(0.9);
  animation: dot-breathe 5.5s ease-in-out infinite;
  animation-delay: var(--delay);
}

.matrix-dot.is-bright {
  background: var(--blue);
  opacity: 1;
  transform: scale(1.18);
}

.matrix-dot.is-soft {
  background: var(--mist);
  opacity: 0.74;
}

.constellation {
  position: absolute;
  inset: 7%;
  width: 86%;
  height: 86%;
  overflow: visible;
  transform: rotate(-6deg);
  pointer-events: none;
}

.constellation path {
  fill: none;
  stroke: rgba(77, 175, 235, 0.68);
  stroke-width: 1.2;
  stroke-dasharray: 4 12;
  animation: line-drift 12s linear infinite;
}

.constellation path:nth-child(2) {
  stroke: rgba(214, 205, 230, 0.48);
  animation-duration: 15s;
  animation-direction: reverse;
}

.constellation circle {
  fill: var(--blue);
}

.matrix-caption {
  position: absolute;
  z-index: 1;
  color: rgba(214, 205, 230, 0.64);
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1.7;
  text-transform: none;
}

.matrix-caption-top {
  top: 13%;
  left: 11%;
}

.matrix-caption-bottom {
  right: 11%;
  bottom: 12%;
  text-align: right;
}

.art-footnote {
  margin: 1rem 0 0;
  color: rgba(214, 205, 230, 0.62);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-style: italic;
  line-height: 1.35;
  text-align: right;
}

.section-light,
.section-mist {
  padding: clamp(6rem, 11vw, 11rem) max(7vw, 2rem);
}

.section-light {
  background: var(--white);
}

.section-mist {
  background: var(--mist);
}

.section-index {
  color: var(--mid);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(3rem, 12vw, 13rem);
  max-width: 1260px;
  margin: clamp(4rem, 7vw, 7rem) auto 0;
}

.story-grid h2,
.question-heading h2,
.coming-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 6vw, 6.8rem);
  line-height: 0.95;
}

.story-grid h2 span {
  color: var(--mid);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.story-copy {
  align-self: end;
  max-width: 34rem;
  color: var(--ink-soft);
}

.story-copy p:last-child {
  max-width: 29rem;
  margin: 2.1rem 0 0;
  font-size: 0.98rem;
}

.large-copy {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.25;
}

.question-field {
  position: relative;
}

.question-header {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  gap: 2rem;
  max-width: 1260px;
  margin: 0 auto;
}

.question-heading {
  max-width: 52rem;
}

.question-heading h2 {
  margin-top: 0;
  color: var(--ink);
}

.question-heading h2 em {
  color: var(--deep);
}

.question-heading > p {
  max-width: 28rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.question-rail {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.82fr;
  gap: clamp(1.4rem, 5vw, 5rem);
  max-width: 1260px;
  margin: clamp(5rem, 10vw, 10rem) auto 0;
}

.question-fragment {
  display: flex;
  flex-direction: column;
  min-height: 14rem;
  border-top: 1px solid rgba(22, 12, 40, 0.36);
}

.fragment-mid {
  margin-top: 4.5rem;
}

.fragment-narrow {
  margin-top: 9rem;
}

.fragment-number {
  margin: 1.1rem 0 2.4rem;
  color: var(--mid);
}

.question-fragment p {
  max-width: 15ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.fragment-line {
  width: 100%;
  height: 1px;
  margin-top: auto;
  background: rgba(22, 12, 40, 0.18);
}

.coming-soon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: center;
  min-height: 650px;
  padding: clamp(6rem, 12vw, 12rem) max(7vw, 2rem);
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.coming-soon::before {
  position: absolute;
  top: -25rem;
  right: -8rem;
  width: 56rem;
  height: 56rem;
  border: 1px solid rgba(214, 205, 230, 0.18);
  border-radius: 50%;
  content: "";
}

.coming-soon::after {
  position: absolute;
  top: -12rem;
  right: 5rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid rgba(77, 175, 235, 0.32);
  border-radius: 50%;
  content: "";
}

.coming-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: max(0rem, 3vw);
}

.section-index-dark {
  color: var(--mist);
}

.coming-copy h2 {
  margin-top: 3.4rem;
  color: var(--white);
}

.coming-copy h2 em {
  color: var(--blue);
}

.coming-copy > p:not(.sign-off) {
  max-width: 29rem;
  margin: 2.2rem 0 0;
  color: var(--white-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.sign-off {
  margin: 3rem 0 0;
  color: var(--mist);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.coming-mark {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(35vw, 430px);
  aspect-ratio: 1;
}

.coming-mark-ring {
  position: absolute;
  border: 1px solid rgba(214, 205, 230, 0.34);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.ring-one {
  inset: 10%;
}

.ring-two {
  inset: 25%;
  border-color: rgba(77, 175, 235, 0.52);
}

.ring-three {
  inset: 39%;
  border-color: rgba(214, 205, 230, 0.18);
}

.coming-mark-dot {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--blue);
}

.dot-one {
  top: 8%;
  left: 48%;
}

.dot-two {
  top: 65%;
  right: 8%;
  background: var(--mist);
}

.dot-three {
  bottom: 12%;
  left: 23%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem max(7vw, 2rem);
  color: var(--mid);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes dot-breathe {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.66;
    transform: scale(1.06);
  }
}

@keyframes line-drift {
  to {
    stroke-dashoffset: -160;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 9rem;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-art {
    justify-self: start;
    width: min(100%, 650px);
  }

  .story-grid,
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .story-copy {
    margin-top: 2rem;
  }

  .coming-mark {
    position: absolute;
    right: 5vw;
    bottom: -8rem;
    width: min(48vw, 390px);
    opacity: 0.68;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 2.5rem);
    padding: 1.5rem 0;
  }

  .site-nav > a:not(.status-pill) {
    display: none;
  }

  .hero {
    gap: 3.5rem;
    padding: 8rem 1.25rem 4.5rem;
  }

  h1 {
    font-size: clamp(3.8rem, 17vw, 6.3rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-art {
    width: 100%;
  }

  .matrix {
    --columns: 12;
    inset: 11%;
    gap: 0.5rem;
  }

  .matrix-dot {
    width: 0.24rem;
  }

  .section-light,
  .section-mist {
    padding: 5.5rem 1.25rem;
  }

  .story-grid,
  .question-header {
    display: block;
    margin-top: 3.2rem;
  }

  .story-grid h2,
  .question-heading h2,
  .coming-copy h2 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .story-copy {
    margin-top: 3rem;
  }

  .question-heading > p {
    margin-top: 1.6rem;
  }

  .question-rail {
    display: block;
    margin-top: 4.5rem;
  }

  .question-fragment,
  .fragment-mid,
  .fragment-narrow {
    min-height: 12rem;
    margin: 0 0 3.5rem;
  }

  .question-fragment p {
    max-width: 16ch;
    font-size: 2rem;
  }

  .coming-soon {
    min-height: 680px;
    padding: 5.5rem 1.25rem;
  }

  .coming-copy {
    margin-left: 0;
  }

  .coming-copy h2 {
    margin-top: 2.8rem;
  }

  .coming-mark {
    right: -5rem;
    bottom: -4rem;
    width: 22rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.5rem 1.25rem;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
