:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface2: #2c2c2e;
  --surface3: #3a3a3c;
  --text: #ffffff;
  --text2: #ebebf5;
  --muted: #8e8e93;
  --accent: #c2e305;
  --accent-dim: rgba(194, 227, 5, 0.22);
  --accent-border: rgba(194, 227, 5, 0.55);
  --accent-press: #a5be04;
  --on-accent: #1a1a00;
  --green: #30d158;
  --orange: #ff9f0a;
  --danger: #ff453a;
  --border: rgba(255, 255, 255, 0.06);
  --border-mid: rgba(255, 255, 255, 0.08);
  --sticky-bg: rgba(0, 0, 0, 0.88);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  --flag-bg: linear-gradient(160deg, #343438 0%, #1c1c1f 100%);
  --flag-inset: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --flag-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --star: #f5c518;
  --country-cols: 4;
  --country-tile-gap: 14px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.18s;
  --dur-reveal: 0.88s;
  --wrap: min(1120px, calc(100% - 40px));
  --header-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--sticky-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition:
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.38);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: var(--text);
  transition: opacity 0.15s;
}

.site-logo:hover {
  opacity: 0.92;
}

.site-logo__title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  line-height: 1;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.site-header__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
  transition: opacity var(--dur-fast) ease;
}

.site-header__link:hover {
  opacity: 0.72;
}

.site-header__link.is-active {
  font-weight: 600;
  opacity: 1;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition:
    background var(--dur-fast) ease,
    transform 0.22s var(--ease-spring-pop),
    box-shadow 0.25s var(--ease-out);
  transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .site-btn:hover {
    transform: scale(1.03);
  }

  .site-btn:active {
    transform: scale(0.97);
  }

  .site-btn--hero:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  }

  .site-btn--hero:active {
    transform: scale(0.97);
  }
}

.site-btn--sm {
  padding: 10px 16px;
  font-size: 0.875rem;
}

.site-btn--ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}

.site-btn--ghost:hover {
  background: var(--surface);
  color: var(--text);
}

.site-btn--invert {
  background: #000;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.site-btn--invert:hover {
  background: var(--accent-dim);
}

.site-btn--green {
  background: var(--green);
  color: #ffffff;
}

.site-btn--green:hover {
  background: #28b84a;
}

.site-btn:hover {
  background: var(--accent-press);
}

.site-btn--hero {
  min-height: 52px;
  padding: 0 28px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
  .site-btn--hero:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  }
}

.hero__copy {
  max-width: 520px;
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero__lead {
  margin: 0 0 28px;
  color: var(--text2);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.hero {
  padding: 48px 0 36px;
  background: var(--bg);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px 48px;
  align-items: center;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(52%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(194, 227, 5, 0.12) 0%,
    rgba(194, 227, 5, 0.04) 42%,
    transparent 66%
  );
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.hero__mascot-wrap {
  position: relative;
  z-index: 1;
  display: inline-block;
  line-height: 0;
  width: min(100%, 520px);
  max-width: 520px;
}

.hero__mascot {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  filter:
    contrast(1.16)
    saturate(1.22)
    brightness(0.93)
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 28px rgba(194, 227, 5, 0.08));
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.dot--ok {
  background: var(--green);
  box-shadow: 0 0 8px rgba(48, 209, 88, 0.6);
}

.section {
  padding: 40px 0 48px;
}

.hero + .section {
  padding-top: 24px;
}

.section--surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section__head {
  margin: 0 0 14px;
}

.section__head h2 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section__head p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

#countries .section__head {
  margin-bottom: 18px;
}

#countries .section__head h2 {
  margin-bottom: 0;
}

#countries {
  padding-bottom: 20px;
}

#countries + #reviews {
  padding-top: 16px;
}

.search-wrap {
  position: relative;
  margin-bottom: 14px;
}

.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  max-width: none;
  height: 48px;
  padding: 0 16px 0 44px;
  border: none;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: box-shadow var(--dur-fast) ease;
}

.search-input:focus {
  box-shadow: 0 0 0 2px var(--accent-dim);
}

