@font-face {
  font-family: "Space Grotesk";
  src: url("./SpaceGrotesk.light.ttf") format("truetype");
  font-weight: 300 800;
}

@font-face {
  font-family: "Zendots";
  src: url("./zendots.regular.ttf") format("truetype");
}

:root {
  --bg: #0f1015;
  --panel: #1e2028;
  --panel-2: #242631;
  --line: #30333f;
  --muted: #8c93a5;
  --text: #f7f7fb;
  --yellow: #ffe900;
  --lime: #ffe900;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  min-height: 100%;
}

body {
  margin: 0;
  background: radial-gradient(circle at 50% 115px, rgba(255, 233, 0, 0.035), transparent 300px), var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  height: 62px;
  padding: 0 52px;
  border-bottom: 1px solid #23252d;
  background: rgba(17, 18, 24, 0.98);
}

.logo-link img,
.footer-logo {
  width: 132px;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav button,
.mobile-menu > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: #c4c5cb;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav button.is-active {
  color: var(--lime);
}

.nav-chevron {
  width: 11px;
  height: 8px;
  flex: 0 0 auto;
  color: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.ask-shell {
  display: inline-flex;
  height: 40px;
  margin-right: 16px;
  padding: 1px;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(180deg, #ffe900 0%, #18dc7e 100%);
}

.ask-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  min-height: 38px;
  padding: 0 11px;
  border: 0;
  border-radius: 40px;
  background: #181a1e;
  color: var(--lime);
  font-size: 14px;
  font-weight: 950;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.ask-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#181a1e, #181a1e) padding-box,
    linear-gradient(180deg, #ffe900 0%, #18dc7e 100%) border-box;
  color: var(--lime);
  font-size: 14px;
  font-weight: 950;
}

.star-inline {
  width: 17px;
  height: 17px;
  color: currentColor;
}

.ask-btn .star-inline {
  width: 20px;
  height: 20px;
}

.ask-shell:hover .ask-btn {
  background: transparent;
  color: #000;
}

.ask-float:hover {
  background: linear-gradient(180deg, #ffe900 0%, #18dc7e 100%) border-box;
  color: #000;
}

.ask-float .star-inline {
  width: 20px;
  height: 20px;
}

.contact-btn {
  min-height: 40px;
  padding: 0 19px;
  border: 0;
  border-radius: 8px;
  background: #f5f5f6;
  color: #171820;
  font-size: 14px;
  font-weight: 900;
}

.contact-btn:hover {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 233, 0, 0.45);
}

.contact-wrap {
  position: relative;
  display: inline-flex;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.contact-menu {
  position: absolute;
  top: 50px;
  right: 0;
  width: 126px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #22242c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.contact-menu a {
  display: block;
  padding: 9px 0;
  color: #c9cedb;
  font-size: 14px;
  text-decoration: none;
}

.contact-menu a:hover {
  color: var(--lime);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
}

.menu-btn img {
  width: 24px;
}

.mega-wrap {
  position: fixed;
  inset: 62px 0 0;
  z-index: 19;
  background: rgba(0, 0, 0, 0.7);
  animation: megaFade 0.3s ease both;
}

.mega-wrap.is-expanded {
  background: rgba(0, 0, 0, 0.7);
}

.mega-menu {
  display: grid;
  grid-template-columns: 365px 0;
  width: 365px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #17191f;
  animation: megaDrop 0.3s ease both;
  transition:
    width 0.5s ease,
    grid-template-columns 0.5s ease;
}

.menu-chains .mega-menu {
  margin-left: 195px;
}

.menu-build .mega-menu {
  margin-left: 296px;
}

.menu-explore .mega-menu {
  margin-left: 339px;
}

.menu-accelerate .mega-menu {
  margin-left: 424px;
}

.menu-connect .mega-menu {
  margin-left: 424px;
}

.mega-wrap.is-expanded .chain-menu {
  grid-template-columns: 365px 365px;
  width: 730px;
}

.chain-menu {
  margin-right: auto;
}

.mega-left,
.mega-right {
  padding: 24px 22px;
}

.mega-right {
  background: #22242c;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.mega-right.show {
  opacity: 1;
  transform: translateX(0);
}

.mega-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.mega-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #2b2e37;
}

.mega-left > .mega-kicker:not(:first-child) {
  margin-top: 28px;
}

.mega-item {
  position: relative;
  margin: 0 -10px;
  padding: 11px 46px 12px 18px;
  border-radius: 8px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.mega-item.selected {
  background: #252832;
}

.mega-item strong,
.mega-right strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.chain-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 7px;
  padding: 2px 5px;
  border-radius: 2px;
  background: #f58b2a;
  color: #111217;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  vertical-align: 1px;
}

.mega-item span,
.mega-right span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.mega-item b {
  position: absolute;
  right: 18px;
  top: 20px;
  color: var(--muted);
}

.mega-item:hover b,
.mega-item.selected b {
  color: #fff;
}

.mega-right h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-size: 24px;
}

.mini-logo-img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(62%) sepia(91%) saturate(705%) hue-rotate(5deg) brightness(103%) contrast(96%);
}

