:root {
  color-scheme: dark;
  --ink: #090b0c;
  --ink-soft: #101416;
  --paper: #e8eceb;
  --muted: #8e999d;
  --line: rgba(232, 236, 235, 0.18);
  --signal: #ff6b2c;
  --header-h: 72px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(to bottom, rgba(9,11,12,.9), rgba(9,11,12,.42));
  backdrop-filter: blur(12px);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .78rem;
}
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.5);
  font-size: .64rem;
  letter-spacing: .06em;
}
nav { display: flex; gap: clamp(18px, 3vw, 44px); }
nav a {
  position: relative;
  color: #bcc4c4;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: color .2s ease;
}
nav a:hover, nav a:focus-visible { color: var(--signal); }
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: .14em;
  bottom: -10px;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
nav a.is-active { color: var(--paper); }
nav a.is-active::after { transform: scaleX(1); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 52px) var(--pad) 42px;
  isolation: isolate;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("https://i.ytimg.com/vi/AW1Vmg6S5bI/maxresdefault.jpg");
  background-size: cover;
  background-position: 68% center;
  filter: grayscale(1) contrast(1.12) brightness(.53);
  transform: scale(1.015);
  animation: hero-drift 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9,11,12,.9) 0%, rgba(9,11,12,.38) 58%, rgba(9,11,12,.12) 100%),
    linear-gradient(0deg, rgba(9,11,12,.75) 0%, transparent 55%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  pointer-events: none;
  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='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.hero-topline {
  position: absolute;
  top: calc(var(--header-h) + 26px);
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  color: #c3cbca;
}
.eyebrow {
  margin: 0;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 700;
}
.hero-copy { display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: end; }
.hero-index {
  margin: 0 0 1.4rem;
  font: 600 .7rem/1 monospace;
  color: var(--signal);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero h1 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(5.2rem, 16.2vw, 14.2rem);
  line-height: .72;
  letter-spacing: -.075em;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero h1 span:last-child { margin-left: .36em; color: transparent; -webkit-text-stroke: 1px rgba(232,236,235,.72); }
.hero-statement {
  position: absolute;
  right: var(--pad);
  bottom: 17%;
  max-width: 420px;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: #d8dddd;
}
.hero-cta {
  position: absolute;
  left: var(--pad);
  bottom: 34px;
  width: min(360px, 38vw);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.55);
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
}
.hero-credit {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  margin: 0;
  color: #949c9c;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section { padding: clamp(90px, 12vw, 190px) var(--pad); }
.work-section { background: #0b0e0f; }
.section-heading {
  display: grid;
  grid-template-columns: .55fr 1.2fr .8fr;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 100px);
}
.section-heading h2,
.building-lead h2,
.about-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .86;
  letter-spacing: -.055em;
}
.section-intro {
  margin: 0;
  max-width: 36ch;
  color: #a7b0b1;
  font-size: .95rem;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.4vw, 22px);
}
.project {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-soft);
  text-align: left;
  cursor: pointer;
}
.project-featured { grid-column: span 8; aspect-ratio: 16 / 9; }
.project-wide { grid-column: span 8; aspect-ratio: 16 / 9; }
.project-upcoming {
  cursor: default;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 42%, rgba(255,107,44,.16), transparent 23%),
    #080a0b;
}
.project-upcoming::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(255,107,44,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,44,.075) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(100deg, rgba(0,0,0,.92), transparent 82%);
}
.project-upcoming::after {
  content: "";
  position: absolute;
  right: -7%;
  top: -28%;
  width: 47%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,107,44,.4);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,107,44,.025), 0 0 0 110px rgba(255,107,44,.02);
}
.upcoming-grid {
  position: absolute;
  inset: 22% 29% 22% 13%;
  border-top: 1px solid rgba(232,236,235,.16);
  border-bottom: 1px solid rgba(232,236,235,.08);
}
.upcoming-grid::before {
  content: "UNRELEASED / 2026";
  position: absolute;
  top: 18px;
  color: var(--signal);
  font: .66rem/1 monospace;
  letter-spacing: .13em;
}
.upcoming-mark {
  position: absolute;
  right: 7%;
  top: 50%;
  z-index: 1;
  color: rgba(232,236,235,.6);
  font: 700 clamp(2.2rem, 5vw, 5.5rem)/1 "Arial Narrow", Arial, sans-serif;
  letter-spacing: -.08em;
  transform: translateY(-50%);
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(.78);
  transform: scale(1.01);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.project-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,7,8,.9), transparent 62%);
}
.project-count {
  position: absolute;
  top: 16px;
  left: 16px;
  font: .68rem/1 monospace;
  color: rgba(255,255,255,.76);
}
.project-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 50%;
  transform: translate(-50%,-42%);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}
