:root {
  --bg: #060a13;
  --bg2: #071327;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(34, 211, 238, 0.22);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.56);
  --cyan: #22d3ee;
  --lime: #a3e635;
  --shadow2: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 28px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --grad: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(163, 230, 53, 0.9));
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  width: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(900px 600px at 10% 10%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(900px 600px at 90% 30%, rgba(163, 230, 53, 0.1), transparent 60%),
    radial-gradient(1000px 700px at 50% 100%, rgba(245, 158, 11, 0.07), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-attachment: fixed;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 8px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

.strip {
  background: linear-gradient(90deg, #06101f, #0c1c36);
  border-bottom: 1px solid rgba(34, 211, 238, 0.08);
  padding: 5px 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}

.strip__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  flex-wrap: wrap;
}

.strip__message {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
  text-align: left;
}

.strip__copy {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 3px;
  min-width: 0;
  line-height: 1.2;
}

.strip__label {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.strip__dash {
  color: rgba(34, 211, 238, 0.45);
  font-weight: 500;
  font-size: 0.68rem;
}

.strip__date {
  font-weight: 600;
  color: rgba(34, 211, 238, 0.95);
  font-variant-numeric: tabular-nums;
}

.strip__action {
  flex: 0 0 auto;
}

.strip__btn {
  white-space: nowrap;
}

.official-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.official-stamp__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 2px double rgba(34, 211, 238, 0.52);
  border-radius: 9px;
  background: rgba(4, 10, 20, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 0 18px rgba(34, 211, 238, 0.06);
  text-align: center;
  line-height: 1.12;
  transform: rotate(-5deg);
}

.official-stamp__brand {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 211, 238, 0.96);
}

.official-stamp__line {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.84);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .strip {
    padding: 7px 0 8px;
    font-size: 0.7rem;
  }

  .strip__bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    flex-wrap: wrap;
  }

  .strip__message {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    width: 100%;
  }

  .strip__dot {
    order: -1;
  }

  .strip__copy {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
  }

  .strip__dash {
    display: none;
  }

  .strip__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.25;
    max-width: 20em;
  }

  .strip__date {
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0.82;
  }

  .strip__action {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .strip .btn.strip__btn {
    width: 100%;
    max-width: 100%;
    padding: 7px 14px;
    font-size: 0.68rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(34, 211, 238, 0.1);
  }

}

.strip__dot {
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.65);
  animation: zarbet-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes zarbet-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 10, 19, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.topbar .container {
  overflow: visible;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  height: 58px;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  height: 58px;
  overflow: visible;
}

.mark {
  display: block;
  height: 58px;
  overflow: visible;
  line-height: 0;
}

.mark img {
  display: block;
  height: 104px;
  width: auto;
  max-width: min(500px, 82vw);
  margin-top: calc((58px - 104px) / 2);
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  transition: transform 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
  background: transparent;
}

.nav__ico {
  display: inline-block;
  margin-right: 6px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.nav a.is-active {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
}

.nav a.nav__bonus {
  border: 1px solid rgba(245, 158, 11, 0.38);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(251, 113, 133, 0.12));
  color: rgba(255, 252, 240, 0.96);
  font-weight: 800;
}

.nav a.nav__bonus:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.32), rgba(251, 113, 133, 0.18));
  color: #fff;
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(163, 230, 53, 0.85));
  color: rgba(6, 10, 19, 0.95);
  box-shadow: 0 18px 50px rgba(34, 211, 238, 0.2);
}

.strip .btn.strip__btn {
  gap: 5px;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(34, 211, 238, 0.12);
}

.strip .btn.strip__btn:hover {
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.16);
}

.btn--primary-lg {
  padding: 16px 28px;
  font-size: 1.02rem;
  border-radius: 16px;
}

.btn--accent {
  border: 1px solid rgba(245, 158, 11, 0.32);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(251, 113, 133, 0.85));
  color: rgba(6, 10, 19, 0.96);
  box-shadow: 0 18px 50px rgba(245, 158, 11, 0.14);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.menu {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu span {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  display: block;
  position: relative;
}

.menu span::before,
.menu span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.menu span::before {
  top: -6px;
}

.menu span::after {
  top: 6px;
}

.mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0 18px;
}

.mobile a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  margin-top: 10px;
  font-weight: 800;
}

.mobile a:nth-child(1) {
  margin-top: 0;
}

.mobile a.nav__bonus {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 113, 133, 0.12));
}

.hero {
  padding: 56px 0 40px;
  position: relative;
}

.hero--center {
  text-align: center;
}

.hero--center .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero--center .hero__cta {
  justify-content: center;
}

.chip {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 14px 55px rgba(34, 197, 94, 0.1);
}

.chip i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
  animation: zarbet-pulse 2s infinite;
}

h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  margin: 14px 0 10px;
  letter-spacing: -0.03em;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
}

.h1__grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 62ch;
  margin: 0 0 18px;
  white-space: pre-wrap;
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 8px;
}

.hero__official {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 8px;
}

