@font-face {
  font-family: 'Teko';
  src: url('Teko-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #141414;
  --text: #f7fff7;
  --green: #66d86f;
  --green-soft: #83e58d;
  --panel: #d0d0d0;
  --panel-light: #e5e5e5;
  --field: #f5f5f5;
  --ink: #101610;
  --muted: #555555;
  --line: #8d8d8d;
  --blue: #007aff;
  --blue-dark: #006ee6;
  --red: #c1121f;
  --page-width: 1000px;
  --text-width: 620px;
  --visual-width: 720px;
  --page-pad-x: 24px;
  --page-pad-y: 32px;
  --page-pad-bottom: 48px;
  --h1-size: 100px;
  --h2-size: 40px;
  --p-size: 26px;
  --logo-size: 72px;
  --wallet-width: 720px;
  --chart-height: 280px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  min-width: 0;
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Teko', Arial, sans-serif;
  letter-spacing: 0.034em;
  line-height: 1.38;
  word-spacing: 0.22em;
}

img {
  height: auto;
  max-width: 100%;
}

strong,
b {
  font-weight: 400;
}

a {
  color: var(--green-soft);
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

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

.page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--page-pad-y) var(--page-pad-x) var(--page-pad-bottom);
}

.site-menu {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10;
}

.home-nav-link {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 10;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.92);
  color: #101610;
  font-family: 'Teko', Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  padding: 11px 22px;
  text-decoration: none;
}

.home-nav-link:hover,
.home-nav-link:focus-visible {
  border-color: #ffffff;
  background-color: #ffffff;
}

.home-arrow {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 10;
  display: block;
  width: 76px;
  height: 64px;
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
}

.home-arrow::before,
.home-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.home-arrow::before {
  left: 20px;
  width: 50px;
  height: 13px;
  border-radius: 999px;
  background-color: #ffffff;
}

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

.home-arrow:hover,
.home-arrow:focus-visible {
  opacity: 0.82;
  outline: none;
}

.site-menu-button {
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.92);
  color: #101610;
  cursor: pointer;
  font-family: 'Teko', Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  padding: 11px 22px;
}

.site-menu-button:hover,
.site-menu-button:focus-visible,
.site-menu.open .site-menu-button {
  border-color: #ffffff;
  background-color: #ffffff;
}

.site-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 24px);
  overflow: hidden;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.site-menu-panel a {
  display: block;
  padding: 14px 24px;
  color: #101610;
  font-family: 'Teko', Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
}

.site-menu-panel a:hover,
.site-menu-panel a:focus-visible {
  background-color: #ececec;
}

.site-menu-panel a + a {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-menu-panel .site-menu-primary {
  border-left: 3px solid var(--green);
  background-color: #f1f1f1;
  font-weight: 700;
  padding-left: 21px;
}

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

h1,
h2,
p {
  font-family: 'Teko', Arial, sans-serif;
  letter-spacing: inherit;
}

h1 {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
}

h2 {
  margin: 34px 0 12px;
  color: var(--green);
  font-size: var(--h2-size);
  font-weight: 300;
  line-height: 1.05;
  text-align: left;
}

p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: var(--p-size);
  line-height: 1.38;
  overflow-wrap: break-word;
  text-align: left;
}

.logo {
  display: block;
  width: var(--logo-size);
  margin: 0 auto 8px;
}

.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;
}

.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;
}

.buy-section {
  width: 100%;
  max-width: var(--visual-width);
  margin: 0 auto 44px;
}

.buy-page {
  min-height: 100vh;
  padding-top: 18px;
}

.downloads-page {
  min-height: 100vh;
  padding-top: 18px;
}

.page-logo-header {
  margin: 0 auto 42px;
  text-align: center;
}

.page-logo-header .logo {
  width: var(--logo-size);
  height: auto;
  margin-bottom: 8px;
  object-fit: contain;
}

.page-logo-header h1 {
  margin-top: 0;
}

.buy-page-header {
  max-width: var(--visual-width);
}

.buy-page-header h1 {
  font-size: clamp(48px, 7vw, 64px);
  line-height: 1;
}

.downloads-shell {
  max-width: min(100%, 820px);
  margin: 0 auto;
}

.downloads-page-header {
  margin-bottom: 50px;
}

