@font-face {
  font-family: "Redko Address";
  src: url("/address-font.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: dark;
  font-family: "Redko Address", sans-serif;
  background: #0e0e10;
  color: #f4f2f0;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
::selection {
  background: #b0102f;
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #f4f2f0;
  outline-offset: 6px;
}
.masthead,
main,
footer {
  width: min(100% - 48px, 960px);
  margin-inline: auto;
}
.masthead {
  padding-block: 32px;
}
.brand {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand span {
  color: #9a9aa2;
  font-weight: 500;
  margin-left: 5px;
}
main {
  flex: 1;
  padding-block: clamp(40px, 9vh, 104px) 64px;
}
h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 750;
  text-wrap: balance;
}
.intro {
  color: #c9c9cf;
  line-height: 1.7;
  margin: 18px 0 0;
  font-size: 17px;
}
.destination {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #2a2a31;
}
h2 {
  margin: 0;
  color: #9a9aa2;
  font-size: 14px;
  font-weight: 500;
}
.domain {
  font-size: clamp(40px, 8.5vw, 88px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 16px 0 32px;
  overflow-wrap: anywhere;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  min-height: 56px;
  padding: 16px 24px;
  background: #b0102f;
  color: #fff;
  border-radius: 7px;
  font-weight: 650;
  font-size: 17px;
  transition: background 0.18s ease-out;
}
.button:hover {
  background: #c51235;
}
.button:active {
  background: #960d29;
}
.note {
  margin: 32px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #9a9aa2;
}
.channel,
.guide {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #2a2a31;
}
.channel h2,
.guide h2 {
  color: #f4f2f0;
  font-size: 20px;
  font-weight: 650;
}
.channel p,
.guide p {
  color: #c9c9cf;
  font-size: 15px;
  line-height: 1.85;
  max-width: 70ch;
  margin: 16px 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.handle {
  color: #f4f2f0;
}
.secondary {
  background: #1f1f24;
  border: 1px solid #45454e;
  margin-top: 8px;
  gap: 24px;
}
.secondary:hover {
  background: #303037;
}
.secondary:active {
  background: #161619;
}
footer {
  border-top: 1px solid #2a2a31;
  padding-block: 24px;
  color: #9a9aa2;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 480px) {
  .masthead,
  main,
  footer {
    width: calc(100% - 40px);
  }
  .masthead {
    padding-block: 24px;
  }
  .button {
    width: 100%;
  }
  .intro {
    font-size: 15px;
  }
  .destination {
    margin-top: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
