:root {
  --band: #33343f;
  --panel: #434459;
  --soft: #999a9f;
  --light: #f7f7f7;
  --yellow: #f8bd26;
  --white: #fff;
  --ink: #30313b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--band);
  color: var(--white);
  font-family: Avenir, "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.16em;
}

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

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--yellow);
  color: #000;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-band {
  height: 97px;
  background: var(--band);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 118px;
  font-size: clamp(42px, 4vw, 50px);
  line-height: 1.34;
  text-align: center;
}

h2 {
  margin-bottom: 56px;
  font-size: clamp(34px, 3.3vw, 40px);
  line-height: 1.35;
  text-align: center;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
}

.hero {
  min-height: 787px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #000;
}

.hero-image {
  width: 100%;
  height: 787px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  min-width: 0;
  min-height: 787px;
  padding: 126px 8% 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.hero-copy p {
  margin-bottom: 78px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.42;
}

.button {
  min-width: 164px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.button-yellow {
  background: var(--yellow);
  color: #111;
}

.button-white {
  background: var(--white);
  color: var(--ink);
}

.section {
  padding: 82px 24px;
}

.content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.content.narrow {
  width: min(732px, 100%);
}

.text-block p {
  margin-bottom: 27px;
}

.section-story {
  background: var(--band);
}

.section-condition,
.section-help {
  background: var(--panel);
}

.section-why,
.section-journey {
  background: var(--soft);
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
  text-align: center;
}

.condition-grid article p {
  margin: 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.75;
}

.closing-line {
  margin: 58px 0 0;
  text-align: center;
  font-style: italic;
}

.section-support {
  background: var(--light);
  color: var(--ink);
  padding-block: 84px 98px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-grid article {
  min-height: 178px;
  padding: 48px;
  background: var(--panel);
  color: var(--white);
}

.support-grid h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.support-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.18;
}

.journey-actions {
  margin: 30px 0;
  display: grid;
  gap: 28px;
  justify-content: start;
}

.section-help {
  scroll-margin-top: 0;
}

.payment-list {
  margin: 32px 0;
  padding-left: 46px;
}

.payment-list p,
.crypto-list p,
.notice p {
  margin-bottom: 18px;
}

.crypto-list code {
  overflow-wrap: anywhere;
  font: inherit;
}

.notice {
  margin-top: 36px;
}

.section-contact {
  background: #000;
  padding-block: 76px;
}

.section-contact h2 {
  text-align: center;
}

footer {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--band);
  font-size: 14px;
}

@media (max-width: 800px) {
  body {
    font-size: 18px;
  }

  .top-band {
    height: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: min(115vw, 620px);
  }

  .hero-copy {
    min-height: auto;
    padding: 68px 24px 74px;
  }

  h1 {
    margin-bottom: 46px;
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.14;
  }

  .hero-copy p {
    margin-bottom: 48px;
    font-size: 19px;
  }

  .hero-copy br {
    display: none;
  }

  .section {
    padding: 64px 24px;
  }

  h2 {
    margin-bottom: 42px;
  }

  .condition-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .condition-grid {
    gap: 42px;
  }

  .support-grid article {
    min-height: 0;
    padding: 32px;
  }

  .payment-list {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