.mega-right h3 span {
  margin-left: auto;
  color: var(--lime);
}

.mega-right > a {
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.mega-right p {
  margin: 18px 0 0;
  padding: 9px 12px;
  border-radius: 8px;
}

.mega-right p:hover {
  background: #13151a;
}

.network-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #333743;
  color: #aaa;
  font-size: 15px;
}

.network-row img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.wide-menu {
  display: block;
  width: 940px;
  padding: 24px;
}

.wide-menu section,
.stacked-menu section,
.connect-menu section {
  margin-bottom: 26px;
}

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

.mega-card {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.mega-card:hover {
  background: #252832;
}

.mega-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
}

.mega-card em {
  display: block;
  grid-column: 2;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.25;
}

.mega-icon {
  color: var(--lime);
  line-height: 1;
}

.mega-menu-icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.18s ease;
}

.mega-card:hover .mega-menu-icon.is-vector,
.mega-card:hover .mega-menu-icon.is-raster {
  filter: brightness(0) saturate(100%) invert(89%) sepia(97%) saturate(1162%) hue-rotate(358deg) brightness(104%) contrast(104%);
}

.simple-menu,
.stacked-menu {
  display: block;
  width: 370px;
  padding: 22px 16px;
}

.simple-menu,
.stacked-menu,
.wide-menu,
.connect-menu {
  grid-template-columns: initial;
  width: 370px;
}

.wide-menu {
  width: 900px;
}

.menu-build .wide-menu {
  width: 900px;
}

.menu-build .mega-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.connect-menu {
  grid-template-columns: 365px 365px;
  width: 730px;
}

.connect-menu .mega-right {
  opacity: 1;
  transform: none;
}

.simple-menu .mega-card,
.stacked-menu .mega-card {
  grid-template-columns: 28px 1fr;
  margin-bottom: 5px;
}

.simple-menu {
  width: 335px;
  padding: 16px 14px;
}

.simple-menu .mega-card {
  min-height: 46px;
  padding: 8px 14px;
  gap: 11px;
  margin-bottom: 3px;
}

.simple-menu .mega-card em {
  margin-top: 4px;
}

.stacked-menu .mega-card {
  display: block;
}

.stacked-menu .mega-card em {
  display: block;
  margin-top: 5px;
}

.stacked-menu {
  width: 335px;
  padding: 20px 22px 0;
}

.stacked-menu section {
  margin-bottom: 16px;
}

.stacked-menu .mega-card {
  min-height: auto;
  padding: 8px 14px;
  margin: 0 -8px 2px;
}

.stacked-menu .mega-card strong {
  white-space: normal;
  overflow-wrap: anywhere;
}

.stacked-menu .mega-kicker {
  margin-bottom: 10px;
}

