:root {
  color-scheme: dark;
  --text: #f7f3ea;
  --muted: #ddd5c6;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  background: #050605;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.placeholder {
  min-height: 100svh;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding: clamp(28px, 6vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.9) 0%, rgba(5, 6, 5, 0.68) 42%, rgba(5, 6, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 6, 5, 0.08) 0%, rgba(5, 6, 5, 0.78) 100%),
    url("assets/tf20-placeholder.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 7px
    );
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

h1 {
  margin: 0;
  color: #fff;
  font-size: min(11vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: min(1.6vw, 1.25rem);
  line-height: 1.65;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .hero {
    align-items: end;
    background-position: center top;
  }
}
