:root {
  --red: #a50f16;
  --red-dark: #7f090f;
  --gold: #df9200;
  --text: #252525;
  --muted: #6e6e6e;
  --line: #e9e9e9;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
}

main {
  min-height: calc(100svh - 60px);
  display: grid;
  place-items: center;
  padding: 42px 24px;
}

.notice {
  width: min(720px, 100%);
  text-align: center;
}

.brands {
  display: grid;
  grid-template-columns: 150px 48px 270px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
}

.brand span {
  position: absolute;
  top: 0;
  color: #999;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.brand img {
  display: block;
  max-width: 100%;
  max-height: 100px;
  margin-top: 22px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.old-brand { opacity: .72; }
.old-brand img { width: 100px; }
.new-brand img { width: 260px; }

.arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 21px;
}

.text {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.message {
  max-width: 590px;
  margin: 20px auto 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(223, 146, 0, .35);
  outline-offset: 4px;
}

.button span { font-size: 20px; }

.redirect {
  margin: 18px 0 0;
  color: #999;
  font-size: 12px;
}

.redirect strong { color: #777; }

footer {
  height: 60px;
  display: grid;
  place-items: center;
  border-top: 1px solid #f1f1f1;
  color: #999;
  font-size: 12px;
}

@media (max-width: 620px) {
  main {
    min-height: calc(100svh - 50px);
    align-items: start;
    padding: 34px 20px 30px;
  }

  .brands {
    grid-template-columns: 90px 34px minmax(130px, 190px);
    gap: 12px;
    margin-bottom: 34px;
  }

  .brand { height: 100px; }
  .brand span { font-size: 9px; }
  .brand img { max-height: 75px; }
  .old-brand img { width: 72px; }
  .new-brand img { width: 185px; }

  .arrow {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .text { padding-top: 30px; }
  .message { font-size: 15px; line-height: 1.55; }
  .button { width: 100%; }
  .redirect { line-height: 1.5; }
  footer { height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