.downloads-list-block {
  width: min(100%, 620px);
  margin: 0 auto 0 0;
  text-align: left;
}

.downloads-intro {
  margin: 0 0 34px;
  text-align: left;
}

.download-platform + .download-platform {
  margin-top: 38px;
}

.download-platform h2 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1;
  text-align: left;
}

.download-category {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.15;
  text-align: left;
}

.download-links {
  margin: 0;
  padding-left: 26px;
}

.download-links li {
  margin: 13px 0;
  color: var(--text);
  font-size: 30px;
  line-height: 1.2;
}

.download-links a {
  color: var(--green-soft);
  text-decoration: none;
}

.download-links a:hover,
.download-links a:focus-visible {
  text-decoration: underline;
}

.buy-panel {
  max-width: 100%;
  border: 4px solid #5f5f5f;
  border-radius: 8px;
  background-color: var(--panel);
  color: var(--ink);
  font-family: 'Teko', Arial, sans-serif;
  padding: 18px;
}

.buy-converter,
.market-chart,
.chart-top,
#priceChart {
  min-width: 0;
  max-width: 100%;
}

.buy-panel p,
.buy-panel span,
.buy-panel label {
  color: var(--ink);
}

.conversion-row {
  display: grid;
  grid-template-columns: minmax(150px, 180px) 32px minmax(230px, 1fr) 96px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background-color: var(--panel-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.quote-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 64px;
  border: 1px solid #a9a9a9;
  border-radius: 5px;
  background-color: var(--field);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 9px 12px;
}

.quote-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.usd-field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

.usd-input-control {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) auto;
  align-items: center;
  gap: 9px;
}

#usdInput,
#walletAddress {
  border: 1px solid #7a7a7a;
  border-radius: 4px;
  background-color: #ffffff;
  color: var(--ink);
  font-family: 'Teko', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: inherit;
  line-height: 1;
}

#usdInput {
  width: 100%;
  min-height: 34px;
  font-size: 20px;
  padding: 2px 6px;
  text-align: right;
}

.currency-suffix {
  display: inline-block;
  color: #222222;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.usd-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 22px;
  margin: 0;
  accent-color: var(--blue);
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
}

.usd-slider:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.usd-slider::-webkit-slider-runnable-track {
  height: 8px;
  border: 1px solid #7a7a7a;
  border-radius: 999px;
  background: #d8d8d8;
}

.usd-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -9px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: var(--blue);
  appearance: none;
}

.usd-slider::-moz-range-track {
  height: 8px;
  border: 1px solid #7a7a7a;
  border-radius: 999px;
  background: #d8d8d8;
}

.usd-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: var(--blue);
}

.conversion-equals {
  color: #4d4d4d;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.ind-result {
  min-width: 0;
  align-self: center;
  text-align: left;
}

.ind-result strong {
  display: block;
  color: #0b3510;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  overflow-wrap: anywhere;
  transition: color 180ms ease, transform 180ms ease;
}

.ind-result strong.price-better {
  color: #1d741f;
}

.ind-result strong.price-worse {
  color: var(--red);
}

.buy-button {
  min-width: 96px;
  min-height: 38px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background-color: var(--blue);
  color: #ffffff;
  cursor: pointer;
  font-family: 'Teko', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 2px 10px;
  text-align: center;
  text-transform: uppercase;
}

.buy-button:hover,
.buy-button:focus-visible {
  border-color: var(--blue-dark);
  background-color: var(--blue-dark);
}


.buy-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.wallet-entry {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid #b6b6b6;
  padding: 16px 0 0;
  text-align: left;
}

.wallet-entry label {
  display: block;
  margin-bottom: 11px;
  color: #333333;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

#walletAddress {
  width: min(100%, 430px);
  min-height: 42px;
  font-size: 22px;
  padding: 4px 8px;
}

#walletAddress::placeholder {
  color: #555555;
  font-size: inherit;
  opacity: 1;
}

#walletAddress:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.buy-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 20px;
  text-align: center;
}

.market-chart {
  margin-top: 24px;
}

.chart-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.chart-label,
.chart-status {
  margin: 0;
  color: var(--ink);
}

.chart-label {
  font-size: 26px;
  line-height: 1;
}