.connect-menu {
  grid-template-columns: 365px 0;
  width: 365px;
  transition:
    width 0.5s ease,
    grid-template-columns 0.5s ease;
}

.connect-menu.is-open {
  grid-template-columns: 365px 365px;
  width: 730px;
}

.connect-menu .mega-right {
  opacity: 0;
  transform: translateX(-16px);
}

.connect-menu .mega-right.show {
  opacity: 1;
  transform: translateX(0);
}

.connect-menu .mega-right {
  min-width: 365px;
}

.connect-menu .mega-right .mega-card {
  display: block;
  min-height: auto;
}

.connect-menu .mega-card {
  grid-template-columns: 28px 1fr;
}

.connect-menu .mega-left {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.connect-menu section {
  margin-bottom: 18px;
}

.connect-menu .mega-card {
  min-height: 50px;
  padding: 8px 14px;
  margin: 0 -8px 2px;
}

.connect-menu .mega-card b {
  position: absolute;
  right: 14px;
  top: 22px;
  color: #c4c5cb;
}

.connect-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto -22px 0;
  padding: 16px 22px;
  border-top: 1px solid #2b2e37;
}

.connect-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.connect-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: none;
}

.connect-socials img:hover {
  filter: brightness(0) saturate(100%) invert(84%) sepia(5%) saturate(139%) hue-rotate(191deg) brightness(91%) contrast(88%);
}

.connect-bottom a {
  color: #c4c5cb;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
}

.mega-footer {
  margin: 14px -24px -24px;
  padding: 16px 24px 20px;
  border-top: 1px solid #2d303a;
}

