:root {
  color-scheme: dark;
  --bg: #050505;
  --fg: #f7f7f4;
  --muted: #b9b9b2;
  --line: #f7f7f4;
  --focus: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(247, 247, 244, 0.075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(247, 247, 244, 0.065) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(28px, 6vw, 80px);
  place-items: center;
}

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

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.summary {
  max-width: 540px;
  margin: clamp(26px, 4vw, 40px) auto 0;
  color: var(--fg);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: clamp(34px, 5vw, 54px);
}

.destination {
  display: grid;
  gap: 10px;
  width: min(100%, 260px);
}

.destination p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  min-height: 54px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--fg);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-1px);
}

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

@media (max-width: 560px) {
  .page-shell {
    padding: 30px 18px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
  }

  .button {
    width: 100%;
  }

  .destination {
    width: 100%;
  }
}
