:root {
  color-scheme: light;

  --rc-color-background: #f7f9fb;
  --rc-color-surface: #f7f9fb;
  --rc-color-surface-dim: #d8dadc;
  --rc-color-surface-bright: #f7f9fb;
  --rc-color-surface-lowest: #ffffff;
  --rc-color-surface-low: #f2f4f6;
  --rc-color-surface-container: #eceef0;
  --rc-color-surface-high: #e6e8ea;
  --rc-color-surface-highest: #e0e3e5;
  --rc-color-surface-variant: #e0e3e5;
  --rc-color-primary: #003ec7;
  --rc-color-primary-action: #0052ff;
  --rc-color-primary-soft: #dde1ff;
  --rc-color-primary-muted: #b7c4ff;
  --rc-color-primary-ink: #001452;
  --rc-color-secondary: #505f76;
  --rc-color-secondary-soft: #d0e1fb;
  --rc-color-tertiary: #005a3c;
  --rc-color-tertiary-action: #007550;
  --rc-color-tertiary-soft: #6ffbbe;
  --rc-color-error: #ba1a1a;
  --rc-color-error-soft: #ffdad6;
  --rc-color-text: #191c1e;
  --rc-color-text-muted: #434656;
  --rc-color-text-soft: #737688;
  --rc-color-inverse: #2d3133;
  --rc-color-inverse-text: #eff1f3;
  --rc-color-border: #d9deea;
  --rc-color-border-strong: #c3c5d9;
  --rc-color-on-primary: #ffffff;

  --rc-font-heading: "Plus Jakarta Sans", sans-serif;
  --rc-font-body: "Inter", sans-serif;

  --rc-space-1: 4px;
  --rc-space-2: 8px;
  --rc-space-3: 12px;
  --rc-space-4: 16px;
  --rc-space-5: 24px;
  --rc-space-6: 32px;
  --rc-space-7: 48px;
  --rc-space-8: 64px;

  --rc-radius-sm: 4px;
  --rc-radius-md: 8px;
  --rc-radius-lg: 12px;
  --rc-radius-xl: 16px;
  --rc-radius-full: 9999px;

  --rc-container: 1280px;
  --rc-gutter: 24px;
  --rc-shadow-card: 0 4px 12px rgba(0, 82, 255, 0.05);
  --rc-shadow-raised: 0 16px 36px rgba(25, 28, 30, 0.08);
  --rc-focus-ring: 0 0 0 3px rgba(0, 82, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--rc-color-background);
  text-rendering: optimizeLegibility;
}

body.app-body {
  margin: 0;
  min-height: 100vh;
  color: var(--rc-color-text);
  font-family: var(--rc-font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(221, 225, 255, 0.58) 0, rgba(247, 249, 251, 0) 360px),
    radial-gradient(circle at 12% 10%, rgba(111, 251, 190, 0.18), transparent 280px),
    var(--rc-color-background);
}

body.app-body::selection {
  color: var(--rc-color-primary-ink);
  background: var(--rc-color-primary-soft);
}

body.app-body a {
  color: inherit;
  text-decoration: none;
}

body.app-body button,
body.app-body input {
  font: inherit;
  letter-spacing: 0;
}

body.app-body button {
  cursor: pointer;
}

body.app-body button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

body.app-body :focus-visible {
  outline: 2px solid var(--rc-color-primary-action);
  outline-offset: 3px;
}

.material-symbols-outlined {
  display: inline-block;
  vertical-align: middle;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.top-app-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--rc-color-border) 84%, transparent);
  background: color-mix(in srgb, var(--rc-color-surface-lowest) 92%, transparent);
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.05);
  backdrop-filter: blur(16px);
}

.top-app-bar__nav {
  position: relative;
  width: min(var(--rc-container), calc(100% - (var(--rc-gutter) * 2)));
  min-height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rc-space-5);
}

.top-app-bar__left,
.top-app-bar__controls {
  display: flex;
  align-items: center;
}

.top-app-bar__left {
  min-width: 0;
  gap: var(--rc-space-7);
}

.top-app-bar__controls {
  gap: var(--rc-space-3);
}

.top-app-bar__brand,
.site-footer__logo {
  color: var(--rc-color-primary-action);
  font-family: var(--rc-font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.top-app-bar__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.top-app-bar__brand::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: var(--rc-space-2);
  border-radius: var(--rc-radius-full);
  background: var(--rc-color-primary-action);
  box-shadow: 0 0 0 5px var(--rc-color-primary-soft);
}

.top-app-bar__links {
  display: flex;
  align-items: center;
  gap: var(--rc-space-5);
}

.top-app-bar__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--rc-color-text-muted);
  font-family: var(--rc-font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.16s ease, border-color 0.16s ease;
}

.top-app-bar__link:hover,
.top-app-bar__link--active {
  color: var(--rc-color-primary-action);
}

.top-app-bar__link--active {
  position: relative;
}

.top-app-bar__link--active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: var(--rc-radius-full);
  background: currentColor;
}

.top-app-bar__dropdown {
  position: relative;
}

.top-app-bar__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.top-app-bar__dropdown-trigger::-webkit-details-marker {
  display: none;
}

.top-app-bar__dropdown-trigger::marker {
  content: "";
}

.top-app-bar__caret {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.top-app-bar__dropdown[open] .top-app-bar__caret {
  transform: rotate(180deg);
}

.top-app-bar__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  max-height: min(70vh, 520px);
  display: grid;
  gap: 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-md);
  background: var(--rc-color-surface-lowest);
  box-shadow: var(--rc-shadow-raised);
}

.top-app-bar__dropdown:not([open]) .top-app-bar__dropdown-menu {
  display: none;
}

.top-app-bar__dropdown-item {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: var(--rc-radius-sm);
}

.top-app-bar__dropdown-item:hover {
  background: var(--rc-color-primary-soft);
}

.top-app-bar__dropdown-trigger:focus-visible,
.top-app-bar__dropdown-item:focus-visible {
  outline: 2px solid var(--rc-color-primary-action);
  outline-offset: 3px;
}

.top-app-bar__action,
.trip-calculator__submit {
  min-height: 40px;
  border: 0;
  border-radius: var(--rc-radius-md);
  background: var(--rc-color-primary-action);
  color: var(--rc-color-on-primary);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 82, 255, 0.18);
  transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.top-app-bar__menu {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-md);
  color: var(--rc-color-primary);
  background: var(--rc-color-surface-lowest);
}

.top-app-bar__menu[aria-expanded="true"] {
  border-color: var(--rc-color-primary-action);
  color: var(--rc-color-on-primary);
  background: var(--rc-color-primary-action);
}

.top-app-bar__action {
  padding: 0 var(--rc-space-5);
}

.top-app-bar__action:hover,
.trip-calculator__submit:hover:not(:disabled) {
  background: var(--rc-color-primary);
  box-shadow: 0 12px 24px rgba(0, 82, 255, 0.22);
}

.top-app-bar__action:active,
.trip-calculator__submit:active:not(:disabled) {
  transform: translateY(1px);
}

.country-page-shell {
  width: min(var(--rc-container), calc(100% - (var(--rc-gutter) * 2)));
  margin: 0 auto;
  padding: 10px 0 var(--rc-space-8);
  display: grid;
  gap: 18px;
}

.country-page-shell > * {
  min-width: 0;
}

.country-page-shell__bento {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 18px;
}

.country-page-shell__info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--rc-space-5);
}

.simple-page__card {
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-xl);
  padding: 26px var(--rc-space-7) 20px;
  background: var(--rc-color-surface-lowest);
  box-shadow: var(--rc-shadow-card);
}