.search-input::placeholder {
  color: var(--muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.chip {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform 0.12s var(--ease-spring);
}

.chip:hover {
  background: var(--surface2);
}

.chip:active {
  transform: scale(0.96);
}

.chip.active {
  background: var(--accent);
  color: var(--on-accent);
}

.rows {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--surface);
}

.rows.flush .row:first-child,
.rows.flush .faq-item:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.rows.flush .row:last-child,
.rows.flush .faq-item:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.rows.flush .row:only-child,
.rows.flush .faq-item:only-child {
  border-radius: var(--radius-lg);
}

.row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition:
    background var(--dur-fast) ease,
    transform 0.22s var(--ease-spring-pop);
}

.row:hover {
  background: var(--surface2);
}

.row:active {
  background: var(--surface2);
}

.row + .row,
.rows .row:not(:first-child) {
  border-top: 1px solid var(--border);
}

.row--static {
  cursor: default;
  pointer-events: none;
  opacity: 0.55;
}

.row--static:hover,
.row--static:active {
  background: var(--surface);
  transform: none;
}

.row-body {
  flex: 1;
  min-width: 0;
}

.row-title {
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.row-sub {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.25;
}

.row-chevron {
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

.row-badge {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(194, 227, 5, 0.18);
  color: var(--accent);
}

.row-badge--sold {
  background: rgba(148, 163, 184, 0.2);
  color: var(--muted);
}

.row-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

.row-flag.em {
  font-size: 24px;
  line-height: 1;
  background: var(--flag-bg);
  box-shadow: var(--flag-inset), var(--flag-shadow);
}

.flag-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
  background: var(--flag-bg);
  box-shadow: var(--flag-inset), var(--flag-shadow);
}

.flag-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.2);
  transform-origin: center center;
  display: block;
}

.section-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.country-empty,
.info-box {
  margin: 0;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.info-box {
  text-align: left;
}

.row-sub--price {
  color: var(--accent);
  font-weight: 600;
}

#countries .search-wrap {
  margin-bottom: 14px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(var(--country-cols), minmax(0, 1fr));
  gap: var(--country-tile-gap);
  perspective: 1200px;
}

.country-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  text-decoration: none;
  transition:
    background var(--dur-fast) ease,
    transform 0.28s var(--ease-spring-pop),
    box-shadow 0.35s var(--ease-out);
}

a.country-tile:hover {
  background: var(--surface2);
}

button.country-tile {
  appearance: none;
  border: none;
  width: 100%;
  cursor: pointer;
  font: inherit;
}

button.country-tile:hover {
  background: var(--surface2);
}

.country-tile--review:hover {
  background: var(--surface2);
}

@media (prefers-reduced-motion: no-preference) {
  a.country-tile,
  button.country-tile {
    transform-origin: center center;
  }

  a.country-tile:hover,
  button.country-tile:hover {
    transform: scale(1.03);
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(194, 227, 5, 0.1);
  }

  a.country-tile:active,
  button.country-tile:active {
    transform: scale(0.97);
  }

  .country-tile--review {
    transform-origin: center center;
  }

  .country-tile--review:hover {
    transform: scale(1.03);
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(194, 227, 5, 0.1);
  }

  .row {
    transform-origin: center center;
  }

  .row:hover {
    transform: scale(1.015);
  }

  .row:active {
    transform: scale(0.985);
  }
}

a.country-tile:focus-visible,
button.country-tile:focus-visible {
  outline: 2px solid rgba(194, 227, 5, 0.85);
  outline-offset: 2px;
}

.country-tile--static {
  opacity: 0.5;
  pointer-events: none;
}

.country-tile--review {
  align-items: flex-start;
  cursor: default;
}

.country-tile--review .flag-badge,
.country-tile--review .row-flag {
  margin-top: 1px;
}

.country-tile .flag-badge,
.country-tile .row-flag {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}

.country-tile .row-flag.em {
  font-size: 22px;
}

.country-tile__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.country-tile__name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.country-tile__price {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
  white-space: nowrap;
}

.country-tile__sold {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.country-tile__meta {
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.country-tile__name--quote {
  font-size: 14px;
  font-weight: 400;
  color: var(--text2);
}

.country-tile__sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted);
}

.country-tile__sub-country {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-tile__score {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--star);
  white-space: nowrap;
}

.country-tile.is-hidden {
  display: none;
}

.country-grid .country-empty {
  grid-column: 1 / -1;
}

#countries .country-empty {
  margin-top: 0;
}