.project-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}
.project-meta > span { display: grid; gap: 5px; }
.project-meta b { font-size: clamp(.9rem, 1.3vw, 1.12rem); font-weight: 550; }
.project-meta em {
  color: var(--signal);
  font: normal .58rem/1.2 monospace;
  letter-spacing: .08em;
}
.project-meta small { color: #b0b7b7; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; text-align: right; }
.project:hover img, .project:focus-visible img { transform: scale(1.045); filter: grayscale(.2) contrast(1.03) brightness(.82); }
.project:hover .project-play, .project:focus-visible .project-play { opacity: 1; transform: translate(-50%,-50%); background: rgba(9,11,12,.42); }
.project:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
.building-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 10vw, 160px);
  background: var(--paper);
  color: var(--ink);
}
.building-lead { align-self: start; position: sticky; top: 110px; }
.building-lead .eyebrow { color: #a23b0e; }
.building-lead h2 { margin: 32px 0 42px; font-size: clamp(3rem, 5.6vw, 6rem); }
.building-lead > p:last-child { max-width: 48ch; color: #4f595b; }
.ventures { border-top: 1px solid rgba(9,11,12,.35); }
.venture {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 22px;
  padding: 26px 0 52px;
  border-bottom: 1px solid rgba(9,11,12,.22);
  transition: padding-left .25s ease;
}
a.venture:hover { padding-left: 10px; }
.venture-number { font: .68rem/1 monospace; color: #8c4e32; margin-top: 7px; }
.venture-copy { display: grid; gap: 14px; }
.venture-copy b { font-size: clamp(1.5rem, 2.7vw, 2.5rem); font-weight: 600; letter-spacing: -.03em; }
.venture-copy small { max-width: 52ch; font-size: .92rem; color: #4f595b; }
.venture-arrow { font-size: 1.2rem; }
.venture-arrow.muted { color: #7c8586; }

.about-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  background:
    linear-gradient(rgba(255,107,44,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,44,.035) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 42px 42px;
}
.about-stamp {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,107,44,.42);
  border-radius: 50%;
  display: grid;
  place-content: center;
  gap: 10px;
  color: #b6c2c1;
  font: .68rem/1 monospace;
  letter-spacing: .16em;
  text-align: center;
  transform: rotate(-7deg);
}
.about-stamp::before,
.about-stamp::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(255,107,44,.2); border-radius: 50%; }
.about-stamp::after { inset: 28%; background: rgba(255,107,44,.06); }
.about-copy .eyebrow { margin-bottom: 34px; }
.about-copy h2 { max-width: 980px; font-size: clamp(3rem, 5.5vw, 6rem); }
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 58px);
  margin-top: 54px;
  color: #aeb7b7;
}
.about-columns p { margin: 0; max-width: 48ch; }

.contact-section {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 88px var(--pad) 28px;
  background: #050607;
}
.contact-section h2 { margin: auto 0 30px; font-size: clamp(4.8rem, 12vw, 12rem); }
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.contact-channel {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: space-between;
  min-height: 170px;
  padding: 22px 24px 24px 0;
  transition: background .2s ease;
}
.contact-channel + .contact-channel {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.contact-channel:hover,
.contact-channel:focus-within {
  background: rgba(255,107,44,.035);
}
.contact-channel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-channel-label {
  color: var(--muted);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.contact-channel-value {
  align-self: end;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(1rem, 2vw, 1.7rem);
  letter-spacing: -.025em;
  transition: color .2s ease;
}
.contact-channel-value:hover,
.contact-channel-value:focus-visible { color: var(--signal); }
.copy-button {
  min-width: 112px;
  padding: 11px 15px;
  border: 1px solid var(--signal);
  border-radius: 999px;
  color: var(--ink);
  background: var(--signal);
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.copy-button:hover,
.copy-button:focus-visible,
.copy-button.is-copied {
  color: var(--paper);
  border-color: var(--paper);
  background: transparent;
  transform: translateY(-2px);
}
.nostr-profile {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  color: var(--paper);
  transition: color .2s ease;
}
.nostr-profile:hover,
.nostr-profile:focus-visible { color: var(--signal); }
.nostr-avatar {
  position: relative;
  width: 72px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: #151a1c;
}
.nostr-avatar-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--signal);
  font: .72rem/1 monospace;
  letter-spacing: .1em;
}
.nostr-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
}
.nostr-identity {
  min-width: 0;
  display: grid;
  gap: 7px;
}
.nostr-identity strong {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 560;
  letter-spacing: -.025em;
}
.nostr-identity > span {
  overflow: hidden;
  color: var(--muted);
  font: .7rem/1.4 monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nostr-profile-arrow { font-size: 1.05rem; }
.copy-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-top: 34px;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-footer p { margin: 0; }

.video-dialog {
  width: min(92vw, 1260px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.26);
  background: #050607;
  color: var(--paper);
  box-shadow: 0 30px 100px rgba(0,0,0,.7);
}
.video-dialog::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(8px); }
.dialog-close {
  display: block;
  margin-left: auto;
  padding: 14px 18px;
  border: 0;
  color: var(--paper);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  cursor: pointer;
}
.dialog-close:hover { color: var(--signal); }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

@keyframes hero-drift { to { transform: scale(1.055) translate3d(-.6%, .4%, 0); } }

@media (max-width: 900px) {
  :root { --header-h: 62px; }
  .hero { min-height: 820px; }
  .hero h1 { font-size: clamp(5.5rem, 24vw, 11rem); line-height: .76; }
  .hero h1 span:last-child { margin-left: .12em; }
  .hero-statement { left: calc(var(--pad) + 44px); right: var(--pad); bottom: 18%; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow { margin-bottom: 8px; }
  .section-intro { margin-top: 8px; }
  .project, .project-featured, .project-wide { grid-column: span 6; aspect-ratio: 4 / 3; }
  .building-section { grid-template-columns: 1fr; }
  .building-lead { position: static; }
  .about-section { grid-template-columns: 1fr; }
  .about-stamp { width: min(68vw, 340px); justify-self: center; }
  .contact-footer { grid-template-columns: 1fr 1fr; }
  .contact-footer > p:last-child { display: none; }
}

@media (max-width: 620px) {
  .wordmark > span:last-child { display: none; }
  nav { gap: clamp(9px, 3.2vw, 17px); }
  nav a { font-size: .62rem; letter-spacing: .09em; }
  nav a::after { bottom: -8px; }
  .hero {
    min-height: max(760px, 100svh);
    padding: 0 var(--pad) 28px;
    align-items: start;
  }
  .hero-image {
    inset: var(--header-h) 0 auto;
    height: 56.25vw;
    max-height: 340px;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    filter: grayscale(1) contrast(1.08) brightness(.68);
    transform: none;
    animation: none;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(9,11,12,.08) 0%, rgba(9,11,12,.16) 32%, rgba(9,11,12,.88) 48%, var(--ink) 74%);
  }
  .hero-topline span:last-child, .hero-credit { display: none; }
  .hero-topline { top: calc(var(--header-h) + 14px); }
  .hero-copy {
    position: absolute;
    top: calc(var(--header-h) + 56.25vw + 28px);
    left: var(--pad);
    right: var(--pad);
    display: block;
  }
  .hero-index { display: none; }
  .hero h1 {
    font-size: clamp(4rem, 22vw, 6.25rem);
    line-height: .84;
    letter-spacing: -.045em;
  }
  .hero h1 span:last-child { margin-left: .08em; }
  .hero-statement {
    position: static;
    max-width: 330px;
    margin: 24px 0 0;
    font-size: .92rem;
    line-height: 1.5;
  }
  .hero-cta { width: calc(100% - var(--pad) * 2); bottom: 24px; }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .section-heading h2, .building-lead h2, .about-copy h2 { font-size: clamp(2.7rem, 14vw, 4.6rem); }
  .project, .project-featured, .project-wide { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .project-upcoming::after { right: -20%; width: 68%; }
  .upcoming-grid { inset: 20% 22% 23% 9%; }
  .upcoming-mark { right: 8%; font-size: 3.1rem; }
  .project-play { opacity: .82; width: 44px; }
  .project-meta { display: grid; }
  .project-meta small { text-align: left; }
  .venture { grid-template-columns: 28px 1fr auto; gap: 12px; padding-bottom: 38px; }
  .about-columns { grid-template-columns: 1fr; }
  .contact-section h2 { font-size: clamp(4rem, 19vw, 6rem); }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-channel { min-height: 138px; padding: 18px 0 22px; }
  .contact-channel + .contact-channel { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .contact-channel-value { font-size: 1rem; }
  .copy-button { min-width: 106px; padding: 10px 13px; }
  .nostr-profile { grid-template-columns: 58px minmax(0, 1fr) auto; gap: 13px; }
  .nostr-avatar { width: 58px; }
  .nostr-identity strong { font-size: 1.05rem; }
  .nostr-identity > span { font-size: .63rem; }
  .contact-footer { grid-template-columns: 1fr; }
}

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