.simple-page__title {
  margin: 0;
  color: var(--rc-color-text);
  font-family: var(--rc-font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.simple-page__text {
  max-width: 640px;
  margin: var(--rc-space-4) 0 0;
  color: var(--rc-color-text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.home-section {
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-xl);
  padding: var(--rc-space-6);
  background: var(--rc-color-surface-lowest);
  box-shadow: var(--rc-shadow-card);
}

.home-section h2 {
  margin: 0;
  color: var(--rc-color-text);
  font-family: var(--rc-font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rc-space-2);
  border: 0;
  border-radius: var(--rc-radius-md);
  padding: 0 var(--rc-space-6);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.home-button--primary {
  color: #fff;
  background: var(--rc-color-primary-action);
  box-shadow: 0 10px 20px rgba(0, 82, 255, 0.18);
}

.home-button--primary:link,
.home-button--primary:visited {
  color: #fff;
}

.home-button--primary .material-symbols-outlined {
  color: #fff;
}

.home-button--primary:hover {
  background: var(--rc-color-primary);
  box-shadow: 0 12px 24px rgba(0, 82, 255, 0.22);
}

.home-button:active {
  transform: translateY(1px);
}

.home-final-cta {
  display: grid;
  place-items: center;
  text-align: center;
}

.home-final-cta__content {
  max-width: 700px;
}

.home-final-cta p {
  margin: var(--rc-space-3) auto 0;
  max-width: 640px;
  color: var(--rc-color-text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.home-final-cta .home-button {
  margin-top: var(--rc-space-6);
}

/* =========================
   Article page layout
========================= */

.article-page {
  display: flex;
  flex-direction: column;
  gap: var(--rc-space-6);
}

.article-container {
  width: min(800px, calc(100% - (var(--rc-gutter) * 2)));
  margin: 0 auto;
}

.article-section-container {
  width: min(var(--rc-container), calc(100% - (var(--rc-gutter) * 2)));
  margin: 0 auto;
}

.article-hero {
  position: relative;
  width: min(800px, calc(100% - (var(--rc-gutter) * 2)));
  margin: var(--rc-space-5) auto 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-xl);
  background: #ffffff;
  box-shadow: var(--rc-shadow-card);
}

.article-hero__overlay {
  width: 100%;
  padding: var(--rc-space-6);
}

.article-hero__inner {
  width: min(800px, 100%);
  margin: 0 auto;
  color: var(--rc-color-text);
}

.article-hero__title {
  margin-bottom: var(--rc-space-5);
  color: var(--rc-color-text);
}

.article-hero__excerpt {
  max-width: 720px;
  color: var(--rc-color-text-muted);
}

.article-featured-image {
  width: min(800px, calc(100% - (var(--rc-gutter) * 2)));
  margin: 0 auto;
}

.article-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: var(--rc-space-3);
  font-size: 14px;
  line-height: 1.4;
  color: var(--rc-color-text-soft);
}

.article-breadcrumbs a {
  color: var(--rc-color-text-muted);
  text-decoration: none;
}

.article-breadcrumbs a:hover {
  color: var(--rc-color-primary);
  text-decoration: underline;
}

.article-breadcrumbs__sep {
  margin: 0 10px;
  opacity: 0.55;
}

.article-breadcrumbs__item {
  color: var(--rc-color-text-muted);
}

.article-breadcrumbs__current {
  color: var(--rc-color-text);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-meta {
  margin-top: var(--rc-space-4);
  font-size: 14px;
  color: var(--rc-color-text-soft);
}

.article-meta__separator {
  margin: 0 6px;
}

.article-toc {
  width: min(800px, calc(100% - (var(--rc-gutter) * 2)));
  margin: 0 auto;
  padding: var(--rc-space-4) var(--rc-space-5);
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-2xl, var(--rc-radius-xl));
  background: var(--rc-color-surface);
}

.article-toc__title {
  margin: 0 0 var(--rc-space-3);
}

.article-toc__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.article-toc__list li + li {
  margin-top: 6px;
}

.article-toc .article-toc__list a {
  color: #2f6db3;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.article-toc .article-toc__list a:hover {
  color: #1f4f8f;
  text-decoration: underline;
}

.article-content {
  margin-top: var(--rc-space-6);
  --article-space-stack: 13px;
  --article-space-h2-before: 36px;
  --article-space-h2-after: 12px;
  --article-space-h3-before: 24px;
  --article-space-h3-after: 10px;
  --article-space-h2-h3: 14px;
  --article-space-list-after: 14px;
}

.article-content > * {
  margin: 0;
}

.article-content > * + * {
  margin-top: var(--article-space-stack);
}

.article-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: var(--article-space-h2-before);
  margin-bottom: var(--article-space-h2-after);
  line-height: 1.3;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: var(--article-space-h3-before);
  margin-bottom: var(--article-space-h3-after);
  line-height: 1.35;
}

.article-content h2 + h3 {
  margin-top: var(--article-space-h2-h3);
}

.article-content h2 + p,
.article-content h3 + p {
  margin-top: 0;
}

.article-content h2,
.article-content h3 {
  scroll-margin-top: 96px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.article-content ul,
.article-content ol {
  padding-left: 20px;
  margin: 0;
}

.article-content li {
  margin-bottom: var(--rc-space-2);
  line-height: 1.6;
}

.article-content p + p {
  margin-top: var(--article-space-stack);
}

.article-content p + ul,
.article-content p + ol {
  margin-top: 12px;
}

.article-content ul + p,
.article-content ol + p {
  margin-top: var(--article-space-list-after);
}

.article-content ul + ul,
.article-content ul + ol,
.article-content ol + ul,
.article-content ol + ol {
  margin-top: 10px;
}

body.app-body .article-content a,
body.app-body .article-content a:visited {
  color: var(--rc-color-primary-action);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--rc-color-primary-action) 50%, transparent);
  transition: color 0.16s ease, border-color 0.16s ease;
}

body.app-body .article-content a:hover {
  color: var(--rc-color-primary);
  border-bottom-color: var(--rc-color-primary);
}

body.app-body .article-content a:focus-visible {
  outline: 2px solid var(--rc-color-primary-action);
  outline-offset: 2px;
  border-radius: 2px;
}

.article-content strong {
  font-weight: 600;
}

.article-content .article-image {
  margin: 0;
}

.article-content .article-image img {
  border-radius: 20px;
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.article-related-link {
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-3) var(--rc-space-4);
  border: 1px solid rgba(0, 82, 255, 0.14);
  border-radius: var(--rc-radius-xl);
  background: rgba(221, 225, 255, 0.34);
}

.article-content .article-related-link {
  margin: 0;
}

.ad-slot {
  width: 100%;
  min-width: 0;
  min-height: 96px;
  display: grid;
  gap: 8px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-lg);
  background: var(--rc-color-surface-lowest);
  overflow: hidden;
}

.article-page > .ad-slot {
  width: min(800px, calc(100% - (var(--rc-gutter) * 2)));
  margin: 0 auto;
}

.simple-page__card > .ad-slot {
  margin: var(--rc-space-5) 0;
}

.country-page-shell > .ad-slot {
  margin: 0;
}

.ad-slot__label {
  margin: 0;
  color: var(--rc-color-text-soft);
  font-size: 12px;
  line-height: 1.2;
}

.ad-slot__container {
  min-height: 72px;
  min-width: 0;
}

.article-related-link .article-related-link__label {
  margin: 0 0 4px;
  color: var(--rc-color-text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.article-related-link .article-related-link__anchor,
.article-related-link .article-related-link__anchor:visited {
  color: var(--rc-color-primary-action);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.article-related-link__anchor:hover {
  text-decoration: underline;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.article-content th,
.article-content td {
  border: 1px solid var(--rc-color-border);
  padding: 8px;
}

@media (max-width: 640px) {
  .article-content {
    --article-space-stack: 12px;
    --article-space-h2-before: 32px;
    --article-space-h2-after: 10px;
    --article-space-h3-before: 20px;
    --article-space-h3-after: 8px;
    --article-space-h2-h3: 12px;
    --article-space-list-after: 12px;
  }

  .ad-slot--desktop-only {
    display: none;
  }
}

@media (min-width: 641px) {
  .ad-slot--mobile-only {
    display: none;
  }
}

.article-faq {
  margin-top: var(--rc-space-6);
}

.article-faq h2 {
  margin: 0 0 var(--rc-space-4);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.article-faq__list {
  display: grid;
  gap: var(--rc-space-2);
}

.article-faq__item {
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-lg);
  background: color-mix(in srgb, var(--rc-color-surface-low) 76%, var(--rc-color-surface-lowest));
}

.article-faq__item summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rc-space-3);
  padding: 0 var(--rc-space-4);
  color: var(--rc-color-text);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.article-faq__item summary::-webkit-details-marker {
  display: none;
}

.article-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--rc-color-primary-action);
  border-bottom: 2px solid var(--rc-color-primary-action);
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.article-faq__item[open] summary::after {
  transform: rotate(-135deg) translateX(-1px);
}

.article-faq__item p {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  padding: 0 var(--rc-space-4);
  color: var(--rc-color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  transition:
    max-height 0.24s ease,
    opacity 0.2s ease,
    padding 0.24s ease,
    border-color 0.2s ease;
}

.article-faq__item[open] p {
  max-height: 220px;
  opacity: 1;
  border-top-color: var(--rc-color-border);
  padding: var(--rc-space-3) var(--rc-space-4) var(--rc-space-4);
}

.article-related {
  margin-top: 0;
}

.article-related__title {
  margin-top: 0;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--rc-space-6);
}

.article-related__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rc-space-5);
}

.article-related__card {
  height: 100%;
}

.article-related__media {
  height: 160px;
  background:
    linear-gradient(180deg, rgba(0, 82, 255, 0.16), rgba(25, 28, 30, 0.34)),
    var(--rc-color-surface-high);
}

.article-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-related__body {
  padding: var(--rc-space-3);
}

.article-related__card > .article-related__body h3 {
  font-size: 18px;
  margin-bottom: var(--rc-space-3);
  line-height: 1.35;
}

.article-related__card > .article-related__body a {
  text-decoration: none;
  color: var(--rc-color-text);
}

.article-related__card > .article-related__body a:hover {
  text-decoration: underline;
}

.contact-page__text {
  margin-top: var(--rc-space-5);
  max-width: 800px;
}

.contact-page__title {
  margin-bottom: var(--rc-space-7);
}

.contact-page__email {
  margin-top: var(--rc-space-3);
  font-weight: 500;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rc-space-5);
}

.blog-card {
  height: 100%;
}

