/* virtual:styles.css */
:root {
  --bg:#0a0510;
  --bg-2:#120a1c;
  --aubergine:#1a0f25;
  --ivory:#f2ece1;
  --ivory-dim:#bdb3a6;
  --ivory-faint:#7d7468;
  --lav:#b8a6e8;
  --gold:#e6cfa0;
  --rose:#e0a9bc;
  --teal:#96d3cf;
  --line:rgba(242,236,225,.13);
  --serif:"Cormorant Garamond",Georgia,serif;
  --mono:"IBM Plex Mono",monospace;
  --sans:"Inter",system-ui,sans-serif;
  --pad:clamp(20px,5vw,72px);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--lav);
  color: #0a0510;
}
a {
  color: inherit;
  text-decoration: none;
}
#grain {
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(6) infinite;
}
@keyframes grain {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-3%, 2%);
  }
  40% {
    transform: translate(2%, -3%);
  }
  60% {
    transform: translate(-2%, -2%);
  }
  80% {
    transform: translate(3%, 1%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.wrap.wide {
  max-width: 1480px;
}
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  transition:
    background .5s ease,
    backdrop-filter .5s ease,
    border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.site-head.solid {
  background: rgba(10, 5, 16, .72);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 9px;
  height: 22px;
  display: inline-block;
  background:
    linear-gradient(
      180deg,
      transparent,
      var(--lav) 22%,
      #fff 50%,
      var(--gold) 78%,
      transparent);
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  opacity: .85;
}
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .055em;
}
.site-nav {
  display: flex;
  gap: 30px;
}
.site-nav a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color .35s;
}
.site-nav a:hover {
  color: var(--ivory);
}
.head-cta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition:
    border-color .4s,
    background .4s,
    color .4s;
}
.head-cta:hover {
  border-color: rgba(184, 166, 232, .6);
  background: rgba(184, 166, 232, .09);
}
@media (max-width: 940px) {
  .site-nav {
    display: none;
  }
}
@media (max-width: 560px) {
  .head-cta {
    display: none;
  }
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 62% 52% at 50% 46%,
      #241432 0%,
      #170d21 42%,
      #0b0611 72%,
      #060309 100%);
}
#prism-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 50%,
      transparent 38%,
      rgba(6, 3, 9, .62) 78%,
      rgba(4, 2, 7, .94) 100%),
    linear-gradient(
      180deg,
      rgba(6, 3, 9, .55) 0%,
      transparent 22%,
      transparent 74%,
      rgba(6, 3, 9, .8) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--pad);
  max-width: 940px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 34px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 7.4vw, 104px);
  line-height: 1.02;
  letter-spacing: -.014em;
  text-shadow: 0 0 70px rgba(10, 5, 16, .85), 0 2px 40px rgba(10, 5, 16, .7);
}
.hero-title em {
  font-style: italic;
  color: #fff;
}
.hero-sub {
  margin: 32px auto 0;
  max-width: 530px;
  font-size: clamp(15px, 1.6vw, 17.5px);
  line-height: 1.78;
  font-weight: 400;
  letter-spacing: .018em;
  color: #ede6da;
  text-shadow: 0 1px 18px rgba(10, 5, 16, .95), 0 2px 32px rgba(10, 5, 16, .8);
}
.hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition:
    transform .4s cubic-bezier(.2, .7, .3, 1),
    background .4s,
    border-color .4s,
    color .4s;
  display: inline-block;
  cursor: pointer;
}
.btn-primary {
  background: var(--ivory);
  color: #120a1c;
  box-shadow: 0 0 0 rgba(242, 236, 225, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(242, 236, 225, .14);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ivory-dim);
}
.btn-ghost:hover {
  border-color: rgba(184, 166, 232, .55);
  color: var(--ivory);
  transform: translateY(-2px);
}
.hero-foot {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(560px, 72vw);
  opacity: 0;
  animation: fadeIn 1.6s 2.2s forwards;
}
.rule {
  flex: 1;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--line),
      transparent);
}
.foot-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  white-space: nowrap;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
section {
  position: relative;
}
.sec-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s cubic-bezier(.2, .7, .3, 1), transform 1.1s cubic-bezier(.2, .7, .3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: .12s;
}
.reveal.d2 {
  transition-delay: .24s;
}
.reveal.d3 {
  transition-delay: .36s;
}
:root {
  --statement:clamp(20px,2.45vw,27px);
  --statement-lg:clamp(22px,2.85vw,32px);
}
.idea {
  padding: clamp(110px, 16vh, 180px) 0;
  background:
    linear-gradient(
      180deg,
      #060309,
      #0a0510 55%,
      #0c0614);
}
.idea-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  margin-top: 38px;
}
.idea-lead {
  position: sticky;
  top: clamp(96px, 14vh, 150px);
}
.idea-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 58px);
  line-height: 1.16;
  letter-spacing: -.01em;
  margin: 0;
  max-width: 14ch;
}
.idea-line .dim {
  color: var(--ivory-faint);
}
.idea-cols {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vh, 26px);
  max-width: 52ch;
}
.idea-cols p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ivory-dim);
}
.idea-couplet {
  color: var(--ivory) !important;
}
.idea-cols p.idea-couplet--breath {
  margin-top: clamp(18px, 3.2vh, 38px);
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--statement-lg);
  line-height: 1.5;
  letter-spacing: .01em;
  padding-top: clamp(16px, 2.6vh, 32px);
  border-top: 1px solid var(--line);
}
.couplet-word {
  font-style: inherit;
  color: var(--ivory);
  opacity: 0;
  transition: opacity 1.2s ease;
  transition-delay: .5s;
}
.couplet-word ~ .couplet-word {
  transition-duration: 1.5s;
  transition-delay: .92s;
}
.reveal.in .couplet-word {
  opacity: .92;
}
@media (max-width: 860px) {
  .idea-grid {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vh, 48px);
  }
  .idea-lead {
    position: static;
  }
  .idea-line {
    max-width: none;
  }
  .idea-cols {
    max-width: none;
  }
}
.paths {
  padding: clamp(100px, 15vh, 170px) 0 clamp(110px, 16vh, 190px);
  background:
    linear-gradient(
      180deg,
      #0c0614,
      #090512 40%,
      #0c0614);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.paths-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -.012em;
  margin: 34px 0 18px;
}
.paths-sub {
  font-size: clamp(14px, 1.5vw, 15.5px);
  line-height: 1.8;
  color: var(--ivory-faint);
  max-width: 46ch;
  margin-bottom: 0;
}
.paths-sub + .paths-sub {
  margin-top: clamp(14px, 2vh, 22px);
}
.paths-closing {
  margin-top: clamp(28px, 4vh, 46px);
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--statement);
  line-height: 1.48;
  letter-spacing: .01em;
  color: var(--ivory-dim);
  max-width: 40ch;
  padding-top: clamp(18px, 2.8vh, 30px);
  border-top: 1px solid var(--line);
}
.paths-spine {
  position: relative;
  margin: clamp(64px, 9vh, 110px) auto 0;
  max-width: 1180px;
  padding: 0 var(--pad);
}
.spine-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-.5px);
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(242, 236, 225, .07) 6%,
      rgba(206, 194, 236, .20) 42%,
      rgba(242, 236, 225, .16) 58%,
      rgba(242, 236, 225, .07) 94%,
      transparent 100%);
  pointer-events: none;
}
.spine-glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 130px;
  transform: translate(-.5px, -50%);
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(230, 207, 160, .55),
      rgba(206, 194, 236, .5),
      transparent);
  filter: blur(.4px);
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.2, .7, .3, 1), top 1.3s cubic-bezier(.2, .7, .3, 1);
  pointer-events: none;
}
.paths-spine.lit .spine-glow {
  opacity: 1;
}
.path-list {
  list-style: none;
  position: relative;
  z-index: 2;
}
.path-node {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(20px, 3.4vh, 34px) 0;
  cursor: pointer;
}
.path-glyph {
  grid-column: 2;
  width: clamp(46px, 5.4vw, 62px);
  height: clamp(46px, 5.4vw, 62px);
  display: block;
  overflow: visible;
  opacity: .52;
  transition: opacity 1s cubic-bezier(.2, .7, .3, 1), transform 1s cubic-bezier(.2, .7, .3, 1);
}
.path-glyph path,
.path-glyph line,
.path-glyph circle,
.path-glyph polyline {
  fill: none;
  stroke: rgba(238, 232, 220, .72);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: stroke 1s ease, opacity 1s ease;
}
.path-glyph .accent {
  stroke: rgba(206, 194, 236, .62);
}
.path-node:hover .path-glyph,
.path-node.active .path-glyph {
  opacity: 1;
  transform: scale(1.045);
  filter: drop-shadow(0 0 9px rgba(230, 207, 160, .26)) drop-shadow(0 0 20px rgba(206, 194, 236, .18));
}
.path-node:hover .path-glyph path,
.path-node.active .path-glyph path,
.path-node:hover .path-glyph line,
.path-node.active .path-glyph line,
.path-node:hover .path-glyph circle,
.path-node.active .path-glyph circle,
.path-node:hover .path-glyph polyline,
.path-node.active .path-glyph polyline {
  stroke: rgba(250, 245, 236, .95);
}
.path-node:hover .path-glyph .accent,
.path-node.active .path-glyph .accent {
  stroke: rgba(230, 207, 160, .9);
}
.path-id {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--ivory-faint);
  opacity: .6;
  transition: opacity .9s ease, color .9s ease;
  pointer-events: none;
}
.path-node:hover .path-id,
.path-node.active .path-id {
  opacity: 1;
  color: var(--ivory-dim);
}
.path-node[data-side=left] .path-id {
  left: calc(50% + clamp(34px, 3.4vw, 44px));
}
.path-node[data-side=right] .path-id {
  right: calc(50% + clamp(34px, 3.4vw, 44px));
  text-align: right;
}
.path-text {
  opacity: 0;
  transition: opacity 1s cubic-bezier(.2, .7, .3, 1), transform 1s cubic-bezier(.2, .7, .3, 1);
  pointer-events: none;
}
.path-node[data-side=left] .path-text {
  grid-column: 1;
  text-align: right;
  transform: translateX(14px);
}
.path-node[data-side=right] .path-text {
  grid-column: 3;
  text-align: left;
  transform: translateX(-14px);
}
.path-node:hover .path-text,
.path-node.active .path-text {
  opacity: 1;
  transform: none;
}
.path-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 9px;
}
.path-essence {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.35;
  color: var(--ivory);
  max-width: 22ch;
}
.path-node[data-side=left] .path-essence {
  margin-left: auto;
}
.paths-foot {
  margin-top: clamp(56px, 8vh, 92px);
  text-align: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  opacity: .7;
}
@media (max-width: 820px) {
  .paths-spine {
    padding: 0 var(--pad);
  }
  .spine-line,
  .spine-glow {
    left: clamp(28px, 9vw, 52px);
  }
  .path-node {
    grid-template-columns: auto 1fr;
    gap: clamp(18px, 5vw, 28px);
    padding: clamp(16px, 2.6vh, 24px) 0;
  }
  .path-glyph {
    grid-column: 1;
    width: 44px;
    height: 44px;
    margin-left: calc(clamp(28px, 9vw, 52px) - var(--pad) - 22px);
  }
  .path-node[data-side=left] .path-text,
  .path-node[data-side=right] .path-text {
    grid-column: 2;
    text-align: left;
    transform: translateX(-8px);
    max-height: 0;
    overflow: hidden;
  }
  .path-node.active .path-text {
    max-height: 120px;
  }
  .path-node[data-side=left] .path-essence {
    margin-left: 0;
  }
  .path-essence {
    font-size: 16px;
  }
  .path-id {
    position: static;
    transform: none;
    display: block;
    margin-bottom: 5px;
    text-align: left !important;
  }
  .path-node[data-side=left] .path-id,
  .path-node[data-side=right] .path-id {
    left: auto;
    right: auto;
  }
}
.pattern {
  padding: clamp(96px, 14vh, 164px) 0 clamp(100px, 15vh, 175px);
  background:
    linear-gradient(
      180deg,
      #0c0614,
      #0a0512 50%,
      #0c0614);
  border-top: 1px solid var(--line);
}
.pattern-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.14;
  letter-spacing: -.012em;
  margin: 34px 0 clamp(38px, 5.6vh, 62px);
  max-width: 18ch;
}
.pattern-prose {
  max-width: 620px;
  margin-left: auto;
  display: grid;
  gap: clamp(20px, 2.8vh, 28px);
}
.pattern-prose p {
  font-size: clamp(14.5px, 1.5vw, 16px);
  line-height: 1.9;
  color: var(--ivory-dim);
}
.pattern-prose p:first-child {
  color: #d6cec1;
}
.pattern-couplet {
  max-width: 620px;
  margin-left: auto;
  margin-top: clamp(36px, 5.4vh, 64px);
  padding-top: clamp(20px, 3vh, 34px);
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--statement-lg);
  line-height: 1.5;
  letter-spacing: .01em;
  color: var(--ivory);
}
@media (max-width: 760px) {
  .pattern-line {
    max-width: none;
  }
  .pattern-prose,
  .pattern-couplet {
    margin-left: 0;
  }
}
.forms {
  padding: clamp(90px, 13vh, 150px) 0 clamp(80px, 11vh, 130px);
  background: #0c0614;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.form {
  position: relative;
  padding: clamp(64px, 11vh, 132px) 0;
}
.form + .form {
  border-top: 1px solid rgba(242, 236, 225, .07);
}
.motes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.form-body {
  position: relative;
  z-index: 2;
}
.form-reading .form-body,
.form-portrait .form-body {
  max-width: 1180px;
}
.form-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--ivory-faint);
  margin-bottom: 22px;
}
.form-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 6.4vw, 86px);
  line-height: 1;
  letter-spacing: -.018em;
  max-width: 16ch;
}
.form-lead {
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.5vw, 30px);
  line-height: 1.3;
  color: var(--lav);
  opacity: .86;
}
.form-prose {
  margin-top: clamp(30px, 4.6vw, 54px);
  max-width: 620px;
  display: grid;
  gap: 22px;
}
.form-prose p {
  font-size: clamp(14.5px, 1.5vw, 16px);
  line-height: 1.9;
  color: var(--ivory-dim);
}
.form-prose p:first-child {
  color: #d6cec1;
}
.form-statement {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--statement) !important;
  line-height: 1.5 !important;
  color: var(--ivory-dim) !important;
  letter-spacing: .01em;
}
.form-statement--principle {
  color: var(--ivory) !important;
  opacity: .88;
  letter-spacing: .018em;
}
.portrait-coda {
  margin-top: clamp(20px, 3vw, 36px) !important;
  padding-top: clamp(16px, 2.4vw, 28px);
  border-top: 1px solid rgba(242, 236, 225, .13);
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--statement) !important;
  line-height: 1.52 !important;
  color: var(--ivory-dim) !important;
}
.form-closing {
  margin-top: clamp(20px, 3vw, 36px) !important;
  padding-top: clamp(16px, 2.4vw, 28px);
  border-top: 1px solid rgba(242, 236, 225, .13);
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--statement) !important;
  line-height: 1.5 !important;
  color: var(--ivory) !important;
  opacity: .82;
}
.form-facts {
  margin-top: clamp(34px, 4.6vw, 54px);
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(34px, 5vw, 72px);
  max-width: 620px;
}
.form-facts div {
  padding-top: 13px;
  border-top: 1px solid var(--line);
  min-width: 132px;
  flex: 1;
}
.form-facts dt {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 7px;
}
.form-facts dd {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--ivory-dim);
}
.form-portrait .form-body {
  text-align: right;
}
.form-portrait .form-title {
  margin-left: auto;
}
.form-portrait .form-prose,
.form-portrait .form-facts {
  margin-left: auto;
}
.form-portrait .form-facts {
  justify-content: flex-end;
}
.forms-note {
  margin-top: clamp(54px, 8vh, 96px);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--statement);
  line-height: 1.5;
  color: var(--ivory-faint);
}
@media (max-width: 820px) {
  .form-portrait .form-body {
    text-align: left;
  }
  .form-portrait .form-title,
  .form-portrait .form-prose,
  .form-portrait .form-facts {
    margin-left: 0;
  }
  .form-portrait .form-facts {
    justify-content: flex-start;
  }
  .form-facts {
    gap: 0 28px;
  }
}
.works {
  padding: clamp(90px, 13vh, 150px) 0;
  background:
    linear-gradient(
      180deg,
      #0c0614,
      #0a0510);
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
  margin-top: 48px;
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  position: relative;
}
.step-num {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 80px);
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 166, 232, .42);
  display: block;
  margin-bottom: 20px;
}
.steps h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 2vw, 24px);
  margin-bottom: 10px;
}
.steps p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ivory-faint);
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.world {
  padding: clamp(90px, 13vh, 150px) 0 clamp(100px, 14vh, 160px);
  background: #0a0510;
}
.world-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.world-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px);
  color: var(--ivory-dim);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(18px, 2.4vw, 38px) clamp(14px, 1.8vw, 26px);
  padding: 0 var(--pad);
  max-width: 1240px;
  margin: 0 auto;
}
.plate {
  position: relative;
  min-width: 0;
}
.plate-art {
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  transition: transform .8s cubic-bezier(.2, .7, .3, 1), border-color .8s;
}
.plate:hover .plate-art {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(242, 236, 225, .28);
}
.plate[data-plate="1"] .plate-art {
  background:
    radial-gradient(
      circle at 50% 62%,
      rgba(255, 255, 255, .62),
      rgba(184, 166, 232, .42) 16%,
      transparent 46%),
    conic-gradient(
      from 210deg at 50% 62%,
      rgba(230, 207, 160, .3),
      rgba(184, 166, 232, .18),
      rgba(150, 211, 207, .22),
      rgba(230, 207, 160, .3)),
    linear-gradient(
      180deg,
      #150c24,
      #070310);
}
.plate[data-plate="2"] .plate-art {
  background:
    radial-gradient(
      ellipse 40% 68% at 50% 50%,
      rgba(255, 255, 255, .5),
      rgba(224, 169, 188, .34) 24%,
      transparent 62%),
    repeating-linear-gradient(
      94deg,
      rgba(242, 236, 225, .08) 0 1px,
      transparent 1px 26px),
    linear-gradient(
      180deg,
      #1a0e22,
      #080410);
}
.plate[data-plate="3"] .plate-art {
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(150, 211, 207, .48),
      transparent 44%),
    radial-gradient(
      circle at 50% 74%,
      rgba(230, 207, 160, .34),
      transparent 46%),
    linear-gradient(
      180deg,
      #0f0a1e,
      #06030c);
}
.plate[data-plate="4"] .plate-art {
  background:
    radial-gradient(
      ellipse 26% 54% at 50% 48%,
      rgba(255, 255, 255, .66),
      rgba(184, 166, 232, .3) 30%,
      transparent 66%),
    conic-gradient(
      from 40deg at 50% 48%,
      transparent,
      rgba(224, 169, 188, .24),
      transparent 55%),
    linear-gradient(
      180deg,
      #17101f,
      #070410);
}
.plate[data-plate="5"] .plate-art {
  background:
    radial-gradient(
      circle at 38% 44%,
      rgba(255, 255, 255, .5),
      rgba(150, 211, 207, .28) 22%,
      transparent 54%),
    repeating-linear-gradient(
      72deg,
      rgba(242, 236, 225, .055) 0 1px,
      transparent 1px 34px),
    linear-gradient(
      180deg,
      #130d20,
      #06030d);
}
.plate[data-plate="6"] .plate-art {
  background:
    radial-gradient(
      ellipse 46% 40% at 50% 56%,
      rgba(255, 255, 255, .52),
      rgba(224, 169, 188, .3) 28%,
      transparent 64%),
    radial-gradient(
      circle at 50% 26%,
      rgba(230, 207, 160, .22),
      transparent 42%),
    linear-gradient(
      180deg,
      #190f21,
      #07040e);
}
.plate[data-plate="7"] .plate-art {
  background:
    radial-gradient(
      ellipse 20% 62% at 50% 50%,
      rgba(255, 255, 255, .58),
      rgba(184, 166, 232, .26) 30%,
      transparent 62%),
    conic-gradient(
      from 160deg at 50% 50%,
      transparent,
      rgba(150, 211, 207, .2),
      transparent 48%),
    linear-gradient(
      180deg,
      #0e0a1c,
      #05030b);
}
.plate[data-plate="8"] .plate-art {
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(230, 207, 160, .4),
      transparent 40%),
    radial-gradient(
      circle at 50% 68%,
      rgba(255, 255, 255, .44),
      rgba(184, 166, 232, .22) 24%,
      transparent 56%),
    linear-gradient(
      180deg,
      #160e1e,
      #06030c);
}
.plate[data-plate="9"] .plate-art {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, .56),
      rgba(206, 194, 236, .3) 20%,
      transparent 58%),
    conic-gradient(
      from 0deg at 50% 50%,
      rgba(230, 207, 160, .18),
      rgba(150, 211, 207, .16),
      rgba(224, 169, 188, .18),
      rgba(230, 207, 160, .18)),
    linear-gradient(
      180deg,
      #120c1e,
      #06030c);
}
.plate-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 50% 50%,
      transparent 40%,
      rgba(6, 3, 10, .7) 100%);
}
.plate figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 13px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.plate-no {
  opacity: .72;
  flex: none;
}
.plate-name {
  text-align: right;
  transition: color .7s ease;
}
.plate:hover .plate-name {
  color: var(--ivory-dim);
}
@media (max-width: 720px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 24px) clamp(12px, 2.4vw, 18px);
  }
}
@media (max-width: 520px) {
  .plate figcaption {
    font-size: 9px;
    letter-spacing: .12em;
    gap: 8px;
  }
}
.final {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 58% at 50% 52%,
      #20122e 0%,
      #120a1c 46%,
      #070310 100%);
  border-top: 1px solid var(--line);
}
#final-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.final-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: 760px;
}
.final h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5.4vw, 70px);
  line-height: 1.1;
  letter-spacing: -.012em;
}
.final h2 em {
  font-style: italic;
  color: #fff;
}
.dob-form {
  margin: 46px auto 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.dob-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.dob-form input {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 15px 20px;
  min-width: 250px;
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  transition: border-color .4s, background .4s;
}
.dob-form input::placeholder {
  color: var(--ivory-faint);
}
.dob-form input:focus {
  outline: none;
  border-color: rgba(184, 166, 232, .6);
  background: rgba(184, 166, 232, .07);
}
.dob-form button {
  border: none;
}
.final-note {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.site-foot {
  background: #060309;
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
}
.foot-brand {
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 14px;
}
.foot-tag {
  font-size: 13px;
  color: var(--ivory-faint);
  margin-top: 6px;
}
.site-foot h5 {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  font-weight: 400;
  margin-bottom: 16px;
}
.site-foot nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.site-foot nav a {
  font-size: 13.5px;
  color: var(--ivory-dim);
  transition: color .35s;
}
.site-foot nav a:hover {
  color: var(--ivory);
}
.foot-legal {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
@media (max-width: 820px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
