:root {
  --black: #070707;
  --white: #f3f1ec;
  --page-pad: clamp(1.5rem, 5vw, 5rem);
}

* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; }
body {
  margin: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Times New Roman", Times, serif;
  -webkit-font-smoothing: antialiased;
}

#field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: var(--page-pad);
  display: grid;
  align-items: center;
  justify-items: start;
}

.hero { text-align: left; }

.lockup {
  width: fit-content;
  margin-inline: 0;
}

h1 {
  margin: 0;
  text-align: left;
  white-space: nowrap;
  font-size: clamp(7rem, 22vw, 21rem);
  font-weight: 400;
  line-height: .7;
  letter-spacing: -.085em;
}

.title-text { display: inline-block; }

p {
  width: 100%;
  margin: clamp(1.12rem, 2.8vw, 2.45rem) 0 0;
  text-align: left;
  font-size: clamp(2.3rem, 6vw, 5.5rem);
  line-height: 1;
}

.subtitle-text {
  display: inline-block;
  white-space: nowrap;
}

a {
  margin-top: clamp(2.75rem, 6vw, 5rem);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: .35em;
}

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

a span { transition: transform .2s ease; }
a:hover span,
a:focus-visible span { transform: translate(.2rem, -.2rem); }

.hero > a {
  position: relative;
  padding: .9rem 1.35rem .95rem 1.5rem;
  border: 1px solid rgba(243, 241, 236, .72);
  background: rgba(7, 7, 7, .78);
  box-shadow: inset 3px 0 #ef1838;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  text-decoration: none;
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hero > a::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -3px;
  width: 19px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.hero > a:hover,
.hero > a:focus-visible {
  background: #d40f32;
  border-color: #ff5367;
  box-shadow: inset 3px 0 #ff5367;
}

.legal-footer {
  position: fixed;
  z-index: 2;
  left: var(--page-pad);
  bottom: clamp(1rem, 2.5vw, 2rem);
}

.legal-footer nav {
  display: flex;
  gap: 1.25rem;
}

.legal-footer a {
  margin: 0;
  color: rgba(243, 241, 236, .62);
  font-family: Arial, sans-serif;
  font-size: .68rem;
  text-decoration: none;
}

.legal-footer a:hover,
.legal-footer a:focus-visible { color: var(--white); }

@media (max-width: 600px) {
  h1 { font-size: clamp(6.2rem, 35vw, 9rem); }
  p { font-size: clamp(1.65rem, 7.6vw, 2.1rem); }

  .legal-footer {
    bottom: max(.5rem, env(safe-area-inset-bottom));
  }

  .legal-footer nav { gap: 1rem; }

  .legal-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: .7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  a span { transition: none; }
}
