.site-header,
.download-section,
.download-section h2 {
  text-align: center;
}

.hero-intro h1 {
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 38px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 48px;
  border: 2px solid var(--green);
  border-radius: 999px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 24px;
  text-align: center;
  text-decoration: none;
}

.hero-action-primary {
  background-color: var(--green);
  color: #101610;
}

.hero-action-secondary {
  background-color: transparent;
  color: var(--green-soft);
}

.hero-action:hover,
.hero-action:focus-visible {
  border-color: #ffffff;
}

.hero-action-primary:hover,
.hero-action-primary:focus-visible {
  background-color: #ffffff;
}

.hero-action-secondary:hover,
.hero-action-secondary:focus-visible {
  color: #ffffff;
}

.hero-action-secondary:active {
  border-color: var(--green);
  background-color: var(--green);
  color: #ffffff;
}

.mobile-scroll-cue {
  display: none;
}

.scroll-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 28px;
}

.wallet {
  display: block;
  width: min(var(--wallet-width), 100%);
  margin: 28px auto 128px;
}

.text-block {
  max-width: var(--text-width);
  margin: 0 auto 36px;
}

.text-block + .text-block {
  border-top: 1px solid rgba(131, 229, 141, 0.22);
  padding-top: 32px;
}

.download-section {
  margin-bottom: 0;
}

.mobile-download-note {
  display: none;
}

div.down {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  max-width: var(--text-width);
  margin: 0 auto 36px;
  border: 4px solid var(--green);
  border-radius: 8px;
  background-color: #bfd3bd;
  padding: 26px;
}

.download-option {
  min-width: 0;
  text-align: center;
}

.download-option p,
.platform-name,
.status {
  margin: 0 0 12px;
  color: #000000;
  font-size: 26px;
  line-height: 1.1;
  text-align: center;
}

.button1 {
  min-height: 44px;
  border: 2px solid #000000;
  border-radius: 4px;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  font-family: 'Teko', Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  padding: 5px 28px;
}

.button1:hover,
.button1:focus-visible {
  background-color: #000000;
  color: #ffffff;
}

@media (min-width: 1600px) {
  .hero-actions {
    gap: 18px;
    margin-bottom: 52px;
  }

  .hero-action {
    min-width: 154px;
    min-height: 54px;
    font-size: 32px;
    padding: 9px 28px;
  }

  .wallet {
    margin: 38px auto 146px;
  }

  .text-block {
    margin-bottom: 44px;
  }

  div.down {
    gap: 24px;
    padding: 28px;
  }
}

@media (min-width: 2400px) {
  .hero-actions {
    gap: 28px;
    margin-bottom: 76px;
  }

  .hero-action {
    min-width: 220px;
    min-height: 74px;
    font-size: 44px;
    padding: 12px 42px;
  }

  .wallet {
    margin: 64px auto 172px;
  }

  .text-block {
    margin-bottom: 68px;
  }

  div.down {
    gap: 34px;
    padding: 34px;
  }

  .platform-name,
  .status {
    font-size: 38px;
  }

  .button1 {
    min-height: 64px;
    font-size: 42px;
    padding: 8px 48px;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: block;
  }

  .hero-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - var(--page-pad-y));
    min-height: calc(100svh - var(--page-pad-y));
    padding-top: 152px;
    padding-bottom: 48px;
    text-align: center;
  }

  .hero-actions {
    gap: 14px;
    margin-bottom: 42px;
  }

  .hero-action {
    min-width: 132px;
    min-height: 50px;
    font-size: 28px;
    padding: 8px 20px;
  }

  .mobile-scroll-cue {
    display: block;
    position: relative;
    width: 64px;
    height: 76px;
    margin-top: auto;
    cursor: pointer;
    text-decoration: none;
    touch-action: manipulation;
  }

  .mobile-scroll-cue::before,
  .mobile-scroll-cue::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-scroll-cue::before {
    top: 0;
    width: 13px;
    height: 50px;
    border-radius: 999px;
    background-color: #ffffff;
  }

  .mobile-scroll-cue::after {
    bottom: 0;
    width: 0;
    height: 0;
    border-right: 27px solid transparent;
    border-left: 27px solid transparent;
    border-top: 31px solid #ffffff;
  }

  .wallet {
    width: min(100%, 560px);
    margin: 64px auto 142px;
  }

  .download-section {
    display: none;
  }

  div.down {
    display: block;
    margin-bottom: 0;
    border-width: 3px;
    padding: 22px 16px;
  }

  .mobile-download-note {
    display: block;
    max-width: 360px;
    margin: 0 auto;
    color: var(--ink);
    font-size: 25px;
    line-height: 1.45;
    text-align: center;
  }

  .download-option {
    display: none;
  }

  .text-block {
    margin-bottom: 62px;
  }

  .text-block + .text-block {
    padding-top: 34px;
  }
}

@media (max-width: 430px) {
  .site-header {
    min-height: 0;
    padding-top: 0;
  }

  .hero-intro {
    min-height: calc(100vh - var(--page-pad-y));
    min-height: calc(100svh - var(--page-pad-y));
    padding-top: 138px;
    padding-bottom: 40px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero-action {
    min-width: 118px;
    min-height: 46px;
    font-size: 25px;
    padding: 7px 18px;
  }

  .mobile-scroll-cue {
    width: 58px;
    height: 68px;
  }

  .mobile-scroll-cue::before {
    width: 12px;
    height: 44px;
  }

  .mobile-scroll-cue::after {
    border-right-width: 24px;
    border-left-width: 24px;
    border-top-width: 28px;
  }

  .wallet {
    width: min(100%, 490px);
    margin: 60px auto 126px;
  }

  .download-section {
    margin-top: 38px;
    margin-bottom: 52px;
  }

  .mobile-download-note {
    max-width: 320px;
    font-size: 23px;
  }
}
