@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&family=Manrope:wght@300;400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,300;1,6..72,300&display=swap');

:root {
  --black: #050505;
  --ink: #0a0a0a;
  --surface: #101112;
  --silver: #b9bbba;
  --bone: #e8e7e2;
  --muted: #858785;
  --line: rgba(232, 231, 226, 0.16);
  --fine-line: rgba(232, 231, 226, 0.08);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Helvetica, Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --mx: 50%;
  --my: 50%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--bone); color: var(--black); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--bone);
  color: var(--black);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.grain {
  position: fixed;
  z-index: 40;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: .032;
  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");
  animation: grain .24s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2%, -3%); }
  50% { transform: translate(-3%, 2%); }
  75% { transform: translate(3%, 4%); }
  100% { transform: translate(-2%, -4%); }
}

.atmosphere {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .72;
}

.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 3rem);
  background: #030303;
  color: var(--bone);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: visibility 0s 1s;
}
.loader__rule {
  grid-column: 1 / -1;
  align-self: center;
  height: 1px;
  background: var(--fine-line);
  transform-origin: left;
  animation: loader-rule 1.35s cubic-bezier(.65, 0, .35, 1) both;
}
.loader__count { color: var(--muted); letter-spacing: .05em; }
.is-loaded .loader { visibility: hidden; }
.is-loaded .loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  animation: loader-exit .9s cubic-bezier(.76, 0, .24, 1) both;
}
@keyframes loader-rule { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loader-exit { 0% { transform: translateY(100%); } 45% { transform: translateY(0); } 100% { transform: translateY(-100%); } }

.scroll-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.05);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.3rem clamp(1.25rem, 3vw, 3rem);
  mix-blend-mode: difference;
  color: white;
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  font-size: .72rem;
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.03em;
}
.site-header nav { display: flex; gap: clamp(1.25rem, 3vw, 3rem); }
.site-header nav a,
.status {
  position: relative;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.status { justify-self: end; color: #b8b8b8; }
.status i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: .55rem;
  border-radius: 50%;
  background: #deded9;
  box-shadow: 0 0 8px rgba(255,255,255,.6);
}

main, footer { position: relative; z-index: 1; }
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 8rem clamp(1.25rem, 3vw, 3rem) 3rem;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 76% 40%, rgba(123,130,134,.1), transparent 29%),
    linear-gradient(115deg, #050505 27%, #080909 64%, #030303 100%);
}
.hero__line--top {
  position: absolute;
  top: 23%;
  left: clamp(1.25rem, 3vw, 3rem);
  right: clamp(1.25rem, 3vw, 3rem);
  height: 1px;
  background: var(--fine-line);
}
.hero__copy { position: relative; z-index: 4; width: min(70rem, 77vw); }
.eyebrow {
  margin: 0 0 clamp(1.2rem, 3vh, 2.2rem);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 10.3vw, 10.4rem);
  font-weight: 300;
  line-height: .78;
  letter-spacing: -.065em;
}
.hero-title__line { display: block; overflow: hidden; padding: .08em .08em .08em 0; }
.hero-title__line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.25s cubic-bezier(.16,1,.3,1);
}
.is-loaded .hero-title__line > span { transform: translateY(0); }
.is-loaded .hero-title__line:nth-child(2) > span { transition-delay: .12s; }
.hero-title__line--indent { margin-left: .58em; font-style: italic; color: #bfc0bd; }
.hero__sub {
  margin: clamp(1.8rem, 4vh, 3.6rem) 0 0 58%;
  color: #9a9c99;
  font-size: clamp(.72rem, .9vw, .92rem);
  line-height: 1.65;
}
.hero__art {
  position: absolute;
  z-index: 2;
  top: 48%;
  right: -2vw;
  width: min(48vw, 48rem);
  transform: translate3d(calc((var(--pointer-x, .5) - .5) * -14px), calc(-50% + (var(--pointer-y, .5) - .5) * -10px), 0) rotate(calc((var(--pointer-x, .5) - .5) * 1deg));
  transform-origin: center;
  transition: transform .2s ease-out;
  filter: contrast(1.03);
}
.hero__art img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  opacity: .84;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 11%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 11%, black 82%, transparent 100%);
}
.hero__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 13rem at var(--mx) var(--my), rgba(237,240,238,.18), transparent 68%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__halo {
  position: absolute;
  z-index: -1;
  inset: 20% 4%;
  background: radial-gradient(ellipse, rgba(192,198,200,.12), transparent 68%);
  filter: blur(24px);
}
.hero__light {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 32%, rgba(255,255,255,.08) 46%, transparent 57%);
  mix-blend-mode: screen;
  transform: translateX(-55%);
  animation: metal-pass 9s 2.2s cubic-bezier(.5,0,.2,1) infinite;
}
@keyframes metal-pass { 0%, 62%, 100% { transform: translateX(-62%); opacity: 0; } 72% { opacity: .8; } 86% { transform: translateX(62%); opacity: 0; } }
.hero__edge-note {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3rem);
  top: 50%;
  display: flex;
  gap: 1.5rem;
  color: #5f6261;
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}
.scroll-cue {
  position: absolute;
  z-index: 5;
  left: clamp(1.25rem, 3vw, 3rem);
  bottom: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6f716f;
}
.scroll-cue i { width: 4rem; height: 1px; background: #494b4a; overflow: hidden; }
.scroll-cue i::after {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  background: var(--silver);
  animation: descend 2.6s ease-in-out infinite;
}
@keyframes descend { from { transform: translateX(-120%); } to { transform: translateX(220%); } }

.section {
  min-height: 100svh;
  padding: clamp(6rem, 11vw, 11rem) clamp(1.25rem, 6vw, 7rem);
  border-top: 1px solid var(--fine-line);
}
.section__index {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  margin-bottom: clamp(4rem, 9vw, 9rem);
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #777977;
}
.section__index span:first-child { color: var(--bone); }
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.2vw, 8.2rem);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.mandate { display: flex; flex-direction: column; background: #080909; }
.mandate__content {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(16rem, 1fr);
  gap: clamp(2.5rem, 9vw, 10rem);
  align-items: end;
}
.mandate__body {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
  color: #8c8f8c;
  font-size: clamp(.78rem, 1vw, .95rem);
  line-height: 1.8;
}
.mandate__body p { margin: 0 0 1.2rem; }
.mandate__verbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  padding-top: clamp(5rem, 12vw, 12rem);
  border-bottom: 1px solid var(--line);
}
.mandate__verbs span {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #929491;
}
.mandate__verbs span:not(:first-child) { padding-left: 1rem; border-left: 1px solid var(--line); }