.blog-pagination {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: var(--rc-space-3);
  margin-top: var(--rc-space-7);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.blog-pagination__pages {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: var(--rc-space-2);
}

.blog-pagination__control,
.blog-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--rc-color-border);
  background: var(--rc-color-surface-lowest);
  color: var(--rc-color-text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.blog-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 2px;
  color: var(--rc-color-text-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.blog-pagination__control {
  padding: 0 var(--rc-space-4);
  border-radius: var(--rc-radius-full);
  white-space: nowrap;
}

.blog-pagination__page {
  width: 40px;
  border-radius: 50%;
}

.blog-pagination__control:hover,
.blog-pagination__page:hover {
  border-color: color-mix(in srgb, var(--rc-color-primary-action) 36%, var(--rc-color-border));
  color: var(--rc-color-primary-action);
  background: color-mix(in srgb, var(--rc-color-primary-soft) 34%, var(--rc-color-surface-lowest));
}

.blog-pagination__page--current,
.blog-pagination__page--current:hover {
  border-color: var(--rc-color-primary-action);
  background: var(--rc-color-primary-action);
  color: #fff;
}

.blog-journal h1 {
  margin-bottom: var(--rc-space-3);
}

.blog-journal__intro {
  margin: 0 0 var(--rc-space-6);
  max-width: 760px;
  color: var(--rc-color-text-muted);
}

.blog-destinations {
  margin: 0 0 var(--rc-space-6);
}

.blog-destinations__title {
  margin: 0 0 var(--rc-space-3);
  font-size: 18px;
  font-family: var(--rc-font-heading);
  font-weight: 700;
  line-height: 1.35;
  color: var(--rc-color-text);
}

.blog-destinations__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rc-space-2);
}

.blog-destinations__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 var(--rc-space-4);
  border: 1px solid color-mix(in srgb, var(--rc-color-border) 86%, transparent);
  border-radius: var(--rc-radius-full);
  background: color-mix(in srgb, var(--rc-color-surface-lowest) 86%, transparent);
  color: var(--rc-color-text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.blog-destinations__link:hover {
  border-color: color-mix(in srgb, var(--rc-color-primary-action) 36%, var(--rc-color-border));
  color: var(--rc-color-primary-action);
  background: color-mix(in srgb, var(--rc-color-primary-soft) 34%, var(--rc-color-surface-lowest));
}

.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-xl);
  background: color-mix(in srgb, var(--rc-color-surface-lowest) 92%, #fff);
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.05);
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.article-card:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--rc-color-primary-action) 22%, var(--rc-color-border));
  box-shadow: 0 10px 24px rgba(0, 82, 255, 0.08);
}

.article-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(0, 82, 255, 0.12), rgba(25, 28, 30, 0.2)),
    var(--rc-color-surface-high);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__body {
  padding: 18px var(--rc-space-5) var(--rc-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--rc-space-3);
  flex: 1 1 auto;
}