.chart-status {
  font-size: 18px;
  line-height: 1.15;
}

.range-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.range-tabs button {
  min-width: 44px;
  min-height: 34px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background-color: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-family: 'Teko', Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.range-tabs button.active {
  background-color: var(--ink);
  color: #ffffff;
}

#priceChart {
  display: block;
  width: 100%;
  height: var(--chart-height);
  margin-top: 16px;
  border-radius: 6px;
  background-color: var(--ink);
}

@media (min-width: 1600px) {
  :root {
    --page-width: 1160px;
    --text-width: 680px;
    --visual-width: 840px;
    --page-pad-y: 44px;
    --page-pad-bottom: 72px;
    --h1-size: 92px;
    --h2-size: 48px;
    --p-size: 28px;
    --logo-size: 88px;
    --wallet-width: 840px;
    --chart-height: 340px;
  }

  .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;
  }

  .buy-panel {
    padding: 22px;
  }

  .conversion-row {
    grid-template-columns: minmax(170px, 210px) 38px minmax(280px, 1fr) 120px;
    gap: 18px;
    padding: 20px;
  }

  .quote-field {
    min-height: 76px;
    padding: 12px 16px;
  }

  .quote-label {
    font-size: 19px;
  }

  .currency-suffix {
    font-size: 27px;
  }

  #usdInput {
    width: 102px;
    min-height: 42px;
    font-size: 24px;
  }

  .usd-slider::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    margin-top: -11px;
  }

  .usd-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
  }

  .conversion-equals,
  .ind-result strong {
    font-size: 36px;
  }

  .buy-button {
    min-height: 46px;
    font-size: 22px;
    padding: 2px 12px;
  }

  .wallet-entry label {
    font-size: 25px;
  }

  #walletAddress {
    width: min(100%, 500px);
    min-height: 48px;
    font-size: 26px;
    padding: 5px 10px;
  }

  .chart-label {
    font-size: 30px;
  }

  .chart-status {
    font-size: 21px;
  }
}