.official-stamp--hero .official-stamp__inner {
  padding: 6px 14px;
  transform: rotate(-3.5deg);
}

.official-stamp--hero .official-stamp__brand {
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.official-stamp--hero .official-stamp__line {
  font-size: 0.68rem;
}

.bonus-promo {
  padding: 0 0 26px;
}

.bonus-promo__card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.11), rgba(251, 113, 133, 0.07));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.bonus-promo__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 260px at 50% 0%, rgba(251, 191, 36, 0.14), transparent 58%);
  pointer-events: none;
}

.bonus-promo__card > * {
  position: relative;
  z-index: 1;
}

.bonus-promo__card .kicker {
  color: rgba(253, 224, 71, 0.92);
}

.bonus-promo__card h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.12rem, 2.4vw, 1.42rem);
  margin: 6px 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.96);
}

.bonus-promo__text {
  margin: 0 auto 14px;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.bonus-promo__cta {
  margin-top: 2px;
}

.bonus-promo__btn {
  padding: 11px 22px;
  font-size: 0.9rem;
}

.work-panel {
  padding: 8px 0 36px;
}

.work-panel__surface {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
  padding: 22px;
}

.work-panel__surface::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(600px 400px at 20% 10%, rgba(34, 211, 238, 0.14), transparent 60%),
    radial-gradient(700px 500px at 80% 60%, rgba(163, 230, 53, 0.1), transparent 60%);
  pointer-events: none;
}

.work-panel__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.work-panel__head > div:first-child {
  min-width: min(100%, 280px);
}

.work-panel__head .kicker {
  justify-content: flex-start;
  margin-bottom: 8px;
}

.work-panel__head h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.work-panel__badge {
  position: relative;
  font-size: 0.82rem;
  font-weight: 900;
  color: rgba(6, 10, 19, 0.95);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  align-self: flex-start;
}

.work-panel__intro {
  position: relative;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 85ch;
}

.work-quick {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 720px) {
  .work-quick {
    grid-template-columns: 1fr 1fr;
  }
}

.work-quick__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.work-quick__item:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.work-quick__ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.22);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.work-quick__item:nth-child(2) .work-quick__ico {
  background: rgba(163, 230, 53, 0.12);
  border-color: rgba(163, 230, 53, 0.2);
}

.work-quick__item:nth-child(3) .work-quick__ico {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.22);
}

.work-quick__item:nth-child(4) .work-quick__ico {
  background: rgba(251, 113, 133, 0.12);
  border-color: rgba(251, 113, 133, 0.22);
}

.work-quick__item b {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.work-quick__item > div > span {
  display: block;
  color: var(--muted2);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 3px;
  line-height: 1.45;
}

.work-panel__cta {
  position: relative;
  margin-top: 22px;
  text-align: center;
}

.work-panel__btn {
  padding: 12px 22px;
  font-size: 0.95rem;
}

section {
  padding: 36px 0 52px;
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  text-align: center;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

.section__head .sub {
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  justify-content: center;
}

.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: var(--grad);
}

h2,
.section__head h1 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.15;
}

.sub {
  color: var(--muted);
  max-width: 80ch;
  margin: 0;
  font-size: 1.01rem;
  white-space: pre-wrap;
}

.prose {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px;
  box-shadow: var(--shadow2);
  color: var(--muted);
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto;
}

.prose p {
  margin: 0 0 12px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.form-card {
  margin-top: 22px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow2);
  padding: 22px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.form-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.15rem;
}

.form-card .hint {
  margin: 0 0 16px;
  color: var(--muted2);
  font-size: 0.92rem;
}

.form-grid label {
  display: block;
  font-weight: 800;
  font-size: 0.82rem;
  margin: 12px 0 6px;
  color: rgba(255, 255, 255, 0.86);
}

.form-grid .form-req {
  color: #fb7185;
  font-weight: 900;
  margin-left: 2px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font: inherit;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin-top: 12px;
  font-weight: 800;
  font-size: 0.92rem;
}

.form-status--ok {
  color: var(--lime);
}

.form-status--err {
  color: #fb7185;
}

.footer {
  padding: 46px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.footcard {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px;
}

.footcard h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.footcard p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.footlinks {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.footlinks a {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 850;
  color: rgba(255, 255, 255, 0.86);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}

.footlinks a:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.26);
}

.legal {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted2);
  font-weight: 700;
  font-size: 0.9rem;
}

.load-error {
  padding: 40px 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.currency {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 52px;
  position: relative;
}

.currency .section__head {
  margin-bottom: 24px;
}

.currency__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.currency-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  backdrop-filter: blur(10px);
}

.currency-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.12);
}

.currency-card .flag {
  width: 48px;
  height: 48px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.currency-info h4 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.currency-info .rate {
  margin: 4px 0 0;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #fff;
}

.currency-info .rate span {
  font-size: 0.9rem;
  color: var(--cyan);
  margin-left: 4px;
}

.currency-info .rate.is-loading {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }

  .menu {
    display: inline-flex;
  }

  .mobile[aria-hidden="false"] {
    display: block;
  }
}

@media (max-width: 720px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