.operators { background: #050505; }
.operators__heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  margin-bottom: clamp(5rem, 10vw, 10rem);
}
.operators__heading p {
  max-width: 22rem;
  margin: 0 0 .6rem;
  color: #858784;
  font-size: .82rem;
  line-height: 1.8;
}
.operator-list {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.operator { min-width: 0; background: #080909; }
.operator__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #0a0b0b;
  background-size: 2.25rem 2.25rem;
}
.operator__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.045), transparent 65%);
  transform: translateX(-110%);
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.operator:hover .operator__visual::after { transform: translateX(110%); }
.operator__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(1) contrast(1.12) brightness(.62);
  opacity: .9;
  transform: scale(1.015);
  transition: filter .8s ease, transform 1.2s cubic-bezier(.16,1,.3,1);
}
.operator__visual--founder::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,6,6,.04) 45%, rgba(5,6,6,.58) 100%),
    linear-gradient(90deg, rgba(5,6,6,.2), transparent 22%, transparent 78%, rgba(5,6,6,.2));
}
.operator:hover .operator__portrait {
  filter: grayscale(1) contrast(1.08) brightness(.7);
  transform: scale(1.035);
}
.operator__number {
  position: absolute;
  z-index: 3;
  right: 1rem;
  top: 1rem;
  font-family: var(--mono);
  font-size: .5rem;
  color: #656765;
}
.portrait-placeholder {
  position: absolute;
  inset: 17%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.07);
  color: #555855;
  font-family: var(--mono);
  font-size: .48rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.portrait-placeholder__cross,
