@font-face {
  font-family: "Inter";
  src: url("./assets/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070807;
  --bg-2: #0d0e12;
  --bg-3: #171921;
  --bg-4: #1c1e26;
  --text: #f9f8f9;
  --text-2: #d1d1d3;
  --muted: #8b8c90;
  --faint: #5d5e64;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --brand: #eb0052;
  --brand-2: #ff4f85;
  --brand-glow: rgba(235, 0, 82, 0.42);
  --radius: 14px;
  --header-h: 72px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  min-height: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 8, 7, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 8, 7, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 40px), 1280px);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img,
.brand svg {
  width: 28px;
  height: 28px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 15px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--text);
}

.caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}

.mega {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  background: #12131a;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.18s ease;
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mega a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.mega a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mega strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.mega span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

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

.lang-wrap {
  position: relative;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--text-2);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 188px;
  background: #12131a;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 6px;
  display: none;
  box-shadow: var(--shadow);
}

.lang-menu.is-open {
  display: block;
}

.lang-menu a {
  display: flex;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
}

.lang-menu a:hover,
.lang-menu a.is-active {
  background: rgba(235, 0, 82, 0.12);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(235, 0, 82, 0.3), 0 8px 24px var(--brand-glow);
}

.btn-brand:hover {
  background: #ff1a68;
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
}

.drawer-langs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.drawer-langs a {
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 90;
}

.skip:focus {
  top: 12px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 48px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 82% 42%, rgba(235, 0, 82, 0.16), transparent 58%),
    radial-gradient(50% 40% at 10% 90%, rgba(235, 0, 82, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-cover {
  position: absolute;
  right: -4%;
  top: 4%;
  width: min(58vw, 820px);
  height: 92%;
  pointer-events: none;
  z-index: 0;
}

.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(7, 8, 7, 0.82) 18%,
    rgba(7, 8, 7, 0.18) 48%,
    rgba(7, 8, 7, 0.62) 82%,
    rgba(7, 8, 7, 0.88) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.55fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 18px;
  font-weight: 500;
}

.eyebrow em {
  color: var(--brand);
  font-style: normal;
  font-weight: 650;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 560;
  max-width: 12ch;
}

.hero-lead {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 17px;
  max-width: 46ch;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-col {
  display: grid;
  gap: 28px;
  justify-items: end;
  text-align: right;
  padding: 18px 12px 18px 28px;
  border-radius: 16px;
  background: linear-gradient(90deg, transparent, rgba(7, 8, 7, 0.55));
}

.stat-num,
.stat-label {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.stat-num {
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: #08090c;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 38s linear infinite;
  align-items: center;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.78;
  white-space: nowrap;
}

.ticker-item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}

.tick-mono {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 20px;
  padding: 0 6px;
  border: 1px solid rgba(235, 0, 82, 0.45);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffd0de;
}

.ticker-clients {
  border-top: 0;
  padding-top: 8px;
}

.clients-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-kicker {
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
  font-weight: 560;
  line-height: 1.15;
}

.section-lead {
  color: var(--muted);
  margin-top: 14px;
  max-width: 62ch;
  font-size: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
  margin-top: 36px;
}

.news-main,
.news-side article {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  min-height: 280px;
}

.news-main img,
.news-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.news-main::after,
.news-side article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82) 100%);
}

.news-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.news-copy small {
  color: var(--brand-2);
  font-weight: 650;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-copy h3 {
  margin: 8px 0 0;
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 560;
}

.news-side {
  display: grid;
  gap: 18px;
}

.news-side article {
  min-height: 168px;
}

.news-side h3 {
  font-size: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.card-grid.four {
  grid-template-columns: repeat(2, 1fr);
}

.spot-card {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(235, 0, 82, 0.12), transparent 46%),
    var(--bg-2);
  min-height: 220px;
  overflow: hidden;
  transition: 0.22s ease;
}

.spot-card:hover {
  border-color: rgba(235, 0, 82, 0.45);
  transform: translateY(-3px);
}

.spot-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.spot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 360px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pill {
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: var(--text-2);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.metric {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.metric b {
  display: block;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.alt {
  background: linear-gradient(180deg, #0a0b0e, #070807);
}

.product {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.product.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.product.reverse .product-copy {
  order: 2;
}

.product-visual {
  position: relative;
}

.product-visual img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  min-height: 340px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(235, 0, 82, 0.12);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 12px;
}

.investors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.investor {
  min-height: 110px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-2);
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(235, 0, 82, 0.12), transparent 70%),
    var(--bg-2);
  text-align: center;
  padding: 16px 10px;
}

.inv-mono {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(235, 0, 82, 0.5);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(235, 0, 82, 0.12);
}

.inv-name {
  font-weight: 650;
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
}

.quotes {
  overflow: hidden;
  margin-top: 36px;
}

.quote-viewport {
  overflow: hidden;
}

.quote-track {
  display: flex;
  transition: transform 0.5s ease;
}

.quote-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-2);
}

.quote-card p {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 54ch;
}

.quote-who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-who img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-2);
}

