@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Mono:wght@400;700&display=swap");

:root {
  color-scheme: dark;
  --ink: #f1d7ae;
  --muted: #b59b7a;
  --brown: #9b4d2c;
  --dark: #0b0806;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--dark);
  color: var(--ink);
  font-family: "Space Mono", ui-monospace, monospace;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #0b0806;
}

.backdrop,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.backdrop {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) brightness(.72) contrast(1.08);
  animation: breathe 12s ease-in-out infinite alternate;
}

.shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 5, 3, .92) 0%, rgba(8, 5, 3, .53) 45%, rgba(8, 5, 3, .15) 75%, rgba(8, 5, 3, .55) 100%),
    linear-gradient(0deg, rgba(8, 5, 3, .86) 0%, transparent 45%, rgba(8, 5, 3, .45) 100%);
}

.nav,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 4vw, 68px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(241, 215, 174, .38);
  border-radius: 50%;
  object-fit: cover;
}

.ticker {
  padding: 9px 13px;
  border: 1px solid rgba(241, 215, 174, .35);
  border-radius: 999px;
  background: rgba(11, 8, 6, .32);
  backdrop-filter: blur(9px);
}

.statement {
  align-self: center;
  width: min(920px, calc(100% - 44px));
  margin-left: clamp(22px, 8vw, 140px);
  padding: 40px 0 70px;
}

.eyebrow,
.subline {
  margin: 0;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: .21em;
}

.eyebrow {
  color: #d98756;
}

h1 {
  max-width: 880px;
  margin: 18px 0 24px;
  color: #f5dfbd;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(64px, 10.4vw, 172px);
  line-height: .82;
  letter-spacing: -.065em;
  text-wrap: balance;
  text-shadow: 0 10px 45px rgba(0, 0, 0, .42);
}

.subline {
  color: var(--muted);
}

footer {
  justify-content: flex-start;
  gap: 24px;
  color: rgba(241, 215, 174, .55);
  border-top: 1px solid rgba(241, 215, 174, .12);
}

footer span:nth-child(2) {
  color: #bd6540;
  font-size: 18px;
}

@keyframes breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@media (max-width: 720px) {
  .backdrop {
    object-position: 61% center;
  }

  .shade {
    background:
      linear-gradient(90deg, rgba(8, 5, 3, .9) 0%, rgba(8, 5, 3, .58) 75%, rgba(8, 5, 3, .35) 100%),
      linear-gradient(0deg, rgba(8, 5, 3, .9) 0%, transparent 56%, rgba(8, 5, 3, .4) 100%);
  }

  .statement {
    align-self: end;
    margin-left: 22px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(55px, 20vw, 92px);
    line-height: .86;
  }

  footer {
    gap: 12px;
    overflow: hidden;
    white-space: nowrap;
  }

  footer span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .backdrop {
    animation: none;
  }
}