@media (min-width: 2400px) {
  :root {
    --page-width: 1900px;
    --text-width: 900px;
    --visual-width: 1500px;
    --page-pad-x: 72px;
    --page-pad-y: 84px;
    --page-pad-bottom: 128px;
    --h1-size: 132px;
    --h2-size: 72px;
    --p-size: 34px;
    --logo-size: 132px;
    --wallet-width: 1500px;
    --chart-height: 620px;
  }

  h2 {
    margin-top: 64px;
  }

  p {
    line-height: 1.42;
  }

  .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;
  }

  .buy-panel {
    padding: 36px;
  }

  .conversion-row {
    grid-template-columns: minmax(320px, 380px) 64px minmax(520px, 1fr) 190px;
    gap: 32px;
    padding: 34px;
  }

  .quote-field {
    min-height: 116px;
    padding: 20px 28px;
  }

  .quote-label {
    font-size: 26px;
  }

  .currency-suffix {
    font-size: 42px;
  }

  #usdInput {
    width: 164px;
    min-height: 68px;
    font-size: 38px;
  }

  .usd-slider {
    height: 34px;
  }

  .usd-slider::-webkit-slider-runnable-track {
    height: 12px;
  }

  .usd-slider::-moz-range-track {
    height: 12px;
  }

  .usd-slider::-webkit-slider-thumb {
    width: 40px;
    height: 40px;
    margin-top: -15px;
  }

  .usd-slider::-moz-range-thumb {
    width: 40px;
    height: 40px;
  }

  .conversion-equals {
    font-size: 58px;
  }

  .ind-result strong {
    font-size: 56px;
  }

  .buy-button {
    min-height: 64px;
    font-size: 30px;
    padding: 4px 20px;
  }

  .wallet-entry {
    padding-top: 26px;
  }

  .wallet-entry label {
    margin-bottom: 14px;
    font-size: 38px;
  }

  #walletAddress {
    width: min(100%, 740px);
    min-height: 72px;
    font-size: 40px;
    padding: 7px 14px;
  }

  .chart-label {
    font-size: 46px;
  }

  .chart-status {
    font-size: 30px;
  }

  .range-tabs button {
    min-width: 68px;
    min-height: 52px;
    font-size: 30px;
  }

  .site-menu {
    top: 32px;
    right: 32px;
  }

  .home-nav-link {
    top: 32px;
    left: 32px;
    font-size: 51px;
    padding: 15px 33px;
  }

  .site-menu-button {
    font-size: 51px;
    padding: 15px 33px;
  }

  .site-menu-panel {
    width: 460px;
  }

  .site-menu-panel a {
    font-size: 52px;
    padding: 16px 34px;
  }

  .site-menu-panel .site-menu-primary {
    padding-left: 31px;
  }

  .downloads-page {
    padding-top: 36px;
  }

  .download-links li {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-width: 100%;
    --text-width: 100%;
    --visual-width: 100%;
    --page-pad-x: 18px;
    --page-pad-y: 30px;
    --page-pad-bottom: 56px;
    --h1-size: 66px;
    --h2-size: 42px;
    --p-size: 26px;
    --logo-size: 64px;
    --chart-height: 250px;
  }

  .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;
  }

  .logo {
    width: auto;
    height: 132px;
    max-width: 88%;
    margin: 0 auto 24px;
    object-fit: contain;
  }

  h1 {
    line-height: 1;
    max-width: 95%;
    margin: 0 auto 50px;
  }

  .page-logo-header h1 {
    margin-bottom: 0;
  }

  h2 {
    margin-top: 38px;
    margin-bottom: 20px;
  }

  p {
    line-height: 1.42;
    margin-bottom: 24px;
  }

  .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;
  }

  .buy-section {
    width: calc(100% + 18px);
    max-width: none;
    margin-right: -9px;
    margin-bottom: 58px;
    margin-left: -9px;
  }

  .buy-panel {
    overflow: hidden;
    padding: 18px 16px 20px;
  }

  .conversion-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pay"
      "equals"
      "receive"
      "wallet"
      "buy";
    gap: 15px;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    padding: 18px 14px;
  }

  .quote-pay {
    grid-area: pay;
    text-align: center;
  }

  .quote-field {
    min-height: 88px;
    padding: 14px 16px;
  }

  .quote-label {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .usd-field {
    justify-content: center;
    gap: 12px;
  }

  .currency-suffix {
    font-size: 29px;
  }

  .usd-input-control {
    grid-template-columns: 116px auto;
    justify-content: center;
    gap: 10px;
  }

  #usdInput {
    width: 116px;
    min-width: 0;
    max-width: none;
    min-height: 52px;
    font-size: 29px;
  }

  .usd-slider {
    height: 34px;
  }

  .usd-slider::-webkit-slider-runnable-track {
    height: 12px;
  }

  .usd-slider::-moz-range-track {
    height: 12px;
  }

  .usd-slider::-webkit-slider-thumb {
    width: 38px;
    height: 38px;
    margin-top: -14px;
  }

  .usd-slider::-moz-range-thumb {
    width: 38px;
    height: 38px;
  }

  .conversion-equals {
    grid-area: equals;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    border: 1px solid #b8b8b8;
    border-radius: 50%;
    background-color: #d7d7d7;
    font-size: 32px;
  }

  .ind-result {
    grid-area: receive;
    text-align: center;
  }

  .ind-result strong {
    font-size: 35px;
    text-align: center;
  }

  .wallet-entry {
    grid-area: wallet;
    padding-top: 16px;
  }

  .wallet-entry label {
    margin-bottom: 9px;
    font-size: 23px;
  }

  #walletAddress {
    width: 100%;
    min-height: 50px;
    font-size: 22px;
    padding: 4px 8px;
  }

  #walletAddress::placeholder {
    font-size: 23px;
  }

  .buy-button {
    grid-area: buy;
    justify-self: center;
    width: min(190px, 100%);
    min-width: 0;
    min-height: 42px;
    font-size: 21px;
    padding: 2px 10px;
  }

  .chart-top {
    display: block;
  }

  .chart-label,
  .chart-status {
    text-align: center;
  }

  .chart-label {
    font-size: 32px;
  }

  .chart-status {
    font-size: 22px;
  }

  .range-tabs {
    justify-content: center;
    margin-top: 16px;
  }

  .range-tabs button {
    min-width: 48px;
    min-height: 42px;
    font-size: 24px;
  }

  .site-menu {
    top: 12px;
    right: 12px;
  }

  .home-arrow {
    top: 12px;
    left: 12px;
    width: 64px;
    height: 58px;
  }

  .home-arrow::before {
    left: 17px;
    width: 41px;
    height: 12px;
  }

  .home-arrow::after {
    border-top-width: 24px;
    border-right-width: 28px;
    border-bottom-width: 24px;
  }

  .home-nav-link {
    top: 12px;
    left: 12px;
    font-size: 30px;
    padding: 9px 17px;
  }

  .site-menu-button {
    font-size: 30px;
    padding: 9px 17px;
  }

  .site-menu-panel {
    width: 300px;
  }

  .site-menu-panel a {
    font-size: 34px;
    padding: 11px 18px;
  }

  .site-menu-panel .site-menu-primary {
    padding-left: 15px;
  }

  .downloads-page {
    padding-top: 26px;
  }

  .downloads-list-block {
    width: 100%;
  }

  .download-platform h2 {
    font-size: 38px;
  }

  .download-category {
    font-size: 29px;
  }

  .download-links li {
    font-size: 29px;
  }
}