.quote-who strong {
  display: block;
}

.quote-who span {
  color: var(--muted);
  font-size: 13px;
}

.quote-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.quote-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: #fff;
}

.quote-nav button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cta-band {
  margin: 20px 0 0;
  padding: 56px;
  border-radius: 24px;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(235, 0, 82, 0.28), transparent 50%),
    url("./assets/og-share.png") right center / cover no-repeat,
    #12060c;
  border: 1px solid rgba(235, 0, 82, 0.28);
  overflow: hidden;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #12060c 18%, rgba(18, 6, 12, 0.82) 52%, rgba(18, 6, 12, 0.35) 100%);
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  max-width: 16ch;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--text);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(520px, 100%);
  background: #12131a;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.modal-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.modal-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  font-size: 12px;
  color: var(--text-2);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: #0c0d12;
  padding: 11px 12px;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand);
}

.field textarea {
  min-height: 84px;
  resize: vertical;
}

.form-error {
  color: #ff8aa8;
  font-size: 13px;
  margin: 0 0 10px;
}

.success {
  color: #d7ffe8;
  background: rgba(59, 170, 122, 0.12);
  border: 1px solid rgba(59, 170, 122, 0.35);
  padding: 14px;
  border-radius: 12px;
}

.gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(60% 50% at 50% 20%, rgba(235, 0, 82, 0.18), transparent 60%),
    #070807;
}

.gate img {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
}

.spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--brand);
  border-radius: 50%;
  margin: 18px auto 0;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.gate a {
  color: var(--brand-2);
  text-decoration: underline;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track,
  .spinner,
  .quote-track {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 12px;
  }
  .desktop-nav .nav-link {
    padding: 10px 8px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-cover {
    width: 100%;
    right: 0;
    opacity: 0.55;
  }
  .hero-grid,
  .split,
  .product,
  .product.reverse,
  .news-grid,
  .card-grid,
  .card-grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .product.reverse .product-copy {
    order: 0;
  }
  .stat-col {
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    text-align: left;
    gap: 18px;
    margin-top: 28px;
    background: none;
    padding: 0;
  }
  .hero {
    padding-top: 28px;
  }
  .hero h1 {
    max-width: none;
  }
  .investors {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-row {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 28px;
  }
  .mobile-drawer {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: #0c0d12;
    transform: translateX(100%);
    transition: 0.24s ease;
    z-index: 40;
    padding: 18px;
    overflow: auto;
  }
  .mobile-drawer.is-open {
    transform: none;
  }
  .mobile-drawer a,
  .mobile-drawer summary {
    display: block;
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    font-weight: 550;
  }
  .mobile-drawer details a {
    color: var(--muted);
    font-weight: 450;
    padding-left: 16px;
  }
}

@media (max-width: 640px) {
  .wrap,
  .header-inner {
    width: min(calc(100% - 28px), var(--max));
  }
  .section {
    padding: 64px 0;
  }
  .quote-card p {
    font-size: 18px;
  }
  .stat-col {
    grid-template-columns: 1fr 1fr;
  }
}


html.lang-pending body > *:not(#lang-gate) {
  visibility: hidden;
}
html.lang-pending #lang-gate {
  display: grid;
}
html.is-ready #lang-gate,
#lang-gate {
  display: none;
}
html.lang-pending #lang-gate {
  display: grid;
}
.spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #eb0052;
  border-radius: 50%;
  margin: 18px auto 0;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.lang-menu button,
.drawer-langs button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: inherit;
  background: transparent;
  text-align: left;
}
.lang-menu button:hover,
.lang-menu button.is-active,
.drawer-langs button:hover,
.drawer-langs button.is-active {
  background: rgba(235, 0, 82, 0.12);
  color: #fff;
}
