:root {
  color-scheme: light;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  background: #f6f3ea;
  color: #18323b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    linear-gradient(110deg, transparent 0 68%, rgb(216 103 62 / 10%) 68% 70%, transparent 70%),
    #f6f3ea;
}

main {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
}

.identity {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #33545e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #164e60;
  color: #fffaf0;
  font-weight: 800;
}

section {
  align-self: center;
  max-width: 720px;
  padding: 48px 0 15vh;
}

.app-name {
  margin: 0 0 20px;
  color: #b65332;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.6rem, 11vw, 8.4rem);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.message {
  max-width: 520px;
  margin: 36px 0 28px;
  color: #48636b;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}

a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  color: #164e60;
  font-weight: 750;
  text-underline-offset: 5px;
}

a:hover {
  color: #b65332;
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid #db673e;
  outline-offset: 6px;
}

@media (prefers-reduced-motion: no-preference) {
  a span {
    transition: transform 160ms ease-out;
  }

  a:hover span {
    transform: translateX(4px);
  }
}