@media (max-width: 430px) {
  :root {
    --page-pad-x: 16px;
    --page-pad-y: 24px;
    --page-pad-bottom: 48px;
    --h1-size: 54px;
    --h2-size: 38px;
    --p-size: 24px;
    --logo-size: 56px;
    --chart-height: 230px;
  }

  .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;
  }

  .logo {
    height: 108px;
    margin-bottom: 22px;
  }

  h1 {
    margin-bottom: 44px;
  }

  .page-logo-header h1 {
    margin-bottom: 0;
  }

  .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;
  }

  .buy-section {
    width: calc(100% + 14px);
    margin-right: -7px;
    margin-left: -7px;
  }

  .buy-panel {
    padding: 14px 8px;
  }

  .conversion-row {
    gap: 11px;
    padding: 14px 12px;
  }

  .quote-field {
    min-height: 82px;
    padding: 13px 14px;
  }

  .quote-label {
    font-size: 19px;
  }

  .currency-suffix {
    font-size: 27px;
  }

  .usd-input-control {
    grid-template-columns: 110px auto;
  }

  #usdInput {
    width: 110px;
    min-height: 50px;
    font-size: 27px;
  }

  .usd-slider::-webkit-slider-thumb {
    width: 36px;
    height: 36px;
    margin-top: -13px;
  }

  .usd-slider::-moz-range-thumb {
    width: 36px;
    height: 36px;
  }

  .conversion-equals {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .ind-result strong {
    font-size: 31px;
  }

  .wallet-entry label {
    font-size: 21px;
  }

  #walletAddress {
    min-height: 48px;
    font-size: 21px;
  }

  #walletAddress::placeholder {
    font-size: 22px;
  }

  .buy-button {
    width: min(170px, 100%);
    min-height: 40px;
    font-size: 20px;
    padding: 2px 8px;
  }

  .chart-label {
    font-size: 30px;
  }

  .chart-status {
    font-size: 20px;
  }

  .range-tabs button {
    min-width: 46px;
    min-height: 40px;
    font-size: 22px;
  }

  .site-menu {
    top: 10px;
    right: 10px;
  }

  .home-arrow {
    top: 10px;
    left: 10px;
    width: 58px;
    height: 52px;
  }

  .home-arrow::before {
    left: 15px;
    width: 37px;
    height: 12px;
  }

  .home-arrow::after {
    border-top-width: 22px;
    border-right-width: 25px;
    border-bottom-width: 22px;
  }

  .home-nav-link {
    top: 10px;
    left: 10px;
    font-size: 27px;
    padding: 8px 14px;
  }

  .site-menu-button {
    font-size: 27px;
    padding: 8px 14px;
  }

  .site-menu-panel {
    width: 280px;
  }

  .site-menu-panel a {
    font-size: 32px;
    padding: 10px 16px;
  }

  .site-menu-panel .site-menu-primary {
    padding-left: 13px;
  }

  .downloads-page {
    padding-top: 22px;
  }

  .downloads-intro {
    font-size: 25px;
  }

  .download-platform h2 {
    font-size: 36px;
  }

  .download-category {
    font-size: 27px;
  }

  .download-links li {
    font-size: 27px;
  }
}
