:root {
  --canvas: #100d0b;
  --ink: #f7f0e8;
  --muted: #c7bcb1;
  --orange: #ff8a42;
  --orange-deep: #d85a16;
  --button-ink: #1c1008;
  --line: rgba(247, 240, 232, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.055) 0 17%, rgba(255, 255, 255, 0.018) 18% 26%, transparent 27%) 0 0 / 32px 32px,
    radial-gradient(circle at center, transparent 0 28%, rgba(0, 0, 0, 0.38) 29% 33%, transparent 34%) 0 0 / 32px 32px,
    radial-gradient(circle at 82% 7%, rgba(216, 90, 22, 0.26), transparent 32rem),
    var(--canvas);
}

.page {
  width: min(100%, 1440px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 82px) 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: block;
  width: clamp(145px, 15vw, 205px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(247, 240, 232, 0.3);
  border-radius: 4px;
  background: rgba(16, 13, 11, 0.6);
}

.language-button {
  min-width: 38px;
  min-height: 32px;
  padding: 4px 7px;
  border: 0;
  border-radius: 2px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-button:hover {
  color: var(--ink);
}

.language-button[aria-pressed="true"] {
  color: var(--button-ink);
  background: var(--orange);
}

.language-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.content {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.78fr);
  align-items: center;
  justify-content: space-between;
  gap: clamp(42px, 10vw, 170px);
  padding: clamp(42px, 7vh, 88px) 0 42px;
}

.message {
  max-width: 590px;
  animation: rise-in 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-family: "Bookman Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.1rem, 6.3vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.message > p:not(.eyebrow, .download-details) {
  max-width: 39rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.download {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 32px;
  padding: 12px 18px;
  border: 1px solid var(--orange);
  border-radius: 4px;
  color: var(--button-ink);
  background: var(--orange-deep);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.72);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.download:hover {
  background: var(--orange);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.72);
  transform: translate(2px, 2px);
}

.download:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.download-details {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.availability {
  max-width: 34rem;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.availability-title {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.availability-copy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.retailers {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.retailers a {
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.retailers a:hover {
  color: var(--ink);
}

.retailers a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.product {
  width: min(100%, 460px);
  aspect-ratio: 1;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 240, 232, 0.28);
  background: #25201c;
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.46);
  animation: rise-in 700ms 130ms ease-out both;
}

.product img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .page {
    min-height: auto;
    padding: 24px 22px 20px;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 0 56px;
  }

  .retailers {
    display: grid;
    gap: 9px;
  }

  .product {
    width: min(100%, 440px);
    justify-self: start;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.46);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}