:root {
  color-scheme: dark;
  --bg: #000;
  --fg: #fff;
  --copy: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.76);
  --button-bg: #fff;
  --button-fg: #000;
  --font-display: "termina", "Arial Black", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.hero {
  display: flex;
  justify-content: center;
  padding-block: 8px 40px;
}

.hero-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
}

.hero-copy {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  text-align: center;
}

.hero-title,
.hero-tagline {
  margin: 0;
  max-width: 100%;
  background: var(--bg);
  text-transform: uppercase;
  cursor: default;
  white-space: nowrap;
}

.hero-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-globe {
  width: 100px;
  height: auto;
}

.intro {
  padding-top: 40px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline {
  max-width: 16ch;
  margin: 0 0 20px;
  text-align: center;
  font-size: clamp(1.75rem, 6vw, 3.125rem);
  font-weight: 600;
  line-height: 1;
}

.lede {
  max-width: 900px;
  margin: 0 0 24px;
  padding-inline: 80px;
  text-align: center;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.55;
}

.cta-button {
  display: inline-block;
  margin-top: 2px;
  padding: 12px 20px 8px;
  border-radius: 5px;
  background: var(--button-bg);
  color: var(--button-fg);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(2px) scale(0.98);
}

.contact-note {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
}

.campaign-image {
  width: min(100%, 1040px);
  height: auto;
  margin-top: 50px;
  margin-bottom: 30px;
  border-radius: 40px;
}

@media (max-width: 767px) {
  .page-shell {
    padding-inline: 20px;
    padding-bottom: 80px;
  }

  .intro {
    padding-top: 20px;
  }

  .lede {
    padding-inline: 20px;
  }

  .campaign-image {
    border-radius: 20px;
  }
}

@media (max-width: 479px) {
  .page-shell {
    padding-top: 28px;
    padding-inline: 16px;
    padding-bottom: 48px;
  }

  .hero {
    padding-bottom: 16px;
  }

  .hero-mark {
    min-height: 76px;
  }

  .hero-globe {
    width: 72px;
  }

  .hero-title {
    font-size: 16px;
    line-height: 1;
  }

  .hero-tagline {
    font-size: 9px;
    line-height: 1.33;
  }

  .headline {
    font-size: 28px;
    line-height: 1.28;
  }

  .lede {
    padding-inline: 0;
    margin-bottom: 18px;
  }

  .contact-note {
    font-size: 10px;
    line-height: 1.4;
  }

  .campaign-image {
    margin-top: 36px;
    margin-bottom: 20px;
  }
}