.portrait-placeholder__cross::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 5rem;
  background: rgba(255,255,255,.08);
}
.portrait-placeholder__cross::after { transform: rotate(90deg); }
.portrait-placeholder span:last-child { position: absolute; bottom: 1.5rem; }
.agent-sigil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid #363938;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 2.5rem rgba(190,196,196,.035), 0 0 5rem rgba(190,196,196,.025);
  transition: transform .8s cubic-bezier(.16,1,.3,1), border-color .8s;
}
.operator:hover .agent-sigil { transform: translate(-50%, -50%) rotate(12deg) scale(1.04); border-color: #696c6b; }
.agent-sigil span {
  position: absolute;
  width: 112%;
  height: 34%;
  border: 1px solid #252827;
  border-radius: 50%;
  transform: rotate(60deg);
}
.agent-sigil span:nth-child(2) { transform: rotate(120deg); }
.agent-sigil span:nth-child(3) { transform: rotate(0deg); }
.agent-sigil b {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: #9c9f9c;
}
.agent-sigil--cain span { transform: rotate(45deg); }
.agent-sigil--cain span:nth-child(2) { transform: rotate(105deg); }
.agent-sigil--cain span:nth-child(3) { transform: rotate(165deg); }
.operator__details {
  min-height: 9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem;
}
.operator__type {
  margin: 0 0 .55rem;
  color: #686b68;
  font-family: var(--mono);
  font-size: .48rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.operator h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -.035em;
}
.operator__meta {
  display: flex;
  max-width: 9rem;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
.operator__role {
  margin: .1rem 0 0;
  text-align: right;
  color: #868986;
  font-size: .61rem;
  line-height: 1.5;
}
.operator__link {
  position: relative;
  color: #a9aba8;
  font-family: var(--mono);
  font-size: .48rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.operator__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(.28);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.operator__link:hover::after,
.operator__link:focus-visible::after { transform: scaleX(1); }

.contact {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 120%, rgba(143,149,149,.09), transparent 40%),
    #080909;
}
.contact__content { margin-top: auto; }
.contact .display { max-width: 79rem; }
.contact__email {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 2vw, 1.7rem);
  transition: color .35s, padding .35s;
}
.contact__email i { font-family: var(--sans); font-style: normal; font-weight: 300; }
.contact__email:hover,
.contact__email:focus-visible { color: white; padding-left: .7rem; padding-right: .7rem; }

footer {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 2.5rem clamp(1.25rem, 3vw, 3rem);
  border-top: 1px solid var(--fine-line);
  background: #050505;
  color: #666866;
  font-family: var(--mono);
  font-size: .48rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
footer p { margin: 0; }
footer a { color: #999b98; }
.wordmark--footer { color: #a8aaa7; }

.reveal,
.reveal-lines { opacity: 1; transform: none; }
.js .reveal,
.js .reveal-lines { opacity: 0; transform: translateY(1.6rem); transition: opacity .9s ease, transform 1.1s cubic-bezier(.16,1,.3,1); }
.js .reveal.is-visible,
.js .reveal-lines.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 1px solid var(--bone); outline-offset: 5px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
  .hero { align-items: end; padding-bottom: 7rem; }
  .hero__line--top { top: 18%; }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: clamp(4rem, 17vw, 7.7rem); }
  .hero-title__line--indent { margin-left: .15em; }
  .hero__sub { margin-left: .15rem; }
  .hero__art { top: 38%; right: -17vw; width: min(82vw, 39rem); opacity: .66; }
  .hero__edge-note { display: none; }
  .mandate__content, .operators__heading { grid-template-columns: 1fr; }
  .mandate__body { max-width: 28rem; margin-left: auto; }
  .operator-list { grid-template-columns: 1fr 1fr; }
  .operator--founder { grid-column: span 2; display: grid; grid-template-columns: 1.25fr 1fr; }
  .operator--founder .operator__visual { border-right: 1px solid var(--line); border-bottom: 0; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .status { font-size: .5rem; }
  .hero { min-height: 100svh; }
  .hero__art { top: 38%; right: -30vw; width: 112vw; opacity: .53; }
  .hero__copy { align-self: center; }
  .hero__sub { margin-top: 2rem; }
  .display { font-size: clamp(2.9rem, 14vw, 4.6rem); }
  .section { padding-top: 6rem; padding-bottom: 6rem; }
  .section__index { margin-bottom: 4.5rem; }
  .mandate__verbs { grid-template-columns: 1fr; }
  .mandate__verbs span:not(:first-child) { padding-left: 0; border-left: 0; }
  .operator-list { display: block; background: transparent; border-bottom: 0; }
  .operator { border-bottom: 1px solid var(--line); }
  .operator--founder { display: block; }
  .operator--founder .operator__visual { border-right: 0; border-bottom: 1px solid var(--line); }
  .operator__visual { aspect-ratio: 1.35 / 1; }
  .operator__details { min-height: 7.5rem; }
  .agent-sigil { width: 31%; }
  .contact { min-height: 84svh; }
  footer { grid-template-columns: 1fr; align-items: start; gap: 1.2rem; }
  footer .wordmark { margin-bottom: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .grain { animation: none; }
  .hero__art { transform: translateY(-50%); }
}