.article-card__title {
  margin: 0;
  font-family: var(--rc-font-heading);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.article-card__link {
  color: var(--rc-color-text);
}

.article-card__title-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__link:hover .article-card__title-text {
  color: var(--rc-color-primary-action);
}

.article-card__excerpt {
  margin: 0;
  color: var(--rc-color-text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__meta {
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rc-space-2);
  color: var(--rc-color-text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.article-card__meta time {
  white-space: nowrap;
}

.article-card__meta-sep {
  color: color-mix(in srgb, var(--rc-color-text-soft) 58%, transparent);
}

@media (max-width: 980px) {
  .blog-list {
    grid-template-columns: 1fr;
  }

  .article-related__list {
    grid-template-columns: 1fr;
  }

  .article-card__title {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .blog-journal__intro {
    margin-bottom: var(--rc-space-5);
  }

  .blog-pagination {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .blog-pagination__pages {
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex: 0 0 auto;
  }

  .blog-pagination__page:not(.blog-pagination__page--mobile-visible) {
    display: none;
  }

  .blog-pagination__control {
    flex: 0 0 auto;
  }

  .article-card__body {
    padding: var(--rc-space-4);
  }
}

.country-hero,
.trip-calculator,
.best-choice,
.exchange-flow,
.comparison-table-section,
.exchange-rates-card,
.expert-tip {
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-xl);
  background: var(--rc-color-surface-lowest);
  box-shadow: var(--rc-shadow-card);
}

.best-choice,
.exchange-flow,
.comparison-table-section {
  overflow-anchor: none;
}

.country-hero {
  position: relative;
  min-height: 304px;
  padding: 26px var(--rc-space-7) 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  align-items: flex-start;
  gap: 30px;
  overflow: hidden;
}

.country-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 0 52%, rgba(221, 225, 255, 0.38) 52% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.country-hero > * {
  position: relative;
  z-index: 1;
}

.country-hero__copy {
  max-width: 680px;
}

.country-hero__badge,
.best-choice__badge,
.exchange-rates-card__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: var(--rc-space-2);
  border-radius: var(--rc-radius-full);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.country-hero__badge {
  padding: var(--rc-space-2) var(--rc-space-3);
  color: var(--rc-color-primary-action);
  background: color-mix(in srgb, var(--rc-color-secondary-soft) 42%, transparent);
}

.country-hero__badge-flag {
  height: 16px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.country-hero__badge-flag-image {
  display: block;
  height: 100%;
  width: auto;
  border: 0;
}

.country-hero h1,
.best-choice h2,
.exchange-flow h2,
.comparison-table-section h2,
.exchange-rates-card h2,
.expert-tip h2 {
  margin: 0;
  color: var(--rc-color-text);
  font-family: var(--rc-font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.country-hero h1 {
  margin-top: var(--rc-space-4);
  max-width: 720px;
  font-size: 48px;
  letter-spacing: 0;
}

.country-hero__copy > p {
  max-width: 640px;
  margin: var(--rc-space-4) 0 0;
  color: var(--rc-color-text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.country-hero__lede-line {
  display: block;
}

.country-hero__lede-gap {
  display: block;
  height: 6px;
}

.country-hero__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.country-hero__flag {
  width: min(100%, 340px);
  aspect-ratio: 4 / 3;
  padding: var(--rc-space-2);
  border-radius: var(--rc-radius-xl);
  overflow: hidden;
  background: var(--rc-color-surface-lowest);
  box-shadow: 0 22px 42px rgba(25, 28, 30, 0.14);
}

.country-hero__flag-image {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--rc-radius-lg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(25, 28, 30, 0.05);
}

.country-hero__media-caption {
  position: absolute;
  right: var(--rc-space-5);
  bottom: var(--rc-space-4);
  min-width: 132px;
  border: 1px solid color-mix(in srgb, var(--rc-color-border) 80%, transparent);
  border-radius: var(--rc-radius-lg);
  padding: var(--rc-space-3);
  background: color-mix(in srgb, var(--rc-color-surface-lowest) 90%, transparent);
  box-shadow: var(--rc-shadow-card);
  backdrop-filter: blur(12px);
}

.country-hero__media-caption strong,
.country-hero__media-caption span {
  display: block;
}

.country-hero__media-caption strong {
  color: var(--rc-color-primary-action);
  font-family: var(--rc-font-heading);
  font-size: 20px;
  line-height: 1;
}

.country-hero__media-caption span {
  margin-top: var(--rc-space-1);
  color: var(--rc-color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.trip-calculator,
.best-choice,
.exchange-flow,
.comparison-table-section,
.exchange-rates-card,
.expert-tip {
  padding: var(--rc-space-6);
}

.trip-calculator h2,
.exchange-rates-card h2,
.expert-tip h2 {
  font-size: 20px;
}

.trip-calculator {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px;
}

.trip-calculator__head {
  display: flex;
  align-items: center;
  gap: var(--rc-space-3);
}

.trip-calculator__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--rc-radius-lg);
  color: var(--rc-color-primary-action);
  background: var(--rc-color-primary-soft);
}

.trip-calculator__form {
  margin-top: var(--rc-space-5);
  display: grid;
  gap: var(--rc-space-4);
}

.trip-calculator__field {
  display: grid;
  gap: var(--rc-space-2);
  color: var(--rc-color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.trip-calculator__field > span:first-child {
  margin-left: 4px;
}

.trip-currency-selector {
  position: relative;
}

.trip-currency-selector > summary {
  list-style: none;
}

.trip-currency-selector > summary::-webkit-details-marker {
  display: none;
}

.trip-currency-selector__summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rc-space-3);
  border: 1px solid var(--rc-color-border-strong);
  border-radius: var(--rc-radius-lg);
  padding: 0 var(--rc-space-4);
  color: var(--rc-color-text);
  background: var(--rc-color-surface-low);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.trip-currency-selector[open] .trip-currency-selector__summary {
  border-color: var(--rc-color-primary-action);
  background: var(--rc-color-surface-lowest);
  box-shadow: var(--rc-focus-ring);
}

.trip-currency-selector__selected {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: var(--rc-space-3);
}

.trip-currency-selector__selected > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trip-currency-selector__flag {
  width: 24px;
  height: 18px;
  display: block;
  border-radius: 3px;
  border: 1px solid var(--rc-color-border);
  object-fit: cover;
  flex: 0 0 auto;
}

.trip-currency-selector__chevron {
  font-size: 20px;
  color: var(--rc-color-text-muted);
  transition: transform 0.16s ease;
}

.trip-currency-selector[open] .trip-currency-selector__chevron {
  transform: rotate(180deg);
}

.trip-currency-selector__menu {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  margin: var(--rc-space-2) 0 0;
  padding: var(--rc-space-2);
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-lg);
  background: var(--rc-color-surface-lowest);
  box-shadow: 0 12px 28px rgba(8, 20, 48, 0.14);
  list-style: none;
}

.trip-currency-selector__menu li + li {
  margin-top: 2px;
}

.trip-currency-selector__option {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: var(--rc-space-3);
  padding: 0 var(--rc-space-3);
  border: 0;
  border-radius: var(--rc-radius-md);
  color: var(--rc-color-text);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
}

.trip-currency-selector__option:hover {
  background: var(--rc-color-secondary-soft);
}

.trip-currency-selector__option--active {
  color: var(--rc-color-primary-action);
  background: var(--rc-color-secondary-soft);
}

.trip-currency-selector__option:focus-visible,
.trip-currency-selector__summary:focus-visible {
  outline: none;
  box-shadow: var(--rc-focus-ring);
}

.trip-calculator__input-wrap {
  position: relative;
  display: block;
}

.trip-calculator input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--rc-color-border-strong);
  border-radius: var(--rc-radius-lg);
  padding: 0 44px 0 var(--rc-space-4);
  color: var(--rc-color-text);
  background: var(--rc-color-surface-low);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.trip-calculator input:focus {
  outline: none;
  border-color: var(--rc-color-primary-action);
  background: var(--rc-color-surface-lowest);
  box-shadow: var(--rc-focus-ring);
}

.trip-calculator input[aria-invalid="true"] {
  border-color: var(--rc-color-error);
  box-shadow: 0 0 0 3px rgba(186, 26, 26, 0.14);
}

.trip-calculator__input-wrap > span {
  position: absolute;
  top: 50%;
  right: var(--rc-space-4);
  color: var(--rc-color-text-muted);
  font-weight: 800;
  transform: translateY(-50%);
}

.trip-calculator__submit {
  min-height: 48px;
  min-width: 246px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rc-space-2);
  justify-self: start;
  padding: 0 var(--rc-space-6);
}

.trip-calculator__submit .material-symbols-outlined {
  font-size: 20px;
}

.trip-calculator__submit.is-loading .material-symbols-outlined {
  animation: rc-spin 0.8s linear infinite;
}

.trip-calculator__presets {
  margin-top: var(--rc-space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--rc-space-2);
}

.trip-calculator__presets button {
  min-height: 48px;
  border: 0;
  border-radius: var(--rc-radius-md);
  color: var(--rc-color-text);
  background: var(--rc-color-surface-high);
  padding: 0 var(--rc-space-2);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 0.12s ease, color 0.12s ease, transform 0.12s ease;
}

.trip-calculator__presets button:hover:not(:disabled) {
  color: var(--rc-color-primary);
  background: var(--rc-color-secondary-soft);
  transform: translateY(-1px);
}

.trip-calculator__presets button.is-active {
  color: var(--rc-color-on-primary);
  background: var(--rc-color-primary-action);
}

.trip-calculator__presets button:disabled,
.trip-calculator__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.calculator-feedback {
  margin-top: var(--rc-space-5);
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-lg);
  padding: var(--rc-space-4);
  color: var(--rc-color-text-muted);
  background: var(--rc-color-surface-low);
  font-size: 14px;
}

.calculator-feedback p {
  margin: 0;
}

.calculator-feedback p + p,
.calculator-hint {
  margin-top: var(--rc-space-2);
}

.calculator-feedback.is-error {
  border-color: rgba(186, 26, 26, 0.18);
  color: var(--rc-color-error);
  background: var(--rc-color-error-soft);
}

.validation-note {
  margin: 0;
  color: var(--rc-color-error);
  font-size: 14px;
  font-weight: 700;
}

.best-choice {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 24px;
  color: var(--rc-color-on-primary);
  background:
    radial-gradient(circle at 95% 100%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(0, 82, 255, 1), rgba(0, 62, 199, 1)),
    var(--rc-color-primary-action);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(0, 82, 255, 0.22);
}

.best-choice::after {
  content: "";
  position: absolute;
  right: -96px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
}

.best-choice > * {
  position: relative;
  z-index: 1;
}

.best-choice__content {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.best-choice__desktop {
  display: block;
}

.best-choice__mobile {
  display: none;
}

.best-choice-slot {
  min-width: 0;
}

.best-choice__badge {
  padding: var(--rc-space-2) var(--rc-space-4);
  color: var(--rc-color-on-primary);
  background: rgba(255, 255, 255, 0.18);
}

.best-choice__main {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.best-choice__currency-mark {
  width: 84px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--rc-radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 800;
}

.best-choice__currency-flag {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.best-choice__currency-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--rc-color-on-primary);
  background: rgba(255, 255, 255, 0.14);
}

.best-choice__copy {
  min-width: 0;
}

.best-choice h2,
.best-choice h3 {
  color: var(--rc-color-on-primary);
}

.best-choice h2 {
  font-size: 34px;
}

.best-choice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.best-choice .best-choice__route {
  margin-top: var(--rc-space-2);
  font-weight: 700;
}

.best-choice__metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.best-choice__metric + .best-choice__metric {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 20px;
}

.best-choice__metrics p {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

#hero-best-result-label {
  margin-bottom: 0;
}

.best-choice__metric strong {
  display: block;
  color: var(--rc-color-on-primary);
  font-family: var(--rc-font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
}

.best-choice__metric--gain strong {
  color: var(--rc-color-tertiary-soft);
}

.best-choice__decision {
  max-width: 720px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rc-radius-lg);
  padding: 6px 10px 10px;
  background: rgba(255, 255, 255, 0.1);
}

.best-choice__decision h3 {
  margin: 5px 0 1px;
  font-family: var(--rc-font-heading);
  font-size: 18px;
  letter-spacing: 0;
}

.best-choice--empty,
.best-choice.empty-state {
  background: linear-gradient(135deg, var(--rc-color-inverse), #38485d);
}

.exchange-flow {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 16px;
}

.exchange-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(221, 225, 255, 0.2), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.exchange-flow > * {
  position: relative;
  z-index: 1;
}

.exchange-flow__head {
  max-width: 680px;
  margin: 0 auto 32px;
}

.exchange-flow h2,
.comparison-table-section h2 {
  font-size: 24px;
}

.exchange-flow__head p,
.comparison-table-section__head p,
.exchange-rates-card__head p,
.expert-tip p {
  margin: var(--rc-space-2) 0 0;
  color: var(--rc-color-text-muted);
}

.exchange-flow__steps {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr);
  align-items: start;
  gap: var(--rc-space-4);
}

.exchange-flow__step {
  align-self: stretch;
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: var(--rc-space-3);
  min-width: 0;
  min-height: 210px;
  border: 1px solid color-mix(in srgb, var(--rc-color-border) 72%, transparent);
  border-radius: var(--rc-radius-xl);
  padding: var(--rc-space-5);
  text-align: center;
  background: color-mix(in srgb, var(--rc-color-primary-soft) 72%, var(--rc-color-surface-lowest));
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.exchange-flow__step:hover {
  border-color: color-mix(in srgb, var(--rc-color-primary-action) 34%, var(--rc-color-border));
  box-shadow: var(--rc-shadow-card);
  transform: translateY(-2px);
}

.exchange-flow__step--success {
  border-color: color-mix(in srgb, var(--rc-color-tertiary) 35%, var(--rc-color-border));
}

.exchange-flow__step-index {
  position: absolute;
  top: var(--rc-space-4);
  left: var(--rc-space-4);
  color: var(--rc-color-text-soft);
  font-family: var(--rc-font-heading);
  font-size: 12px;
  font-weight: 800;
}

.exchange-flow__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--rc-radius-lg);
  border: 1px solid var(--rc-color-border);
  color: var(--rc-color-primary-action);
  background: var(--rc-color-surface);
}

.exchange-flow__icon--success {
  color: var(--rc-color-tertiary);
  background: var(--rc-color-tertiary-soft);
}

.exchange-flow__step h3 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--rc-color-text);
  font-family: var(--rc-font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.exchange-flow__step p {
  width: 100%;
  max-width: 260px;
  margin: 0;
  color: var(--rc-color-text-muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.exchange-flow__step .exchange-flow__route-line {
  width: 100%;
  max-width: none;
  display: block;
  white-space: normal;
}

#exchange-flow-best-route {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  vertical-align: bottom;
}

.exchange-flow__arrow {
  margin-top: 92px;
  color: var(--rc-color-primary-muted);
}

.comparison-table-section {
  overflow: hidden;
  padding: 0;
  padding-bottom: 12px;
}

.comparison-table-section__head {
  padding: var(--rc-space-6);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--rc-space-5);
  border-bottom: 1px solid var(--rc-color-border);
}

.comparison-table-section__amount {
  flex: 0 0 auto;
  border-radius: var(--rc-radius-full);
  padding: var(--rc-space-2) var(--rc-space-4);
  color: var(--rc-color-primary);
  background: var(--rc-color-primary-soft);
  font-size: 14px;
  font-weight: 800;
}

.comparison-table-section__empty {
  margin: var(--rc-space-6);
  border: 1px dashed var(--rc-color-border-strong);
  border-radius: var(--rc-radius-lg);
  padding: var(--rc-space-5);
  background: var(--rc-color-surface-low);
}

.comparison-table-section__scroll {
  overflow-x: auto;
}

.comparison-table {
  min-width: 860px;
  padding: var(--rc-space-5) var(--rc-space-6) var(--rc-space-6);
}

.comparison-table__head-row,
.option-top {
  display: grid;
  align-items: center;
  gap: var(--rc-space-4);
  grid-template-columns: 64px minmax(180px, 1fr) minmax(280px, 1.4fr) minmax(220px, 0.9fr);
}

.comparison-table__head-row {
  padding: 0 var(--rc-space-4) var(--rc-space-3);
  color: var(--rc-color-text-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-table__head-row span:last-child {
  text-align: right;
}

.comparison-table__body,
.ranking-list {
  display: grid;
  gap: var(--rc-space-3);
}

.option-card {
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-lg);
  padding: var(--rc-space-4);
  background: var(--rc-color-surface-lowest);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.option-card:hover {
  border-color: color-mix(in srgb, var(--rc-color-primary-action) 30%, var(--rc-color-border));
  box-shadow: var(--rc-shadow-card);
  transform: translateY(-1px);
}

.option-card.best {
  border-color: color-mix(in srgb, var(--rc-color-primary-action) 42%, var(--rc-color-border));
  background:
    linear-gradient(90deg, rgba(0, 82, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--rc-color-surface-lowest);
  box-shadow: inset 4px 0 0 var(--rc-color-primary-action);
}

.rank-pill {
  width: 44px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--rc-radius-md);
  color: var(--rc-color-text-muted);
  background: var(--rc-color-surface-low);
  font-weight: 800;
}

.option-main {
  display: flex;
  align-items: center;
  gap: var(--rc-space-3);
}

.option-flag,
.exchange-rates-card__flag {
  width: 56px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--rc-radius-md);
  overflow: hidden;
  color: var(--rc-color-text);
  background: var(--rc-color-surface-low);
  box-shadow:
    inset 0 0 0 1px rgba(25, 28, 30, 0.08),
    0 8px 18px rgba(0, 82, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.option-flag__image,
.exchange-rates-card__flag-image {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.option-flag__fallback,
.exchange-rates-card__flag-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--rc-color-primary);
  background: var(--rc-color-primary-soft);
}

.option-code,
.option-path {
  color: var(--rc-color-primary);
  font-weight: 800;
}

.option-code {
  font-size: 13px;
  line-height: 1;
}

.option-name,
.option-meta,
.option-result-label {
  color: var(--rc-color-text-muted);
  font-size: 14px;
}

.option-name,
.option-meta {
  margin-top: var(--rc-space-1);
}

.option-side {
  display: grid;
  justify-items: end;
  text-align: right;
}

.option-result {
  color: var(--rc-color-primary);
  font-family: var(--rc-font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.option-result-label {
  margin-top: var(--rc-space-1);
}

.option-badges {
  margin-top: var(--rc-space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--rc-space-2);
}

.option-gap,
.mini-chip {
  display: inline-flex;
  align-items: center;
  border-radius: var(--rc-radius-full);
  padding: var(--rc-space-1) var(--rc-space-3);
  font-size: 12px;
  font-weight: 800;
}

.option-gap {
  color: var(--rc-color-text-muted);
  background: var(--rc-color-surface-low);
}

.option-gap.best {
  color: var(--rc-color-tertiary);
  background: var(--rc-color-tertiary-soft);
}

.mini-chip.warning {
  color: var(--rc-color-primary);
  background: var(--rc-color-primary-soft);
}

.comparison-table-section__note {
  margin: 0;
  padding: 0 var(--rc-space-6) var(--rc-space-6);
  color: var(--rc-color-text-muted);
}

.exchange-rates-card__head {
  display: flex;
  justify-content: space-between;
  gap: var(--rc-space-4);
  align-items: flex-start;
}

.exchange-rates-card__title {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: var(--rc-space-3);
  width: 100%;
}

.exchange-rates-card__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.exchange-rates-card__meta {
  width: 100%;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--rc-space-4);
}

.exchange-rates-card__title > .material-symbols-outlined {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--rc-radius-lg);
  color: var(--rc-color-primary-action);
  background: var(--rc-color-primary-soft);
  font-size: 22px;
}

.exchange-rates-card__copy small {
  display: block;
  margin-top: 0;
  color: var(--rc-color-text-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.exchange-rates-card__timestamp {
  margin: 0;
  color: var(--rc-color-text-soft);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}

.exchange-rates-card__list {
  margin-top: 12px;
  display: grid;
  gap: var(--rc-space-2);
}

.exchange-rates-card__row {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--rc-space-4);
  border-radius: var(--rc-radius-lg);
  padding: var(--rc-space-4);
  background: color-mix(in srgb, var(--rc-color-surface-low) 72%, var(--rc-color-surface-lowest));
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.exchange-rates-card__row:hover {
  background: var(--rc-color-surface-lowest);
  box-shadow: var(--rc-shadow-card);
  transform: translateY(-1px);
}

.exchange-rates-card__currency {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--rc-space-3);
}

.exchange-rates-card__currency strong,
.exchange-rates-card__currency small,
.exchange-rates-card__value strong,
.exchange-rates-card__value span {
  display: block;
}

.exchange-rates-card__currency strong {
  color: var(--rc-color-text);
  font-size: 14px;
  line-height: 1.25;
}

.exchange-rates-card__currency small {
  margin-top: var(--rc-space-1);
  color: var(--rc-color-text-muted);
  font-size: 12px;
  line-height: 1;
}

.exchange-rates-card__code {
  display: block;
  margin-bottom: var(--rc-space-1);
  color: var(--rc-color-primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.exchange-rates-card__value {
  text-align: right;
}

.exchange-rates-card__value strong {
  color: var(--rc-color-primary);
  font-family: var(--rc-font-heading);
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.exchange-rates-card__value span {
  margin-top: var(--rc-space-1);
  color: var(--rc-color-text-soft);
  font-size: 11px;
  font-weight: 700;
}

.exchange-rates-card__empty {
  margin: var(--rc-space-5) 0 0;
  border: 1px dashed var(--rc-color-border-strong);
  border-radius: var(--rc-radius-lg);
  padding: var(--rc-space-5);
  color: var(--rc-color-text-muted);
  background: var(--rc-color-surface-low);
}

.exchange-rates-card p.exchange-rates-card__disclaimer {
  margin: 4px 0 0;
  color: #8a94a6;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 400;
}

.rc-muted-note {
  margin: 4px 0 0;
  color: #8a94a6;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 400;
}

.best-choice p.rc-muted-note {
  margin-top: 4px;
  margin-right: 8px;
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 400;
}

.comparison-table-section p.rc-muted-note {
  margin: 4px 0 0;
  margin-left: var(--rc-space-6);
  margin-right: var(--rc-space-6);
  padding-left: 8px;
  color: #8a94a6;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 400;
}

.comparison-table-section p.rc-muted-note:first-of-type {
  margin-top: 4px;
}

.comparison-table-section__scroll + p.rc-muted-note,
.comparison-table-section__scroll + p#unavailable-note + p.rc-muted-note {
  margin-top: calc(4px - var(--rc-space-6));
}

.expert-tip {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 82, 255, 0.12), transparent 30%),
    var(--rc-color-surface-high);
}

.expert-tip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.expert-tip > * {
  position: relative;
  z-index: 1;
}

.expert-tip__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--rc-radius-lg);
  color: var(--rc-color-primary-action);
  background: var(--rc-color-primary-soft);
}

.expert-tip__icon .material-symbols-outlined {
  color: var(--rc-color-primary-action);
  font-size: 28px;
}

.expert-tip__body {
  margin-top: 0;
}

.expert-tip__head {
  display: flex;
  align-items: center;
  gap: var(--rc-space-3);
}

.expert-tip h2 {
  margin: 0;
  font-size: 20px;
}

.expert-tip__list {
  margin-top: var(--rc-space-4);
  display: flex;
  flex-direction: column;
}

.expert-tip__item + .expert-tip__item {
  border-top: 1px solid var(--rc-color-border);
  margin-top: 12px;
  padding-top: 12px;
}

.expert-tip__item-title {
  margin: 0;
  color: var(--rc-color-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.expert-tip__item-text {
  margin: var(--rc-space-1) 0 0;
  max-width: 560px;
  color: var(--rc-color-text-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid var(--rc-color-border);
  background: color-mix(in srgb, var(--rc-color-surface) 88%, var(--rc-color-surface-lowest));
}

.site-footer__grid {
  width: min(var(--rc-container), calc(100% - (var(--rc-gutter) * 2)));
  margin: 0 auto;
  padding: var(--rc-space-7) 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--rc-space-7);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--rc-space-2);
}

.site-footer__logo-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: var(--rc-radius-md);
  color: var(--rc-color-on-primary);
  background: var(--rc-color-primary-action);
  font-size: 14px;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 var(--rc-space-4);
  color: var(--rc-color-text);
  font-family: var(--rc-font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-footer p,
.site-footer a {
  color: var(--rc-color-text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer__brand p {
  max-width: 260px;
  margin: var(--rc-space-4) 0 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--rc-space-2);
  list-style: none;
}

.site-footer a:hover {
  color: var(--rc-color-primary-action);
}

.site-footer__copyright p {
  max-width: 220px;
  margin: 0;
  color: var(--rc-color-text);
  font-weight: 700;
}

.site-footer {
  margin-top: var(--rc-space-7);
  border-top: 1px solid var(--rc-color-border);
  background: var(--rc-color-surface-lowest);
}

.site-footer__inner {
  width: min(var(--rc-container), calc(100% - (var(--rc-gutter) * 2)));
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: var(--rc-space-6);
}

.site-footer__brand {
  margin-bottom: var(--rc-space-5);
}

.site-footer__brand p {
  margin: 0;
}

.site-footer__brand > p:first-child,
.site-footer__brand > a:first-child {
  color: var(--rc-color-primary-action);
  font-family: var(--rc-font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.site-footer__logo {
  color: inherit;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.site-footer__logo:hover,
.site-footer__logo:focus,
.site-footer__logo:active,
.site-footer__logo:visited {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}

.site-footer__tagline {
  margin-top: var(--rc-space-3);
  color: var(--rc-color-text-muted);
  font-size: 14px;
}

.site-footer__grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--rc-space-5);
}

.site-footer__section {
  display: grid;
  gap: var(--rc-space-2);
}

.site-footer__title {
  margin: 0 0 var(--rc-space-2);
  color: var(--rc-color-text);
  font-family: var(--rc-font-heading);
  font-size: 14px;
  font-weight: 700;
}

.site-footer__link {
  color: var(--rc-color-text-soft);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer__link:hover {
  color: var(--rc-color-primary-action);
}

.site-footer__disclaimer {
  margin-top: 2px;
  color: var(--rc-color-text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer__copyright {
  margin: var(--rc-space-3) 0 0;
  color: var(--rc-color-text);
  font-size: 12px;
  font-weight: 700;
}

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

@media (max-width: 1180px) {
  .exchange-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exchange-flow__arrow {
    display: none;
  }
}

@media (max-width: 980px) {
  .top-app-bar__links {
    display: none;
  }

  .top-app-bar--menu-open .top-app-bar__links {
    position: absolute;
    top: calc(100% + var(--rc-space-2));
    right: 0;
    left: 0;
    display: grid;
    gap: var(--rc-space-2);
    border: 1px solid var(--rc-color-border);
    border-radius: var(--rc-radius-lg);
    padding: var(--rc-space-3);
    background: var(--rc-color-surface-lowest);
    box-shadow: var(--rc-shadow-raised);
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .top-app-bar--menu-open .top-app-bar__link {
    min-height: 44px;
    border-radius: var(--rc-radius-md);
    padding: 0 var(--rc-space-3);
  }

  .top-app-bar--menu-open .top-app-bar__link:hover,
  .top-app-bar--menu-open .top-app-bar__link--active {
    background: var(--rc-color-primary-soft);
  }

  .top-app-bar--menu-open .top-app-bar__dropdown-menu {
    position: static;
    max-height: min(42vh, 320px);
    max-height: min(42dvh, 320px);
    box-shadow: none;
    border: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 4px 0 0;
  }

  .top-app-bar__left {
    gap: var(--rc-space-4);
  }

  .top-app-bar__menu {
    display: grid;
  }

  .country-hero,
  .country-page-shell__bento,
  .country-page-shell__info-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .country-hero {
    padding: var(--rc-space-6);
  }

  .country-hero__media {
    justify-content: flex-start;
  }

  .country-hero__media-caption {
    right: auto;
    bottom: var(--rc-space-5);
    left: min(228px, 62%);
  }

  .exchange-flow__steps {
    grid-template-columns: 1fr;
  }

  .exchange-flow__step {
    min-height: 0;
  }

  .exchange-flow__arrow {
    display: none;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table__head-row {
    display: none;
  }

  .option-top {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .rank-pill {
    width: fit-content;
  }

  .option-main {
    min-width: 0;
  }

  .option-main > div:last-child {
    min-width: 0;
    display: grid;
  }

  .option-code {
    white-space: nowrap;
  }

  .option-name {
    margin-top: 0;
  }

  .option-top > :nth-child(n + 3) {
    grid-column: 1 / -1;
  }

  .option-side {
    justify-items: start;
    text-align: left;
  }

  .option-badges {
    justify-content: flex-start;
  }

  .exchange-rates-card__row {
    align-items: flex-start;
  }

  .site-footer__grid {
    gap: var(--rc-space-6);
  }
}

@media (max-width: 640px) {
  :root {
    --rc-gutter: 16px;
  }

  .best-choice__desktop {
    display: none;
  }

  .best-choice__mobile {
    display: block;
  }

  .best-choice__mobile .best-choice--mobile {
    padding: 16px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 90% 20%, rgba(27, 123, 255, 0.22), transparent 44%),
      radial-gradient(circle at 12% 82%, rgba(0, 92, 255, 0.28), transparent 48%),
      linear-gradient(124deg, #02112d 0%, #042f8f 100%);
    box-shadow: inset 0 0 0 1px rgba(20, 100, 255, 0.28);
  }

  .best-choice__mobile .best-choice--mobile::after {
    display: none;
  }

  .best-choice__mobile .best-choice__content--mobile {
    gap: 12px;
  }

  .best-choice__mobile .best-choice__badge--mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    border: 1px solid rgba(69, 134, 255, 0.7);
    border-radius: 999px;
    background: rgba(31, 91, 222, 0.52);
    font-size: 15px;
    font-weight: 700;
  }

  .best-choice__mobile .best-choice__mobile-head {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .best-choice__mobile .best-choice__currency-mark--mobile {
    width: 62px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
  }

  .best-choice__mobile .best-choice__mobile-head h2 {
    margin: 0;
    min-width: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .best-choice__mobile .best-choice__mobile-route {
    margin-top: 2px;
  }

  .best-choice__mobile .best-choice__mobile-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
  }

  .best-choice__mobile .best-choice__route {
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.96);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .best-choice__mobile .best-choice__metric--result-mobile {
    margin-top: 4px;
    padding: 16px;
    border: 1px solid rgba(38, 136, 255, 0.82);
    border-radius: 20px;
    background: linear-gradient(138deg, rgba(18, 73, 195, 0.58), rgba(7, 40, 128, 0.68));
  }

  .best-choice__mobile .best-choice__metric--result-mobile p {
    margin: 0;
    color: rgba(194, 213, 255, 0.96);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
    text-transform: none;
  }

  .best-choice__mobile .best-choice__metric--result-mobile strong {
    margin-top: 8px;
    display: block;
    font-size: clamp(32px, 8.5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .best-choice__mobile .best-choice__metric--gain-mobile {
    padding: 16px;
    border: 1px solid rgba(45, 211, 191, 0.36);
    border-radius: 20px;
    background: linear-gradient(132deg, rgba(8, 89, 89, 0.34), rgba(7, 49, 118, 0.54));
  }

  .best-choice__mobile .best-choice__metric--gain-mobile p {
    margin: 0;
    color: rgba(201, 223, 255, 0.96);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
    text-transform: none;
  }

  .best-choice__mobile .best-choice__metric--gain-mobile strong {
    margin-top: 6px;
    display: block;
    font-size: clamp(34px, 8vw, 52px);
    line-height: 1.08;
    color: #41f5b4;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
  }

  .best-choice__mobile .best-choice__decision--mobile {
    margin-top: 2px;
    max-width: none;
    padding: 16px;
    border-radius: 18px;
    border-color: rgba(33, 101, 230, 0.7);
    background: linear-gradient(145deg, rgba(12, 54, 165, 0.34), rgba(5, 30, 98, 0.48));
  }

  .best-choice__mobile .best-choice__decision--mobile h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
  }

  .best-choice__mobile .best-choice__decision--mobile p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(224, 236, 255, 0.95);
    overflow-wrap: anywhere;
    white-space: pre-line;
  }

  .best-choice__mobile .best-choice__decision-title {
    display: none;
  }

  .best-choice__mobile .rc-muted-note--mobile {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(35, 96, 219, 0.62);
    border-radius: 16px;
    background: rgba(7, 37, 121, 0.44);
    color: rgba(138, 175, 255, 0.96);
    font-size: 13px;
    line-height: 1.4;
    text-wrap: pretty;
  }

  .top-app-bar__nav {
    min-height: 64px;
    gap: var(--rc-space-3);
  }

  .top-app-bar__action {
    padding: 0 var(--rc-space-4);
  }

  .top-app-bar__brand {
    font-size: 18px;
  }

  .simple-page__card {
    padding: var(--rc-space-4);
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .simple-page__card ul,
  .simple-page__card ol {
    max-width: 100%;
    margin: var(--rc-space-3) 0;
    padding-inline-start: 1.25rem;
  }

  .simple-page__card p,
  .simple-page__card li,
  .simple-page__card h1,
  .simple-page__card h2 {
    overflow-wrap: anywhere;
  }

  .simple-page__card pre,
  .simple-page__card code {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .simple-page__card pre {
    overflow-x: auto;
  }

  .simple-page__card table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .country-page-shell {
    padding-top: var(--rc-space-4);
    gap: var(--rc-space-4);
  }

  .country-page-shell__bento > .best-choice,
  .country-page-shell__bento > .best-choice-slot {
    grid-row: 1;
  }

  .country-page-shell__bento > .trip-calculator {
    grid-row: 2;
  }

  .country-hero,
  .trip-calculator,
  .best-choice,
  .exchange-flow,
  .exchange-rates-card,
  .expert-tip {
    padding: var(--rc-space-5);
  }

  .country-hero h1 {
    font-size: 32px;
    max-width: none;
    line-height: 1.16;
    text-wrap: balance;
  }

  .country-hero h1 br {
    display: none;
  }

  .country-hero__title-origin {
    display: block;
  }

  .country-hero {
    padding: var(--rc-space-4);
  }

  .country-hero__copy {
    max-width: none;
  }

  .country-hero__copy > p {
    font-size: 15px;
    line-height: 1.5;
  }

  .country-hero__lede-line {
    display: inline;
  }

  .country-hero__lede-line + .country-hero__lede-line::before {
    content: " ";
  }

  .country-hero__lede-gap {
    display: block;
    height: 0;
    margin-top: 0.8em;
  }

  .country-hero__media {
    display: none;
  }

  .country-hero__flag {
    width: 100%;
    max-width: 320px;
  }

  .country-hero__media-caption {
    position: static;
    width: min(100%, 320px);
    margin-top: var(--rc-space-3);
  }

  .exchange-flow__step .exchange-flow__route-line {
    white-space: normal;
  }

  .exchange-flow {
    overflow: visible;
    text-align: left;
    padding-top: 8px;
  }

  .exchange-flow__head {
    max-width: none;
    margin: 0 0 22px;
    text-align: center;
  }

  .exchange-flow h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }

  .exchange-flow__head p {
    margin: 14px auto 0;
    max-width: 300px;
    font-size: 15px;
    line-height: 1.38;
    text-wrap: balance;
  }

  .exchange-flow__steps {
    gap: 10px;
  }

  .exchange-flow__step {
    grid-template-columns: 104px minmax(0, 1fr);
    align-content: center;
    align-items: center;
    justify-items: stretch;
    gap: 16px;
    min-height: 168px;
    border-radius: 30px;
    padding: 18px 18px 20px;
    text-align: left;
    background:
      radial-gradient(circle at 95% 92%, rgba(69, 123, 255, 0.07) 0%, rgba(69, 123, 255, 0) 38%),
      linear-gradient(145deg, #f7f9ff 0%, #f2f6ff 100%);
    border-color: rgba(123, 149, 255, 0.26);
    box-shadow: 0 12px 30px rgba(55, 78, 140, 0.08);
  }

  .exchange-flow__step:hover {
    transform: none;
    border-color: rgba(123, 149, 255, 0.26);
    box-shadow: 0 12px 30px rgba(55, 78, 140, 0.08);
  }

  .exchange-flow__step-index {
    position: static;
    grid-column: 2;
    grid-row: 1;
    display: block;
    margin-bottom: 2px;
    color: #2e5bff;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.01em;
  }

  .exchange-flow__icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 100%;
    max-width: 104px;
    height: 104px;
    border-radius: 22px;
    border-color: rgba(214, 223, 255, 0.9);
    background: linear-gradient(165deg, #ffffff 0%, #f5f8ff 100%);
    box-shadow: 0 16px 28px rgba(87, 111, 182, 0.12);
  }

  .exchange-flow__icon .material-symbols-outlined {
    font-size: 46px;
    font-variation-settings: "wght" 300;
  }

  .exchange-flow__step h3 {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    overflow-wrap: normal;
  }

  .exchange-flow__step p {
    grid-column: 2;
    grid-row: 3;
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .exchange-flow__step .exchange-flow__route-line {
    font-size: 14px;
  }

  .exchange-flow__arrow {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: -8px auto -8px;
    border-radius: 999px;
    background: #ffffff;
    color: #2e5bff;
    box-shadow: 0 10px 22px rgba(68, 90, 154, 0.18);
    transform: rotate(90deg);
    font-size: 28px;
    line-height: 1;
    position: relative;
    z-index: 2;
  }

  .exchange-flow__arrow::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 2px;
    height: 10px;
    transform: translateX(-50%);
    background: #d5defd;
  }

  .exchange-flow__arrow::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 2px;
    height: 10px;
    transform: translateX(-50%);
    background: #d5defd;
  }

  .exchange-flow__step--success {
    border-color: rgba(102, 226, 194, 0.7);
    background:
      radial-gradient(circle at 92% 88%, rgba(79, 197, 160, 0.11) 0%, rgba(79, 197, 160, 0) 42%),
      linear-gradient(145deg, #f3fffb 0%, #ecfef8 100%);
    box-shadow: 0 12px 30px rgba(44, 136, 104, 0.12);
  }

  .exchange-flow__step--success .exchange-flow__step-index {
    color: #11a96d;
  }

  .exchange-flow__step--success .exchange-flow__icon {
    border-color: rgba(161, 236, 214, 0.95);
    background: linear-gradient(165deg, #dffbf1 0%, #cff8ea 100%);
    box-shadow: 0 16px 28px rgba(58, 155, 120, 0.18);
  }

  .exchange-flow__step--success .exchange-flow__icon--success {
    color: #0d925d;
    background: transparent;
  }

  .exchange-flow__steps .exchange-flow__arrow:last-of-type {
    color: #11a96d;
  }

  .best-choice__main,
  .comparison-table-section__head,
  .exchange-rates-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .best-choice__desktop .best-choice__main {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    grid-template-areas:
      "flag name"
      "route route";
    align-items: center;
    column-gap: var(--rc-space-2);
    row-gap: var(--rc-space-2);
    margin-top: var(--rc-space-3);
  }

  .best-choice__desktop .best-choice__currency-mark {
    grid-area: flag;
    width: 24px;
    border-radius: 2px;
    background: transparent;
    box-shadow: none;
  }

  .best-choice__desktop .best-choice__copy {
    display: contents;
  }

  .best-choice__desktop .best-choice h2 {
    grid-area: name;
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    white-space: nowrap;
  }

  .best-choice__desktop .best-choice .best-choice__route {
    grid-area: route;
    margin-top: 0;
  }

  .exchange-rates-card__title {
    width: 100%;
  }

  .exchange-rates-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--rc-space-2);
  }

  .exchange-rates-card__timestamp {
    text-align: right;
  }

  .exchange-rates-card__row {
    flex-direction: column;
    gap: var(--rc-space-3);
  }

  .exchange-rates-card__value {
    width: 100%;
    padding-top: var(--rc-space-3);
    border-top: 1px solid var(--rc-color-border);
    text-align: left;
  }

  .expert-tip__icon {
    width: 44px;
    height: 44px;
  }

  .best-choice__desktop .best-choice__metrics {
    grid-template-columns: 1fr;
    gap: var(--rc-space-4);
  }

  .best-choice__desktop .best-choice__metric + .best-choice__metric {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 0;
    padding-top: var(--rc-space-4);
  }

  .best-choice__desktop .best-choice__metric strong {
    font-size: 32px;
  }

  .trip-calculator__presets {
    display: none;
  }

  .trip-currency-selector__summary {
    min-height: 48px;
    font-size: 15px;
  }

  .trip-currency-selector__option {
    min-height: 42px;
    font-size: 14px;
  }

  .exchange-rates-card {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .exchange-rates-card__title {
    gap: 10px;
  }

  .exchange-rates-card .expert-tip__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex: 0 0 auto;
  }

  .exchange-rates-card .expert-tip__icon .material-symbols-outlined {
    font-size: 24px;
  }

  .exchange-rates-card h2 {
    font-size: clamp(22px, 5.8vw, 27px);
    line-height: 1.16;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .exchange-rates-card__copy small {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.35;
  }

  .exchange-rates-card__meta {
    margin-top: 8px;
    gap: 6px;
  }

  .exchange-rates-card__timestamp {
    display: inline-flex;
    align-items: center;
    text-align: left;
    white-space: nowrap;
    gap: 6px;
    line-height: 1.2;
  }

  .exchange-rates-card__timestamp::before {
    content: "schedule";
    font-family: "Material Symbols Outlined";
    color: var(--rc-color-primary-action);
    font-size: 16px;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
    line-height: 1;
    flex: 0 0 auto;
  }

  .exchange-rates-card__list {
    margin-top: 12px;
    gap: 8px;
  }

  .exchange-rates-card__row {
    min-height: 84px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid #e6eaf2;
    background: #fbfcff;
    box-shadow: 0 1px 0 rgba(31, 58, 131, 0.04);
  }

  .exchange-rates-card__currency {
    flex: 1 1 auto;
    min-width: 0;
    gap: 9px;
  }

  .exchange-rates-card__flag {
    width: 42px;
    height: 32px;
    border-radius: 8px;
    box-shadow:
      inset 0 0 0 1px rgba(25, 28, 30, 0.08),
      0 4px 10px rgba(0, 82, 255, 0.08);
  }

  .exchange-rates-card__code {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .exchange-rates-card__currency strong {
    font-size: 14px;
    line-height: 1.18;
  }

  .exchange-rates-card__value {
    width: auto;
    min-width: 0;
    border-top: 0;
    padding-top: 0;
    text-align: right;
  }

  .exchange-rates-card__value strong {
    font-size: 15px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .exchange-rates-card__value span {
    margin-top: 1px;
    font-size: 10px;
    font-weight: 600;
  }

  .exchange-rates-card p.exchange-rates-card__disclaimer {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  .comparison-table-section__head,
  .comparison-table-section__note {
    padding: var(--rc-space-5);
  }

  .comparison-table {
    padding: var(--rc-space-4);
  }

  .comparison-table-section p.rc-muted-note {
    margin-left: 16px;
    margin-right: 16px;
  }

  .comparison-table-section__notes {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    margin: 0 16px 0;
    display: grid;
    gap: 6px;
  }

  .comparison-table-section__notes > .rc-muted-note {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .comparison-table-section__amount {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trip-calculator__submit.is-loading .material-symbols-outlined {
    animation: none;
  }
}

/* =========================
   How It Works block
========================= */

.home-section__head {
  max-width: 720px;
}

.home-section__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: var(--rc-space-2);
  border-radius: var(--rc-radius-full);
  margin: 0 0 var(--rc-space-3);
  padding: var(--rc-space-2) var(--rc-space-3);
  color: var(--rc-color-primary-action);
  background: color-mix(in srgb, var(--rc-color-secondary-soft) 42%, transparent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.home-section__head > p:not(.home-section__eyebrow) {
  margin: var(--rc-space-3) 0 0;
  color: var(--rc-color-text-muted);
  font-size: 16px;
}

.home-device {
  color: var(--rc-color-text);
}

.home-device--laptop {
  position: relative;
  z-index: 1;
  width: 100%;
}

.home-device__frame {
  border: 1px solid color-mix(in srgb, var(--rc-color-border-strong) 72%, transparent);
  background:
    linear-gradient(145deg, #42494f, #161a1d 48%, #32383e),
    var(--rc-color-inverse);
  box-shadow: 0 24px 46px rgba(25, 28, 30, 0.16);
}

.home-device--laptop .home-device__frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 34px 0 0;
  background:
    linear-gradient(180deg, var(--rc-color-surface-lowest) 0 34px, var(--rc-color-surface-low) 34px 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 22px 44px rgba(25, 28, 30, 0.12);
}

.home-device--laptop .home-device__frame::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: var(--rc-radius-full);
  background: var(--rc-color-primary-muted);
  box-shadow:
    16px 0 0 var(--rc-color-secondary-soft),
    32px 0 0 var(--rc-color-surface-highest);
}

.home-device--laptop .home-device__frame::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--rc-color-border);
}

.home-device__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: var(--rc-color-surface-lowest);
  box-shadow: inset 0 0 0 1px rgba(25, 28, 30, 0.08);
}

.home-device--laptop .home-device__screen {
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: 0 0 16px 16px;
  box-shadow: none;
}

.home-device__screen-content {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.home-device--laptop .home-device__screen-content {
  display: flex;
}

.home-device__screen > img,
.home-device__screen-content > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-device__hinge {
  display: none;
}

.home-device__base {
  display: none;
}

.home-device__shadow {
  width: 86%;
  height: 24px;
  margin: -10px auto 0;
  border-radius: 50%;
  background: rgba(25, 28, 30, 0.1);
  filter: blur(16px);
}

.home-how {
  overflow: hidden;
  scroll-margin-top: calc(60px + var(--rc-space-3));
}

.home-how__summary--mobile,
.home-how__mobile-timeline {
  display: none;
}

.home-how__layout {
  margin-top: var(--rc-space-6);
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: var(--rc-space-6);
  align-items: start;
}

.home-how__steps {
  margin-top: var(--rc-space-6);
  display: grid;
  gap: var(--rc-space-3);
  align-content: start;
}

.home-how__step {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: var(--rc-space-3);
  border: 1px solid color-mix(in srgb, var(--rc-color-border) 74%, transparent);
  border-radius: var(--rc-radius-lg);
  padding: var(--rc-space-3) var(--rc-space-5) var(--rc-space-3) var(--rc-space-4);
  color: var(--rc-color-text-muted);
  background: color-mix(in srgb, var(--rc-color-surface-lowest) 86%, transparent);
  text-align: left;
  font-weight: 800;
  box-shadow: none;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.home-how__step::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 0 var(--rc-radius-full) var(--rc-radius-full) 0;
  background: transparent;
  transition: background 0.16s ease;
}

.home-how__step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--rc-radius-full);
  color: var(--rc-color-primary);
  background: var(--rc-color-primary-soft);
  font-family: var(--rc-font-heading);
  font-size: 13px;
}

.home-how__step:hover,
.home-how__step.is-active {
  border-color: color-mix(in srgb, var(--rc-color-primary-action) 34%, var(--rc-color-border));
  color: var(--rc-color-primary);
  background: color-mix(in srgb, var(--rc-color-primary-soft) 42%, var(--rc-color-surface-lowest));
  transform: translateY(-1px);
}

.home-how__step:hover {
  box-shadow: 0 8px 18px rgba(0, 82, 255, 0.06);
}

.home-how__step.is-active {
  box-shadow: 0 12px 24px rgba(0, 82, 255, 0.1);
}

.home-how__step.is-active::before {
  background: var(--rc-color-primary-action);
}

.home-how__step.is-active span {
  color: var(--rc-color-on-primary);
  background: var(--rc-color-primary-action);
  box-shadow: 0 8px 18px rgba(0, 82, 255, 0.16);
}

.home-how__step:focus-visible {
  outline: 2px solid var(--rc-color-primary-action);
  outline-offset: 4px;
}

.home-how__preview {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: start;
  overflow: hidden;
  border: 1px solid var(--rc-color-border);
  border-radius: var(--rc-radius-xl);
  padding: var(--rc-space-6);
  background:
    radial-gradient(circle at 80% 10%, rgba(111, 251, 190, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(221, 225, 255, 0.28), rgba(255, 255, 255, 0)),
    var(--rc-color-surface-low);
}

.home-device--how {
  width: min(100%, 760px);
  margin: 0 auto;
}

.home-device--how .home-device__frame {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 24px 48px rgba(25, 28, 30, 0.13);
}

.home-how__screen {
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.home-how__screen.is-active {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent {
  position: fixed;
  right: var(--rc-space-4);
  bottom: var(--rc-space-4);
  z-index: 70;
  width: min(340px, calc(100vw - (var(--rc-space-4) * 2)));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--rc-space-3);
  padding: var(--rc-space-3) var(--rc-space-4);
  border: 1px solid color-mix(in srgb, var(--rc-color-border) 86%, transparent);
  border-radius: var(--rc-radius-lg);
  background: color-mix(in srgb, var(--rc-color-surface-lowest) 96%, transparent);
  box-shadow: var(--rc-shadow-card);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__text {
  margin: 0;
  color: var(--rc-color-text-muted);
  font-size: 13px;
  line-height: 1.35;
}

.cookie-consent__text-mobile,
.cookie-consent__label-mobile {
  display: none;
}

.cookie-consent__accept {
  min-height: 36px;
  border: 0;
  border-radius: var(--rc-radius-md);
  padding: 0 var(--rc-space-3);
  color: var(--rc-color-on-primary);
  background: var(--rc-color-primary-action);
  font-family: var(--rc-font-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 82, 255, 0.16);
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.cookie-consent__accept:hover {
  background: var(--rc-color-primary);
  box-shadow: 0 10px 22px rgba(0, 82, 255, 0.2);
  transform: translateY(-1px);
}

.cookie-consent__accept:focus-visible {
  outline: 2px solid var(--rc-color-primary-action);
  outline-offset: 3px;
}

.home-how__screen h3 {
  margin: 0;
  color: var(--rc-color-text);
  font-family: var(--rc-font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-how__screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-how__screen picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .home-how__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cookie-consent {
    right: var(--rc-space-2);
    left: var(--rc-space-2);
    bottom: var(--rc-space-2);
    width: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px 10px;
  }

  .cookie-consent__text {
    font-size: 11px;
    line-height: 1.25;
  }

  .cookie-consent__accept {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .cookie-consent__text-desktop,
  .cookie-consent__label-desktop {
    display: none;
  }

  .cookie-consent__text-mobile,
  .cookie-consent__label-mobile {
    display: inline;
  }

  .home-how {
    padding: var(--rc-space-5) var(--rc-space-4);
    border-radius: var(--rc-radius-xl);
  }

  .home-how .home-section__head {
    max-width: none;
  }

  .home-how h2 {
    font-size: 24px;
    line-height: 1.16;
  }

  .home-how__summary--desktop,
  .home-how__layout {
    display: none;
  }

  .home-how__summary--mobile {
    display: block;
  }

  .home-how__mobile-timeline {
    margin: var(--rc-space-5) 0 0;
    padding: 0;
    display: grid;
    gap: var(--rc-space-3);
    list-style: none;
  }

  .home-how__mobile-step {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: var(--rc-space-3);
  }

  .home-how__mobile-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 42px;
    bottom: calc(-1 * var(--rc-space-3));
    width: 1px;
    background: color-mix(in srgb, var(--rc-color-border) 82%, transparent);
  }

  .home-how__mobile-marker {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: var(--rc-radius-full);
    color: var(--rc-color-on-primary);
    background: var(--rc-color-primary-action);
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.14);
    font-family: var(--rc-font-heading);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
  }

  .home-how__mobile-card {
    min-width: 0;
    padding: 14px 14px 15px;
    border: 1px solid color-mix(in srgb, var(--rc-color-border) 86%, transparent);
    border-radius: var(--rc-radius-lg);
    background: var(--rc-color-surface-lowest);
    box-shadow: 0 10px 28px rgba(25, 28, 30, 0.07);
  }

  .home-how__mobile-title {
    margin: 0 0 5px;
    color: var(--rc-color-text);
    font-family: var(--rc-font-heading);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .home-how__mobile-text {
    margin: 0;
    color: var(--rc-color-text-muted);
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .home-how__preview {
    min-height: 360px;
  }

  .home-how__step {
    min-height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-how__step,
  .home-how__screen {
    transition: none;
  }
}
