:root {
  --bg: #070708;
  --bg-soft: #0c0c0f;
  --panel: #101014;
  --panel-2: #141419;
  --text: #f2f2f3;
  --silver: #c8c8cd;
  --muted: #96969f;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.24);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.045), transparent 28%),
    linear-gradient(180deg, #08080a 0%, var(--bg) 48%, #050506 100%);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: soft-light;
  z-index: 20;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,8,.84);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 138px;
  height: auto;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 9px 11px;
  cursor: pointer;
}
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--silver);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  transition: color .2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: #fff; }

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px 0 24px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  display: none;
}
.hero-logo {
  width: min(500px, 76vw);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.4));
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .28em;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
.hero .tagline {
  margin: 18px 0 0;
  font-family: var(--serif);
  color: var(--silver);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 400;
}
.hero .descriptor {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .23em;
}
.hero-actions,
.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #e7e7e9;
  color: #08080a;
}
.btn-secondary { color: var(--silver); background: rgba(255,255,255,.015); }

.section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.section-tight { padding: 84px 0; }
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.section-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--silver);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.rule { width: 72px; border: 0; border-top: 1px solid var(--line-strong); margin: 28px 0; }

.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: end;
}
.mission-statement {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  margin: 0;
}
.mission-note {
  color: var(--muted);
  max-width: 460px;
  margin: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  min-height: 520px;
}
.feature-copy { padding: clamp(38px, 6vw, 76px); align-self: center; }
.feature-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.035em;
  margin: 8px 0 28px;
}
.feature-copy p { color: var(--silver); max-width: 610px; }
.feature-art {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 45%, rgba(255,255,255,.09), transparent 18%),
    linear-gradient(145deg, #141419, #08080a 65%);
}
.deathbox-mark {
  width: min(68%, 360px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,.32);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  position: relative;
  transform: rotate(-2deg);
}
.deathbox-mark::before,
.deathbox-mark::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.065);
}
.deathbox-mark::after {
  inset: auto 28px 96px;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.26);
}
.deathbox-mark span {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.65rem);
  line-height: .95;
  letter-spacing: .02em;
  white-space: nowrap;
  max-width: 100%;
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.info-card {
  border: 1px solid var(--line);
  padding: 34px;
  background: rgba(255,255,255,.012);
}
.info-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
}
.info-card p { margin: 0; color: var(--muted); }

.page-hero {
  padding: 140px 0 104px;
  border-bottom: 1px solid var(--line);
}
.page-hero .lede {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--silver);
  font-size: clamp(1.1rem, 2.3vw, 1.5rem);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: start;
}
.copy p { color: var(--silver); margin-top: 0; }
.copy p + p { margin-top: 22px; }
.big-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin: 0;
}
.founder-card {
  border: 1px solid var(--line);
  padding: 44px;
  background: rgba(255,255,255,.015);
}
.founder-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 6px;
}
.founder-card .role {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.project-row {
  border: 1px solid var(--line);
  padding: clamp(34px, 5vw, 62px);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: center;
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
  background: rgba(255,255,255,.012);
}
.project-row:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.02);
}
.project-row h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -.03em;
}
.project-row p { color: var(--muted); margin: 10px 0 0; }

.meta {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 700;
}
.meta span + span::before {
  content: "·";
  margin-right: 18px;
  color: #5f5f67;
}

.deathbox-hero {
  padding: 148px 0 110px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.deathbox-hero::before {
  content: "DEATHBOX";
  position: absolute;
  right: -3vw;
  bottom: -4vw;
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 19rem);
  color: rgba(255,255,255,.025);
  white-space: nowrap;
}
.deathbox-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: .82;
  font-weight: 400;
  letter-spacing: -.045em;
  margin: 16px 0 34px;
}
.logline {
  position: relative;
  z-index: 1;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.65rem);
  line-height: 1.2;
  color: var(--silver);
  margin: 0;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.fact {
  background: var(--bg-soft);
  padding: 25px;
}
.fact dt {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .64rem;
  font-weight: 700;
}
.fact dd {
  margin: 7px 0 0;
  color: var(--silver);
}

.contact-panel {
  border: 1px solid var(--line);
  padding: clamp(36px, 7vw, 82px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.05), transparent 35%),
    rgba(255,255,255,.012);
}
.contact-panel h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: .95;
  font-weight: 400;
  margin: 0;
}
.contact-panel p {
  max-width: 680px;
  margin: 26px auto 0;
  color: var(--silver);
}
.contact-status {
  display: inline-block;
  margin-top: 34px;
  border: 1px solid var(--line);
  padding: 13px 17px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 40px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.footer-brand img { width: 118px; margin-bottom: 20px; }
.footer-small {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-nav a {
  text-decoration: none;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.footer-nav a:hover { color: #fff; }



@media (max-width: 860px) {
  .header-inner { min-height: 72px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #09090b;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .mission-grid, .feature-card, .split, .project-row { grid-template-columns: 1fr; }
  .feature-art { border-left: 0; border-top: 1px solid var(--line); }
  .three-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .section { padding: 88px 0; }
  .page-hero { padding: 104px 0 78px; }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 118px; }
  .hero { min-height: calc(100vh - 72px); padding: 52px 0 70px; }
  .hero-logo { width: min(430px, 88vw); }
  .hero .descriptor { letter-spacing: .14em; line-height: 1.8; }
  .facts { grid-template-columns: 1fr; }
  .meta span + span::before { display: none; }
  .meta { flex-direction: column; gap: 7px; }
  .feature-copy, .info-card, .founder-card { padding: 28px; }
}

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


.social-links {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px 24px;
  flex-wrap: wrap;
}
.social-links a {
  color: var(--silver);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.social-links a:hover {
  color: #fff;
  border-bottom-color: var(--line-strong);
}


.founder-portrait {
  width: min(100%, 300px);
  margin: 0 0 28px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0b0b0d;
  aspect-ratio: 4 / 5;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(.9) contrast(1.02);
}

@media (max-width: 560px) {
  .founder-portrait {
    width: 100%;
    max-width: 340px;
  }
}


/* Accessibility improvements */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.site-nav a,
.footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-nav a {
  padding-block: 8px;
}

/* Reveal content stays visible if JavaScript is unavailable. */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-ready,
  .reveal.reveal-ready.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
