:root {
  color-scheme: dark;
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.68);
  --accent: #ff6b3d;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #11110f;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
}

.background,
.shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.background {
  object-fit: cover;
  object-position: center;
}

.shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 7, 0.86) 0%,
      rgba(8, 8, 7, 0.54) 36%,
      rgba(8, 8, 7, 0.05) 72%
    ),
    linear-gradient(0deg, rgba(8, 8, 7, 0.56), transparent 42%);
}

header,
.intro,
footer {
  width: min(calc(100% - 64px), 1240px);
  margin-inline: auto;
}

header {
  padding-top: 34px;
}

header a {
  display: inline-block;
}

header img {
  display: block;
  width: 176px;
  height: auto;
}

.intro {
  align-self: center;
  padding-block: 64px;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.product {
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

footer {
  padding-bottom: 28px;
  color: rgba(247, 244, 238, 0.5);
  font-size: 0.78rem;
}

@media (max-width: 700px) {
  header,
  .intro,
  footer {
    width: calc(100% - 36px);
  }

  header {
    padding-top: 24px;
  }

  header img {
    width: 148px;
  }

  .background {
    object-position: 64% center;
  }

  .shade {
    background:
      linear-gradient(
        90deg,
        rgba(8, 8, 7, 0.78) 0%,
        rgba(8, 8, 7, 0.26) 80%
      ),
      linear-gradient(0deg, rgba(8, 8, 7, 0.62), transparent 55%);
  }

  .intro {
    align-self: end;
    padding-bottom: 18vh;
  }
}
