.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-media {
  position: absolute;
  inset: 12px;
  overflow: hidden;
  border-radius: 28px;
  background: #0d0f0d;
}

.hero-media > img,
.hero-media > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media > img {
  transform: scale(1.025) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 800ms var(--ease-out);
}

.hero-media > video {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-media > video.is-playing {
  opacity: 1;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 10, 9, 0.65), transparent 62%);
  content: "";
}

.hero-depth {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0);
  transition: transform 700ms var(--ease-out);
}

.hero-depth-one {
  top: 13%;
  right: 10%;
  width: min(38vw, 580px);
  aspect-ratio: 1;
}

.hero-depth-two {
  right: 24%;
  bottom: 18%;
  width: min(18vw, 260px);
  aspect-ratio: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: var(--page);
  align-self: center;
  margin: 0 auto;
  padding: 110px 0 90px;
}

.hero-kicker {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.19em;
}

.hero-title {
  max-width: 1150px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 9.2vw, 148px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero-title span {
  display: block;
}

.hero-title .accent-line {
  color: var(--red-bright);
}

.reveal-line {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
}

.hero.is-ready .reveal-line {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 650ms var(--ease-out),
    transform 650ms var(--ease-out),
    filter 650ms var(--ease-out);
}

.hero.is-ready .hero-title span:nth-child(1) {
  transition-delay: 100ms;
}

.hero.is-ready .hero-title span:nth-child(2) {
  transition-delay: 190ms;
}

.hero.is-ready .hero-bottom {
  transition-delay: 300ms;
}

.hero.is-ready .hero-note {
  transition-delay: 420ms;
}

.hero-bottom {
  display: flex;
  max-width: 920px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 42px;
}

.hero-bottom > p {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 22px;
}

.hero-note {
  position: absolute;
  z-index: 6;
  right: max(46px, calc((100vw - 1440px) / 2));
  bottom: 104px;
  margin: 0;
  color: var(--red-bright);
  font-family: var(--hand);
  font-size: 18px;
  transform: rotate(-4deg);
}

.hero-coordinates {
  position: absolute;
  z-index: 6;
  right: max(46px, calc((100vw - 1440px) / 2));
  bottom: 42px;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 38px;
  left: max(46px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.proof-strip > div {
  min-height: 142px;
  padding: 24px 22px 20px 0;
}

.proof-strip > div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.proof-strip span,
.proof-strip b,
.proof-strip p {
  display: block;
}

.proof-strip span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.proof-strip b {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.05em;
}

.proof-strip p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 10px;
}