.mega-footer a {
  display: inline-flex;
  white-space: nowrap;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 9px;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.mega-footer a:hover {
  border-color: #fff;
  background: #fff;
  color: #111217;
}

.stacked-menu .mega-footer {
  margin: 12px -22px 0;
  padding: 16px 22px 20px;
}

.main {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 86px 24px 104px;
}

.brand-title {
  margin: 0 0 48px;
  color: var(--lime);
  font-family: "Zendots", "Space Grotesk", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.brand-title span {
  color: #fff;
}

.faucet-card,
.channels-card {
  border-radius: 24px;
  background: #1e2026;
}

.faucet-card {
  padding: 45px 42px 42px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

.faucet-card h2,
.channels-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.hints {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hints li::before {
  content: "✓";
  margin-right: 7px;
}

.hints a {
  color: var(--lime);
  text-decoration: underline;
}

.divider {
  height: 1px;
  margin: 26px 0 32px;
  background: #30333d;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: 24px;
}

label > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

label.has-error > span {
  color: #ff5d73;
}

.token-select {
  position: relative;
}

.token-select > button,
input {
  width: 100%;
  height: 50px;
  border: 1px solid #555968;
  border-radius: 7px;
  background: #393c48;
  color: #fff;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.token-select > button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.token-select > button.open,
.token-select > button:focus-visible,
input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
}

label.has-error input,
label.has-error input:focus {
  border-color: #ff5d73;
  box-shadow: none;
}

.token-select img {
  width: 26px;
  height: 26px;
}

.token-select > button .select-arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
}

.token-select > button strong {
  white-space: nowrap;
}

.token-select button span {
  color: #c7cbd5;
}

input {
  padding: 0 18px;
  outline: 0;
}

input::placeholder {
  color: #8d94a7;
}

.input-error {
  display: block;
  margin-top: 8px;
  color: #ff5d73;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.token-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 5;
  padding: 0;
  border: 1px solid #404351;
  border-radius: 4px;
  background: #3d404b;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.token-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  text-align: left;
}

.token-menu button:hover,
.token-menu button.selected {
  background: #686c77;
}

.token-menu button b {
  margin-left: auto;
  color: #fff;
  font-size: 16px;
}

.send-btn {
  width: 100%;
  height: 58px;
  margin-top: 36px;
  border: 0;
  border-radius: 8px;
  background: #6c7281;
  color: #373b46;
  font-size: 16px;
  font-weight: 900;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.send-btn.ready {
  background: var(--lime);
  color: #111217;
}

.send-btn:disabled {
  cursor: not-allowed;
}

.channels-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: none;
  margin: 72px 0 0;
  padding: 32px 24px;
  border: 1px solid #373943;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.channel-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 24px;
}

.channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 220px;
  height: 114px;
  border-radius: 22px;
  background: #1e2026;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.channel:hover {
  transform: translateY(-3px);
  background: #373943;
}

.channel img {
  width: 34px;
  height: 34px;
}

.channels-card p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.faq {
  margin-top: 94px;
}

.faq h2 {
  margin: 0 0 34px;
  font-size: 34px;
  text-align: center;
}

.faq article {
  border-top: 1px solid var(--line);
}

.faq article:last-child {
  border-bottom: 1px solid var(--line);
}

.faq article > button {
  display: grid;
  grid-template-columns: 56px 1fr 34px;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
}

.faq .num {
  color: #8790a3;
  font-size: 25px;
}

.faq strong {
  font-size: 20px;
  line-height: 1.35;
}

.faq .plus {
  font-size: 34px;
  font-weight: 300;
  text-align: right;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.3s ease,
    opacity 0.3s ease;
}

.faq article.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  overflow: hidden;
  min-height: 0;
  margin: 0 34px 0 56px;
  color: #d9dbe2;
  font-size: 17px;
  line-height: 1.55;
}

.faq article.open .faq-answer p {
  margin-bottom: 24px;
}

.ask-float {
  position: fixed;
  right: 34px;
  bottom: 78px;
  z-index: 10;
}

.footer {
  border-top: 1px solid #22252d;
  background: #181a1e;
  color: #8c8f9b;
}

.footer-top,
.footer-groups,
.footer-bottom-inner {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #22252d;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.socials img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition:
    opacity 0.18s ease,
    filter 0.18s ease;
}

.socials img:hover {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(84%) sepia(5%) saturate(139%) hue-rotate(191deg) brightness(91%) contrast(88%);
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px;
  padding-top: 46px;
  padding-bottom: 54px;
}

.footer h3 {
  margin: 0 0 18px;
  color: #f3f5fa;
  font-size: 15px;
  font-weight: 800;
}

.footer-groups section > button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.footer-groups section > button img {
  display: none;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  color: #8c8f9b;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer a:hover {
  color: #c4c5cb;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid #22252d;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #8c8f9b;
  font-size: 14px;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-tools button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  white-space: nowrap;
}

.footer-tools .lang-wrap button {
  gap: 6px;
}

.footer-tools .lang-wrap > button {
  height: 28px;
}

.footer-tools img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-tools button:hover {
  color: #fff;
}

.footer-tools button:hover img {
  filter: brightness(0) invert(1);
}

.lang-arrow {
  width: 16px !important;
  height: 16px !important;
  margin-left: -2px;
  opacity: 1 !important;
  transform: rotate(0deg);
  transition: transform 0.18s ease;
}

.lang-arrow.open {
  transform: rotate(180deg);
}

.lang-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 28px;
}

.language-backdrop {
  position: fixed;
  inset: 0;
  z-index: 24;
  display: block;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent;
}

.language-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  z-index: 25;
  width: 238px;
  max-height: 465px;
  overflow-y: auto;
  padding: 12px 0;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  scrollbar-width: none;
}

.language-handle {
  display: none !important;
}

.language-menu::-webkit-scrollbar {
  display: none;
}

.language-menu button {
  display: block;
  width: 100%;
  padding: 13px 24px;
  text-align: left;
  color: #fff;
}

.language-menu button.active {
  color: var(--lime);
}