.reviews-more {
  margin: 8px 0 0;
  text-align: center;
}

.flag-badge.xs {
  width: 20px;
  height: 20px;
  box-shadow: none;
}

.flag-badge.xs img {
  transform: scale(1.12);
}

.reviews-empty {
  margin: 0;
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.steps__n {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 800;
  font-size: 0.95rem;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(194, 227, 5, 0.15) 0%, rgba(194, 227, 5, 0.04) 100%);
  border-top: 1px solid var(--border);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 40px 0 36px;
  border-top: 1px solid var(--border);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 20px 40px;
  align-items: start;
}

.site-footer__brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
}

.site-footer__brand .site-logo__title {
  font-size: 1.05rem;
  font-weight: 700;
  transition: color var(--dur-fast) ease;
}

.site-footer__brand:hover .site-logo__title {
  color: var(--accent);
}

.site-footer__brand:hover {
  opacity: 1;
}

.site-footer__desc {
  margin: 0;
  max-width: 340px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__col a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  transition: color var(--dur-fast) ease;
}

.site-footer__col a:hover {
  color: var(--accent);
}

.support-page {
  padding-top: 24px;
}

.support-page .section__head {
  margin-bottom: 18px;
}

.support-page .section__head h1 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.support-page .section__head p {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.support-page__cta {
  margin: 0 0 28px;
}

.faq-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-rows {
  margin-bottom: 0;
}

.faq-item {
  border: none;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.faq-item summary::after {
  content: "›";
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform var(--dur-fast) ease;
}

.faq-item[open] summary::after {
  transform: rotate(-90deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item-body {
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.faq-item-body p {
  margin: 0 0 8px;
}

.faq-item-body p:last-child {
  margin-bottom: 0;
}

.faq-item-body ul {
  margin: 8px 0;
  padding-left: 20px;
}

.faq-item-body li {
  margin-bottom: 4px;
}

.faq-item-body b {
  color: var(--text2);
  font-weight: 600;
}

.faq-more {
  margin: 20px 0 0;
  text-align: center;
}

.faq-empty {
  margin: 0;
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.support-page .faq-groups {
  margin-top: 0;
}

.legal-page {
  max-width: 720px;
  margin-inline: auto;
  padding-top: 24px;
}

.legal-page h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.legal-meta {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  font-size: 14px;
}

.legal-nav__sep {
  color: var(--muted);
}

.legal-nav__link {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

.legal-nav__link:hover {
  color: var(--text);
}

.legal-nav__link.is-active {
  color: var(--accent);
}

.legal-doc {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
}

.legal-doc > p:first-child {
  margin-top: 0;
}

.legal-doc h2 {
  margin: 28px 0 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p {
  margin: 0 0 14px;
}

.legal-doc p:last-child {
  margin-bottom: 0;
}

.legal-doc ul {
  margin: 0 0 14px;
  padding: 0 0 0 20px;
}

.legal-doc li {
  margin: 0 0 8px;
}

.legal-doc b {
  color: var(--text);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.error-page {
  max-width: 520px;
  margin-inline: auto;
  padding: 16px 0 32px;
  text-align: center;
}

.error-page__code {
  margin: 0 0 8px;
  font-size: clamp(56px, 14vw, 88px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
}

.error-page__cat-wrap {
  width: min(100%, 280px);
  margin: 0 auto 12px;
}

.error-page__cat {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.error-page h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.error-page__lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.error-page .site-btn {
  min-width: 180px;
}

@media (max-width: 1100px) {
  :root {
    --country-cols: 3;
  }
}

@media (max-width: 900px) {
  :root {
    --country-cols: 2;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }

  .site-footer__brand-col {
    grid-column: 1 / -1;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__mascot-wrap {
    width: min(100%, 420px);
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: calc(100% - 32px);
    --country-cols: 2;
    --country-tile-gap: 10px;
  }

  .country-tile {
    min-height: 68px;
    padding: 12px 14px;
  }

  .country-tile__name {
    font-size: 13px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-logo__title {
    font-size: 0.95rem;
  }

  .site-header__nav {
    gap: 12px;
  }

  .site-header__link {
    font-size: 13px;
  }

  .hero {
    padding-top: 32px;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-shop__panel {
    max-height: min(92dvh, 800px);
  }

  @supports (height: 100dvh) {
    .landing-shop__panel {
      max-height: 92dvh;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-group .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }

  .hero__mascot-wrap,
  .hero__glow {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translate3d(0, 52px, 0) scale(0.94);
    filter: blur(10px);
    transition:
      opacity var(--dur-reveal) var(--ease-expo-out),
      transform calc(var(--dur-reveal) + 0.12s) var(--ease-spring-pop),
      filter calc(var(--dur-reveal) - 0.1s) ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .reveal--from-left {
    transform: translate3d(-36px, 0, 0) scale(0.96);
  }

  .reveal--from-right {
    transform: translate3d(36px, 0, 0) scale(0.96);
  }

  .reveal--scale {
    transform: scale(0.82) translate3d(0, 24px, 0);
    filter: blur(14px);
    transform-origin: center center;
  }

  .reveal--scale.reveal--from-right {
    transform: scale(0.82) translate3d(48px, 12px, 0);
    filter: blur(14px);
  }

  .reveal--scale.is-visible,
  .reveal--scale.reveal--from-right.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .reveal--from-left.is-visible,
  .reveal--from-right.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .reveal--fade {
    transform: translate3d(0, -10px, 0) scale(0.98);
    filter: blur(4px);
  }

  .reveal--fade.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .reveal--hero {
    transform: translate3d(0, 64px, 0) scale(0.9);
    filter: blur(16px);
    transition:
      opacity 1s var(--ease-expo-out),
      transform 1.15s var(--ease-spring-pop),
      filter 0.85s ease;
  }

  .reveal--hero.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .reveal--pop {
    transform: translate3d(0, 44px, 0) scale(0.86) rotateX(8deg);
    filter: blur(6px);
    transform-origin: center bottom;
    transition:
      opacity 0.72s var(--ease-expo-out),
      transform 0.82s var(--ease-spring-pop),
      filter 0.55s ease;
  }

  .reveal--pop.is-visible {
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
    filter: blur(0);
  }

  .reveal--soft {
    transform: translate3d(0, 28px, 0) scale(0.97);
    filter: blur(6px);
    transition:
      opacity var(--dur-reveal) var(--ease-expo-out),
      transform var(--dur-reveal) var(--ease-expo-out),
      filter 0.65s ease;
  }

  .reveal--soft.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .reveal--soft.reveal--from-right {
    transform: translate3d(24px, 0, 0) scale(0.97);
    filter: blur(6px);
  }

  .reveal--soft.reveal--from-right.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .section__head.reveal {
    transform: translate3d(0, 56px, 0) scale(0.92);
    filter: blur(8px);
  }

  .section__head.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .hero__mascot-wrap.reveal,
  .hero__mascot-wrap.reveal.is-visible {
    filter: none;
  }

  @keyframes hero-glow-breathe {
    0%,
    100% {
      opacity: 0.62;
      transform: translate(-50%, -50%) scale(1);
    }

    50% {
      opacity: 0.78;
      transform: translate(-50%, -50%) scale(1.03);
    }
  }

  html.motion-on .hero__glow {
    animation: hero-glow-breathe 8s ease-in-out infinite;
  }
}

body.landing-shop-open {
  overflow: hidden;
}

.landing-shop.hidden {
  display: none !important;
}

.landing-shop {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
}

.landing-shop.is-open {
  visibility: visible;
  pointer-events: auto;
}

.landing-shop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background 0.32s ease,
    backdrop-filter 0.32s ease;
}

.landing-shop.is-open .landing-shop__backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.landing-shop__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  max-height: min(92vh, 800px);
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.5);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.36s var(--ease-expo-out);
}

.landing-shop.is-open .landing-shop__panel {
  transform: translate3d(0, 0, 0);
}

.landing-shop__handle {
  flex-shrink: 0;
  width: 36px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
}

.landing-shop__head {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 10px;
  border-bottom: 1px solid var(--border);
}

.landing-shop__head-spacer {
  width: 40px;
  height: 40px;
}

.landing-shop__back {
  appearance: none;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text2);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) ease;
}

.landing-shop__back svg {
  width: 20px;
  height: 20px;
}

.landing-shop__back:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.landing-shop__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-shop__view {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 18px 18px 12px;
  -webkit-overflow-scrolling: touch;
}

.landing-shop__view.view-enter {
  animation: shop-view-in 0.24s var(--ease-out) both;
}

.landing-shop__view.view-enter-back {
  animation: shop-view-in-back 0.24s var(--ease-out) both;
}

@keyframes shop-view-in {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shop-view-in-back {
  from {
    opacity: 0;
    transform: translate3d(-8px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.landing-shop__foot {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 12px 18px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.landing-shop__cta {
  width: 100%;
  min-height: 54px;
  border-radius: var(--radius-lg);
  font-size: 17px;
}

.landing-shop__cta.is-busy,
.landing-shop__cta:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none !important;
}

.shop-section-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text2);
}

.shop-section-lead {
  margin: -4px 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.shop-field-label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
}

.shop-promo {
  margin-bottom: 4px;
}

.shop-promo__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.shop-promo__input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition:
    border-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
}

.shop-promo__input::placeholder {
  color: rgba(142, 142, 147, 0.85);
}

.shop-promo__input:focus {
  border-color: rgba(194, 227, 5, 0.45);
  box-shadow: 0 0 0 3px rgba(194, 227, 5, 0.12);
}

.shop-promo__apply {
  flex-shrink: 0;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface2);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color var(--dur-fast) ease,
    background var(--dur-fast) ease;
}

.shop-promo__apply:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--surface);
}

.shop-promo__apply:disabled {
  opacity: 0.6;
  cursor: wait;
}

.shop-promo__hint {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--danger);
}

.shop-promo__skip {
  width: 100%;
  margin-top: 16px;
  min-height: 54px;
  border-radius: var(--radius-lg);
  font-size: 17px;
}

.shop-promo__applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius-lg);
  background: rgba(194, 227, 5, 0.06);
}

.shop-promo__applied-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.shop-promo__applied-text strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.shop-promo__applied-text span {
  font-size: 13px;
  color: var(--accent);
}

.shop-promo__clear {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 0;
}

.shop-promo__clear:hover {
  color: var(--text2);
}

.shop-promo__price {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--text2);
}

.shop-promo__price s {
  color: var(--muted);
  margin-right: 8px;
}

.shop-plans + .shop-section-title {
  margin-top: 20px;
}

.shop-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.shop-hero .flag-badge,
.shop-hero .row-flag {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.shop-hero__text {
  min-width: 0;
}

.shop-hero__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.shop-hero__sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.35;
}

.shop-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.shop-plan-card {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition:
    border-color var(--dur-fast) ease,
    background var(--dur-fast) ease,
    transform 0.14s var(--ease-spring);
}

.shop-plan-card:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--surface2);
}

.shop-plan-card:active:not(:disabled) {
  transform: scale(0.985);
}

.shop-plan-card.is-selected {
  border-color: var(--accent-border);
  background: rgba(194, 227, 5, 0.06);
  box-shadow: inset 0 0 0 1px rgba(194, 227, 5, 0.12);
}

.shop-plan-card.is-sold {
  opacity: 0.4;
  cursor: default;
}

.shop-plan-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.shop-plan-card__row--meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.shop-plan-card__gb {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.shop-plan-card__price {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.shop-plan-card.is-selected .shop-plan-card__price {
  color: var(--accent);
}

.shop-plan-card__price--ghost {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.shop-plan-card[data-pm].is-selected .shop-plan-card__gb {
  color: var(--accent);
}

.shop-plan-card.is-static {
  pointer-events: none;
  cursor: default;
}

.shop-plans--single {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  grid-template-columns: none;
}

@media (max-width: 520px) {
  .shop-plans:not(.shop-plans--single) {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .shop-plan-card {
    padding: 16px;
    min-height: 52px;
  }

  .shop-plan-card__gb,
  .shop-plan-card__price {
    font-size: 17px;
  }

  .landing-shop__panel {
    border-radius: 20px 20px 0 0;
  }

  .landing-shop__view {
    padding-left: 16px;
    padding-right: 16px;
  }

  .landing-shop__foot {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .shop-checkout-head__price-val {
    font-size: 38px;
  }
}

@media (min-width: 900px) {
  .shop-plans:not(.shop-plans--single) {
    gap: 10px;
  }
}

.shop-checkout-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.shop-checkout-head .flag-badge,
.shop-checkout-head .row-flag {
  width: 56px;
  height: 56px;
}

.shop-checkout-head__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shop-checkout-head__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.shop-checkout-head__chips span {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
}

.shop-checkout-head__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-top: 4px;
}

.shop-checkout-head__price-val {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}

.shop-checkout-head__price-cur {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.shop-email-page {
  padding-top: 4px;
}

.shop-email-page__title {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.shop-email-page__summary {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--muted);
}

.shop-email-page__rule {
  height: 1px;
  margin: 0 0 18px;
  background: var(--border);
}

.shop-email-page__hint {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.shop-email-page__label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
}

.shop-email-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.shop-email-head__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.shop-email-head__sub {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.shop-email-head__lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.landing-shop__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-shop__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 200px;
  color: var(--muted);
  font-size: 15px;
}

.landing-shop__loading p {
  margin: 0;
}

.landing-shop__spinner {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: shop-spin 0.7s linear infinite;
}

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

.shop-pay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border: none;
  border-top: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background var(--dur-fast) ease;
}

.shop-pay:first-child {
  border-top: none;
}

.shop-pay:hover {
  background: rgba(255, 255, 255, 0.03);
}

.shop-pay.is-active {
  background: rgba(194, 227, 5, 0.08);
}

.shop-pay__title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.shop-pay__hint {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.25;
}

.shop-pay__mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
  position: relative;
}

.shop-pay.is-active .shop-pay__mark {
  border-color: var(--accent);
  background: var(--accent);
}

.shop-pay.is-active .shop-pay__mark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.landing-shop__note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 159, 10, 0.1);
  border: 1px solid rgba(255, 159, 10, 0.18);
  color: var(--orange);
  font-size: 14px;
  line-height: 1.4;
}

.landing-shop__lead {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.landing-shop__field {
  margin-bottom: 8px;
}

.landing-shop__email {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition:
    border-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
}

.landing-shop__email::placeholder {
  color: rgba(142, 142, 147, 0.85);
}

.landing-shop__email:focus {
  border-color: rgba(194, 227, 5, 0.45);
  box-shadow: 0 0 0 3px rgba(194, 227, 5, 0.12);
}

.landing-shop__legal {
  margin: 0;
  width: 100%;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.landing-shop__legal a {
  color: var(--text2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-shop__err {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--danger);
  text-align: center;
}

.landing-shop__ok {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.18);
  color: var(--green);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.landing-shop__done {
  width: 100%;
}

.hidden {
  display: none !important;
}

@media (min-width: 641px) {
  .landing-shop {
    align-items: center;
    padding: 28px 24px;
  }

  .landing-shop__handle {
    display: none;
  }

  .landing-shop__panel {
    width: min(480px, calc(100vw - 48px));
    max-width: 480px;
    max-height: min(86vh, 720px);
    border-radius: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    transform: translate3d(0, 18px, 0) scale(0.97);
    opacity: 0;
    transition:
      transform 0.34s var(--ease-expo-out),
      opacity 0.28s ease;
  }

  .landing-shop.is-open .landing-shop__panel {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  .landing-shop__head {
    padding: 12px 18px 14px;
  }

  .landing-shop__view {
    padding: 20px 24px 16px;
  }

  .landing-shop__foot {
    padding: 14px 24px 20px;
  }
}

@media (min-width: 900px) {
  .landing-shop {
    padding: 40px 32px;
  }

  .landing-shop__panel {
    width: min(540px, calc(100vw - 64px));
    max-width: 540px;
    max-height: min(82vh, 680px);
  }

  .shop-plans:not(.shop-plans--single) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .shop-plans.shop-plans--single {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
  }

  .shop-hero {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .shop-checkout-head__price-val {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .landing-shop__panel {
    width: 560px;
    max-width: 560px;
  }
}

@media (max-width: 640px) and (hover: none) {
  a.country-tile:hover,
  button.country-tile:hover,
  .country-tile--review:hover {
    transform: none;
    box-shadow: none;
  }

  a.country-tile:active,
  button.country-tile:active {
    transform: scale(0.98);
    background: var(--surface2);
  }

  .shop-plan-card:active:not(:disabled) {
    transform: scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-shop__panel,
  .landing-shop__backdrop,
  .landing-shop__view.view-enter,
  .landing-shop__view.view-enter-back,
  .landing-shop__spinner {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}
