@font-face {
  font-family: Plex;
  src: url("/fonts/ibm-plex-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: PlexMono;
  src: url("/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0a0a0c;
  --text: #f0f0f0;
  --muted: #a8a8ad;
  --gold: #d4af37;
  --line: #ffffff24;
  --space: clamp(24px,5.6vw,96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Plex, Arial, sans-serif;
}

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

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 7px;
}

::selection {
  color: #0a0a0c;
  background: #d4af37;
}

.wrap {
  width: calc(100% - var(--space)*2);
  max-width: 1440px;
  margin-inline: auto;
}

.gold {
  color: var(--gold);
}

p, h1, h2, h3 {
  margin: 0;
}

p {
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .19em;
  color: var(--gold);
  font-family: PlexMono, monospace;
  font-size: 11px;
  line-height: 1.7;
}

.skip-link {
  background: var(--gold);
  color: var(--bg);
  z-index: 10;
  padding: 12px;
  position: absolute;
  top: 12px;
  left: 24px;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  border-bottom: 1px solid var(--line);
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  display: flex;
  position: relative;
}

.wordmark {
  letter-spacing: .19em;
  white-space: nowrap;
  font-size: 19px;
  font-weight: 500;
}

.wordmark span {
  font-weight: 400;
}

.header-contact {
  padding: 12px 0 12px 24px;
  font-size: 13px;
}

.header-contact span {
  color: var(--gold);
  margin-left: 24px;
}

.hero {
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  flex-direction: column;
  justify-content: center;
  height: calc(100svh - 100px);
  min-height: 780px;
  max-height: 1100px;
  display: flex;
  position: relative;
}

.hero-copy {
  z-index: 1;
  max-width: 820px;
  padding-bottom: 70px;
  position: relative;
}

.hero h1 {
  letter-spacing: -.06em;
  margin: 25px 0 28px;
  font-size: clamp(48px, 5.3vw, 88px);
  font-weight: 400;
  line-height: 1.08;
}

.hero-description {
  color: #b9b9bd;
  max-width: 460px;
  font-size: 17px;
  line-height: 1.8;
}

.hero-art {
  z-index: -1;
  background: #000;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.hero-art img {
  object-fit: cover;
  object-position: center;
  opacity: .95;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-art:after {
  content: "";
  background: linear-gradient(90deg, #0a0a0c 0%, #0a0a0cf0 22%, #0a0a0c80 42%, #0000 64%), linear-gradient(0deg, #0a0a0c, #0000 18% 88%, #0a0a0c80);
  position: absolute;
  inset: 0;
}

.hero-actions {
  align-items: center;
  gap: 32px;
  margin-top: 36px;
  display: flex;
}

.button {
  color: #11110f;
  background: #d0af57;
  border: 1px solid #d0af57;
  justify-content: center;
  align-items: center;
  gap: 32px;
  min-height: 56px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, transform .2s;
  display: inline-flex;
}

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

.text-link {
  align-items: center;
  gap: 20px;
  min-height: 44px;
  font-size: 14px;
  display: inline-flex;
}

.text-link span {
  color: var(--gold);
  transition: transform .2s;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.hero-footnote {
  color: #b5b1a5;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  display: flex;
  position: absolute;
  bottom: 42px;
}

.hairline {
  background: var(--gold);
  width: 48px;
  height: 1px;
}

.section {
  border-top: 1px solid var(--line);
  padding-block: 96px;
}

.section-label {
  margin-bottom: 36px;
}

.section-intro {
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: 80px;
  display: grid;
}

.section-intro h2, .contact h2 {
  letter-spacing: -.045em;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.12;
}

.section-intro > p {
  max-width: 410px;
  color: var(--muted);
  padding-bottom: 4px;
  font-size: 16px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  display: grid;
}

.step-top {
  color: var(--gold);
  border-bottom: 1px solid #d4af375c;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  font-family: PlexMono, monospace;
  font-size: 12px;
  display: flex;
}

.step-top svg {
  width: 65px;
  height: 25px;
  stroke: var(--gold);
  stroke-width: .8px;
}

.process-step h3 {
  letter-spacing: -.025em;
  margin: 24px 0 12px;
  font-size: 27px;
  font-weight: 400;
}

.process-step p {
  max-width: 300px;
  color: var(--muted);
  font-size: 16px;
}


















.evidence-status {
  color: #dcc483;
}




.contact {
  text-align: center;
  background: radial-gradient(at bottom, #d4af3708, #0000 60%);
  padding-block: 100px 108px;
}

.contact h2 {
  margin: 28px 0 24px;
  font-size: clamp(40px, 4.8vw, 74px);
}

.contact > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.contact .button {
  position: relative;
  width: min(100%, 260px);
  margin-top: 32px;
  padding-inline: 48px;
}

.contact .button > span {
  position: absolute;
  right: 24px;
  top: 50%;
  display: flex;
  transform: translateY(-50%);
}

.contact .button svg {
  width: 16px;
  height: 16px;
}

.contact-note {
  color: var(--muted);
  margin-top: 18px;
  font-size: 11px;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 120px;
  display: flex;
}

.site-footer .wordmark {
  font-size: 14px;
}

.site-footer p, .site-footer small {
  color: var(--muted);
  font-size: 11px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: .9s ease-out both arrive;
  }

  .hero-art img {
    animation: 1.4s ease-out both light-in;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes light-in {
    from {
      opacity: .4;
    }

    to {
      opacity: .95;
    }
  }
}

@media (width >= 1700px) {
  .hero-art img {
    object-position: center 56%;
  }

  .hero-art:after {
    background: linear-gradient(90deg, #0a0a0c 0%, #0a0a0cf0 24%, #0a0a0c60 45%, #0000 64%), linear-gradient(0deg, #0a0a0c, #0000 18%);
  }
}

@media (width <= 1000px) {
  .hero-inner {
    min-height: 700px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.5vw, 68px);
  }

  .hero-art {
    width: 108%;
    left: 12%;
  }

  .hero-art:after {
    background: linear-gradient(90deg, #0a0a0c 0%, #0a0a0ccc 25%, #0000 75%), linear-gradient(0deg, #0a0a0c, #0000 25%);
  }

  .section-intro {
    gap: 32px;
  }

  .process-grid {
    gap: 28px;
  }



  .site-footer {
    flex-wrap: wrap;
    padding-block: 28px;
  }

  .site-footer small {
    width: 100%;
  }
}

@media (width <= 700px) {
  :root {
    --space: 24px;
  }

  .site-header {
    height: 80px;
  }

  .wordmark {
    font-size: 15px;
  }

  .header-contact {
    font-size: 12px;
  }

  .header-contact span {
    margin-left: 12px;
  }

  .hero-inner {
    height: auto;
    min-height: 0;
    padding-top: 62px;
    padding-bottom: 32px;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .hero h1 {
    letter-spacing: -.05em;
    margin: 20px 0 24px;
    font-size: clamp(40px, 8.6vw, 59px);
    line-height: 1.1;
  }

  .hero .eyebrow {
    letter-spacing: .14em;
    font-size: 9px;
  }

  .hero-description {
    max-width: 420px;
    font-size: 15px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
  }

  .button {
    gap: 24px;
    min-height: 52px;
    padding: 14px 20px;
    font-size: 13px;
  }

  .hero-actions .text-link {
    gap: 12px;
    font-size: 12px;
  }

  .hero-art {
    z-index: -1;
    width: 100%;
    height: 350px;
    inset: 400px 0 0;
  }

  .hero-art img {
    object-fit: cover;
    object-position: 70% center;
  }

  .hero-art:after {
    background: linear-gradient(#0a0a0c 0%, #0000 30% 75%, #0a0a0c 100%);
  }

  .hero-footnote {
    gap: 12px;
    margin-top: 310px;
    position: relative;
    bottom: auto;
  }

  .hairline {
    width: 26px;
  }

  .section {
    padding-block: 56px;
  }

  .section-label {
    margin-bottom: 26px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro h2 {
    font-size: 40px;
  }

  .section-intro > p {
    max-width: 460px;
    font-size: 15px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 38px;
  }

  .step-top {
    padding-bottom: 12px;
  }

  .process-step h3 {
    margin: 18px 0 8px;
    font-size: 25px;
  }

  .process-step p {
    max-width: 100%;
    font-size: 15px;
  }









  .contact {
    padding-block: 64px;
  }

  .contact h2 {
    font-size: 42px;
  }

  .contact > p:not(.eyebrow) {
    font-size: 15px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer small {
    width: auto;
  }
}

@media (width <= 360px) {
  .hero-actions {
    gap: 10px;
  }

  .hero-actions .text-link {
    min-height: 44px;
  }

  .hero-art {
    top: 445px;
  }

  .hero-footnote {
    margin-top: 320px;
  }

  .section-intro h2, .contact h2 {
    font-size: 35px;
  }


  .eyebrow {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, :before, :after {
    transition: none !important;
    animation: none !important;
  }
}

.hero-art {
  height: calc(100% - 28px);
  top: 28px;
}

.hero-footnote {
  left: 0;
  right: 0;
}

@media (width >= 1001px) {
  .hero-art:after {
    background: linear-gradient(90deg, #0a0a0c 0%, #0a0a0cf5 30%, #0a0a0ca8 44%, #0000 65%), linear-gradient(0deg, #0a0a0c, #0000 18% 85%, #0a0a0c99);
  }
}

@media (width <= 700px) {
  .hero {
    flex-direction: column;
    padding-bottom: 28px;
    display: flex;
  }

  .hero-inner {
    order: 1;
    padding-bottom: 0;
  }

  .hero-art {
    order: 2;
    width: 100%;
    height: 350px;
    margin-top: 20px;
    position: relative;
    inset: auto;
  }

  .hero-art img {
    object-position: 76% center;
  }

  .hero-art:after {
    background: linear-gradient(#0a0a0c 0%, #0000 22% 80%, #0a0a0c 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-footnote {
    letter-spacing: .14em;
    order: 3;
    margin-top: 12px;
    font-size: 9px;
    position: static;
  }


}

@media (min-width: 701px) {
  .hero-copy { padding-bottom: 0; }
  .hero-inner { height: min(820px, calc(100svh - 100px)); }
  .hero-art img { object-fit: contain; object-position: right center; }
}
@media (max-width: 700px) {
  .hero-art { height: 320px; }
  .hero-art img { object-fit: contain; object-position: right center; }
}