.cookie-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: min(420px, calc(100vw - 48px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.cookie-panel h2 {
  margin: 0 0 10px;
}

.cookie-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-panel div {
  display: flex;
  gap: 10px;
}

.cookie-panel button {
  flex: 1;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.cookie-panel button.primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 24px 28px;
  overflow-y: auto;
  background: #111217;
  scrollbar-width: none;
}

.mobile-menu::-webkit-scrollbar {
  display: none;
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-head > img:first-child {
  width: 153px;
}

.mobile-head button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.mobile-head button img {
  width: 20px;
  height: 20px;
}

.mobile-accordion > button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid #252832;
  background: transparent;
  color: #c4c5cb;
  font-size: 18px;
  font-weight: 800;
}

.mobile-accordion.open > button {
  color: var(--lime);
}

.mobile-accordion > button img,
.mobile-chain > button img {
  width: 18px;
  height: 18px;
}

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  padding: 18px 0 24px;
  border-bottom: 1px solid #252832;
  opacity: 0;
  transition:
    max-height 0.34s ease,
    opacity 0.24s ease,
    padding 0.34s ease;
}

.mobile-accordion.open .mobile-panel {
  max-height: 1600px;
  opacity: 1;
}

.mobile-accordion:not(.open) .mobile-panel {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.mobile-menu-section {
  margin-bottom: 26px;
}

.mobile-menu-card {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-areas:
    "icon title"
    "icon desc";
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.mobile-menu-card .mega-menu-icon {
  grid-area: icon;
}

.mobile-menu-card strong {
  grid-area: title;
}

.mobile-menu-card em {
  grid-area: desc;
  min-width: 0;
}

.mobile-menu-card.no-icon {
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "desc";
}

.mobile-menu-card.no-icon em {
  grid-column: auto;
}

.mobile-menu-card:hover,
.mobile-menu-card.selected {
  background: #252832;
}

.mobile-menu-card strong,
.mobile-chain strong,
.mobile-chain-body strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.mobile-menu-card em,
.mobile-chain em,
.mobile-chain-body em {
  display: block;
  margin-top: 5px;
  color: #8c8f9b;
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.mobile-chain {
  border-radius: 8px;
}

.mobile-chain > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #c4c5cb;
  text-align: left;
}

.mobile-chain.open {
  background: #1f222a;
}

.mobile-chain-body {
  max-height: 0;
  overflow: hidden;
  padding: 14px 20px 16px;
  border-top: 1px solid #323641;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}

.mobile-chain.open .mobile-chain-body {
  max-height: 620px;
  opacity: 1;
}

.mobile-chain-body h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.mobile-chain-body h4 span {
  margin-left: auto;
  color: var(--lime);
}

.mobile-chain-body > a {
  display: block;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
}

.mobile-menu-cta {
  display: inline-flex;
  margin-top: 4px;
  padding: 6px 10px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-menu-cta:hover {
  background: #fff;
  color: #111217;
}

.mobile-menu .ask-btn,
.mobile-menu .contact-btn {
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}

.mobile-menu .ask-shell {
  width: 100%;
  margin: 18px 0 0;
}

@keyframes megaFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes megaDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 36px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .main {
    width: min(100%, 780px);
    padding-top: 70px;
  }

  .footer-groups {
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile-menu {
    left: auto;
    width: min(380px, 100vw);
    box-shadow: -32px 0 80px rgba(0, 0, 0, 0.5);
  }

  .mobile-menu::before {
    content: "";
    position: fixed;
    inset: 0 min(380px, 100vw) 0 0;
    background: rgba(0, 0, 0, 0.72);
    pointer-events: none;
  }

  .mobile-menu .ask-shell,
  .mobile-menu .contact-btn {
    display: none;
  }

  .mobile-menu-card strong,
  .mobile-chain strong,
  .mobile-chain-body strong {
    font-size: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-menu-card em,
  .mobile-chain em,
  .mobile-chain-body em {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 61px;
    padding: 0 20px;
  }

  .logo-link img {
    width: 132px;
  }

  .header-actions .ask-shell,
  .header-actions .contact-wrap {
    display: none;
  }

  .main {
    padding: 50px 20px 74px;
  }

  .brand-title {
    margin-bottom: 28px;
    font-size: 27px;
  }

  .faucet-card {
    padding: 25px 16px 30px;
    border-radius: 20px;
  }

  .faucet-card h2 {
    font-size: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .send-btn {
    margin-top: 28px;
  }

  .channels-card {
    margin-top: 60px;
    width: 100%;
    max-width: none;
    padding: 34px 16px 28px;
    border-radius: 22px;
  }

  .channels-card h2 {
    font-size: 20px;
  }

  .channel-row {
    width: 100%;
    gap: 14px;
    margin: 24px 0 18px;
  }

  .channel {
    width: 100%;
    height: 96px;
    gap: 10px;
  }

  .channel strong {
    font-size: 14px;
  }

  .channels-card p {
    font-size: 13px;
    line-height: 1.35;
  }

  .faq {
    margin-top: 64px;
  }

  .faq h2 {
    font-size: 25px;
  }

  .faq article > button {
    grid-template-columns: 50px 1fr 24px;
    padding: 18px 0;
  }

  .faq .num {
    font-size: 24px;
  }

  .faq strong {
    font-size: 18px;
  }

  .faq .plus {
    font-size: 28px;
  }

  .faq-answer p {
    margin: 0 24px 0 50px;
    font-size: 15px;
  }

  .faq article.open .faq-answer p {
    margin-bottom: 20px;
  }

  .ask-float {
    right: 14px;
    bottom: 18px;
    min-height: 38px;
    padding: 0 13px;
    font-size: 14px;
    z-index: 18;
  }

  .footer-top,
  .footer-bottom-inner {
    display: block;
  }

  .footer-top {
    padding-top: 32px;
    padding-bottom: 26px;
  }

  .socials {
    flex-wrap: wrap;
    gap: 18px 20px;
    margin-top: 28px;
  }

  .footer-groups {
    display: block;
    padding-top: 8px;
    padding-bottom: 20px;
  }

  .footer-groups section {
    border-bottom: 1px solid #22252d;
  }

  .footer-groups section > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-groups section > button img {
    display: block;
    width: 18px;
    height: 18px;
  }

  .footer-groups h3 {
    margin: 0;
    padding: 19px 0;
    font-size: 15px;
  }

  .footer-groups h3::after {
    content: none;
  }

  .footer-groups ul {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer-groups section.open ul {
    max-height: 360px;
  }

  .footer-groups ul li:first-child {
    margin-top: 4px;
  }

  .footer-bottom {
    padding-top: 22px;
    padding-bottom: 26px;
    text-align: center;
  }

  .footer-bottom-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-tools {
    justify-content: center;
    gap: 22px;
    margin: 0 0 18px;
  }

  .footer-bottom-inner p {
    font-size: 14px;
  }

  .mobile-menu {
    inset: 0;
    width: auto;
    padding-bottom: 92px;
    box-shadow: none;
  }

  .mobile-menu::before {
    display: none;
  }

  .mobile-menu .ask-shell {
    display: none;
  }

  .mobile-menu .contact-btn {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: flex;
    width: auto;
    min-height: 44px;
    margin: 0;
    border-radius: 8px;
    background: #f5f5f6;
    color: #171820;
    font-size: 14px;
    font-weight: 900;
  }

  .language-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 61;
    width: 100%;
    max-height: 54vh;
    padding-top: 16px;
    border-radius: 18px 18px 0 0;
    background: #1e2026;
    text-align: center;
    animation: languageSheetIn 0.28s ease both;
  }

  .language-menu button {
    padding: 18px 24px;
    text-align: center;
    font-size: 17px;
    font-weight: 800;
  }

  .language-backdrop {
    z-index: 60;
    height: auto !important;
    background: rgba(0, 0, 0, 0.68);
  }

  .language-handle {
    display: block !important;
    width: 32px !important;
    height: 4px !important;
    margin: 0 auto 16px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background-color: rgba(92, 95, 106, 0.45) !important;
    opacity: 0.6;
  }
}

@keyframes languageSheetIn {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}
