/* VibeSim — светлый воздушный travel-стиль */

:root {
  --bg: #f5f9ff;
  --surface: #ffffff;
  --surface-soft: #eef5ff;
  --line: #e2ecfa;
  --line-strong: #cddffa;

  --ink: #0e1b33;
  --ink-soft: #35496b;
  --muted: #6b7c9a;

  --azure: #2b7fff;
  --azure-dark: #1c63e0;
  --azure-wash: #e7f0ff;

  --coral: #ff6a45;
  --coral-dark: #f0522c;
  --sun: #ffc542;

  --sky-top: #dcefff;
  --sky-mid: #eaf4ff;

  --ok: #12b886;

  --shadow-sm: 0 2px 8px rgba(20, 60, 130, .06);
  --shadow: 0 12px 34px rgba(24, 66, 140, .10);
  --shadow-lg: 0 24px 60px rgba(24, 66, 140, .16);

  --radius: 18px;
  --radius-lg: 26px;
  --wrap: 1120px;
}

/* ночная тема — те же токены, тёмные значения */
:root[data-theme="dark"] {
  --bg: #0b1524;
  --surface: #121f34;
  --surface-soft: #16243c;
  --line: #22304a;
  --line-strong: #2f4266;

  --ink: #e8eef8;
  --ink-soft: #b6c3d8;
  --muted: #8496b3;

  --azure-wash: #16294a;
  --sky-top: #16243c;
  --sky-mid: #101d31;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .3);
  --shadow: 0 12px 34px rgba(0, 0, 0, .4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--azure-dark); }

main { max-width: var(--wrap); margin: 0 auto; padding: 0 20px 90px; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }

code {
  background: var(--surface-soft);
  padding: 2px 7px;
  border-radius: 7px;
  font-size: 0.9em;
  color: var(--azure-dark);
}

.mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .9em; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.mt { margin-top: 56px; }

/* ── header ───────────────────────────────────────────────────── */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
:root[data-theme="dark"] .hero .cloud { opacity: .18; }
.site-head .inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--ink);
}
.logo .logo-mark { width: 32px; height: 32px; border-radius: 9px; box-shadow: var(--shadow-sm); display: block; }
/* wordmark в цвет значка: азур→бирюза градиентом */
.logo .wordmark {
  background: linear-gradient(120deg, #2b7fff, #0ea5b7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo .wordmark .e { -webkit-text-fill-color: initial; color: #ffb43e; font-weight: 800; }

/* переключатель темы */
.theme-toggle {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; padding: 0;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink-soft); cursor: pointer; transition: background .15s, color .15s;
}
.theme-toggle:hover { background: var(--surface-soft); color: var(--ink); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ico-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .ico-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .ico-moon { display: block; }

/* переключатель языка (RU/EN) */
.site-head nav a.lang-toggle {
  min-width: 38px; height: 38px; padding: 0 10px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--ink-soft);
}
.site-head nav a.lang-toggle:hover { background: var(--surface-soft); color: var(--ink); }

.site-head nav { display: flex; align-items: center; gap: 8px; }
.site-head nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
}
.site-head nav a:hover { background: var(--surface-soft); color: var(--ink); }
.site-head nav a.nav-cta {
  background: var(--ink);
  color: #fff;
}
.site-head nav a.nav-cta:hover { background: #1d2f52; }

@media (max-width: 620px) {
  .site-head nav a.nav-link { display: none; }
}

/* ── hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 55%, var(--bg) 100%);
  border: 1px solid var(--line);
  padding: 70px 32px 80px;
  text-align: center;
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line-strong);
  color: var(--azure-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(32px, 5.4vw, 56px);
  font-weight: 800;
  margin: 0 0 18px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--azure), #7c4dff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 30px;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges svg { width: 17px; height: 17px; color: var(--ok); }

/* decorative sky */
.hero .clouds, .hero .flight { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero .flight svg { position: absolute; width: 100%; height: 100%; }
.plane {
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cloud {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  opacity: .7;
  filter: blur(1px);
}
.cloud::before, .cloud::after {
  content: ""; position: absolute; background: #fff; border-radius: 999px;
}
.c1 { width: 120px; height: 34px; top: 60px; left: 8%; }
.c1::before { width: 60px; height: 60px; top: -26px; left: 20px; }
.c1::after { width: 46px; height: 46px; top: -16px; left: 62px; }
.c2 { width: 90px; height: 26px; top: 120px; right: 10%; opacity: .55; }
.c2::before { width: 44px; height: 44px; top: -20px; left: 16px; }
.c3 { width: 70px; height: 20px; bottom: 90px; left: 18%; opacity: .5; }
.c3::before { width: 34px; height: 34px; top: -15px; left: 12px; }

@media (max-width: 640px) {
  .hero { padding: 52px 20px 60px; }
  .cloud { display: none; }
}

/* ── section headings ─────────────────────────────────────────── */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 34px; }
.section-head h2 { font-size: clamp(24px, 3.6vw, 34px); margin: 0 0 10px; }
.section-head p { color: var(--muted); margin: 0; }

.countries { margin-top: 72px; }
.countries .row-title {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 15px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
  margin: 0 0 16px;
}

/* ── country grid: postcard tiles ─────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}

.tile {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
  overflow: hidden;
}
.tile::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--azure), var(--sun));
  opacity: 0; transition: opacity .18s;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.tile:hover::after { opacity: 1; }
.tile .flag { display: block; margin-bottom: 12px; }
.tile img.flag {
  width: 44px; height: 33px; object-fit: cover;
  border-radius: 5px; box-shadow: 0 1px 3px rgba(20,60,130,.18);
}
.tile .flag-emoji { font-size: 34px; line-height: 1; box-shadow: none; }
.tile .name { font-weight: 700; font-size: 16px; }
.tile .from { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }
.tile .from b { color: var(--azure-dark); font-weight: 700; }

/* ── how it works ─────────────────────────────────────────────── */
.how { margin-top: 84px; }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 780px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .steps { grid-template-columns: 1fr; } }

.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.step-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--azure-wash);
  color: var(--azure);
  border-radius: 13px;
  margin-bottom: 16px;
}
.step-ico svg { width: 24px; height: 24px; }
.steps b { display: block; font-size: 16px; margin-bottom: 5px; }
.steps span { color: var(--muted); font-size: 14px; }
.steps .num { color: var(--azure); font-weight: 800; font-size: 13px; letter-spacing: .05em; }

/* ── features / trust ─────────────────────────────────────────── */
.features { margin-top: 84px; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 720px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.feat .fi {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; margin-bottom: 14px;
  background: #fff3ec; color: var(--coral);
}
.feat .fi svg { width: 23px; height: 23px; }
.feat h3 { font-size: 17px; margin: 0 0 6px; }
.feat p { color: var(--muted); margin: 0; font-size: 15px; }

/* ── faq ──────────────────────────────────────────────────────── */
.faq { margin-top: 84px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 16px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--azure); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { color: var(--ink-soft); margin: 0 0 16px; }

/* ── final CTA band ───────────────────────────────────────────── */
.cta-band {
  margin-top: 84px;
  background: linear-gradient(120deg, var(--azure), #5b8dff 60%, #7c4dff);
  border-radius: var(--radius-lg);
  padding: 54px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 4vw, 34px); margin: 0 0 12px; }
.cta-band p { color: rgba(255, 255, 255, .9); margin: 0 0 26px; }

/* ── footer ───────────────────────────────────────────────────── */
.site-foot {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.site-foot .inner {
  max-width: var(--wrap); margin: 0 auto; padding: 40px 20px;
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
}
.site-foot .brand { max-width: 340px; }
.site-foot .brand .logo { margin-bottom: 12px; }
.site-foot p { color: var(--muted); font-size: 14px; margin: 6px 0; }
.site-foot .links { display: flex; gap: 40px; flex-wrap: wrap; }
.site-foot .links h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin: 0 0 12px; }
.site-foot .links a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin: 8px 0; }
.site-foot .links a:hover { color: var(--azure-dark); }

/* ── buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--coral);
  color: #fff;
  border: 0;
  border-radius: 13px;
  padding: 13px 26px;
  font: inherit; font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 90, 60, .28);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 90, 60, .34); }
.btn svg { width: 18px; height: 18px; }
.btn-lg { width: 100%; padding: 16px 26px; font-size: 16px; }
.btn-azure { background: var(--azure); box-shadow: 0 8px 20px rgba(43, 127, 255, .28); }
.btn-azure:hover { background: var(--azure-dark); box-shadow: 0 12px 26px rgba(43, 127, 255, .34); }
.btn-ghost {
  background: #fff; color: var(--ink); border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--surface-soft); }
.btn-light { background: #fff; color: var(--azure-dark); box-shadow: var(--shadow); }
.btn-light:hover { background: #f2f7ff; }

/* ── breadcrumbs ──────────────────────────────────────────────── */
.crumbs { padding: 22px 0 6px; color: var(--muted); font-size: 14px; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--azure-dark); }
.crumbs span { margin: 0 7px; opacity: .6; }

/* ── country page ─────────────────────────────────────────────── */
/* photo hero: landmark image with the title overlaid on a bottom scrim */
.country-hero {
  position: relative;
  margin-top: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}
.country-hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.country-hero-cap {
  position: relative; z-index: 1;
  width: 100%;
  padding: 44px 32px 26px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8,20,40,.78) 78%);
  text-align: center;
}
.country-hero-cap h1 {
  font-size: clamp(24px, 3.6vw, 38px);
  color: #fff;
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 8px; flex-wrap: wrap; justify-content: center;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}
.country-hero-cap .lead { color: rgba(255,255,255,.92); margin: 6px auto 0; max-width: 560px; }
.photo-credit {
  position: absolute; z-index: 2; right: 10px; top: 10px;
  font-size: 11px; color: rgba(255,255,255,.82);
  background: rgba(8,20,40,.42); padding: 3px 8px; border-radius: 6px;
  text-decoration: none; backdrop-filter: blur(2px);
}
.photo-credit:hover { color: #fff; background: rgba(8,20,40,.66); }

.country-head {
  background: linear-gradient(180deg, var(--sky-top), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  margin-top: 8px;
  text-align: center;
}
.country-head h1 { font-size: clamp(26px, 4vw, 40px); display: inline-flex; align-items: center; gap: 16px; margin: 0 0 10px; flex-wrap: wrap; justify-content: center; }
img.flag-lg { width: 60px; height: 45px; object-fit: cover; border-radius: 6px; box-shadow: 0 2px 6px rgba(20,60,130,.2); }
.flag-lg.flag-emoji { font-size: 48px; line-height: 1; box-shadow: none; width: auto; height: auto; }
.country-head .lead { color: var(--ink-soft); margin: 0; max-width: 520px; margin: 10px auto 0; }

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

/* boarding-pass style plan card */
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
  overflow: hidden;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--azure); }
.plan.featured { border-color: var(--azure); box-shadow: var(--shadow); }
.plan .tag {
  position: absolute; top: 14px; right: -32px;
  background: var(--azure); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 4px 36px; transform: rotate(45deg);
}
.plan-vol { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; }
.plan-days { color: var(--muted); font-size: 14px; margin-top: 2px; }
.plan-price {
  font-size: 26px; font-weight: 800; color: var(--ink);
  margin: 18px 0 4px;
}
.plan-price small { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan-meta { list-style: none; padding: 0; margin: 14px 0 20px; color: var(--muted); font-size: 13px; }
.plan-meta li { padding: 3px 0; }
.plan-meta li b { color: var(--ok); }

.reassure {
  margin-top: 44px;
  background: var(--azure-wash);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.reassure h2 { font-size: 20px; margin: 0 0 10px; }
.reassure p { color: var(--ink-soft); margin: 8px 0; }
.empty { color: var(--muted); padding: 50px 0; text-align: center; }

/* ── cookie bar (non-blocking, bottom) ───────────────────────── */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  justify-content: space-between;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow);
}
.cookie-bar p { margin: 0; font-size: 14px; color: var(--ink-soft); flex: 1; min-width: 200px; }
.cookie-bar button {
  background: var(--azure); color: #fff; border: 0; border-radius: 10px;
  padding: 10px 22px; font: inherit; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.cookie-bar button:hover { background: var(--azure-dark); }
@media (max-width: 520px) { .cookie-bar button { width: 100%; } }

/* ── checkout ─────────────────────────────────────────────────── */
.checkout { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; margin-top: 12px; }
@media (max-width: 820px) { .checkout { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.checkout-form h1 { font-size: 28px; margin: 0 0 6px; }
.checkout-form .sub { color: var(--muted); margin: 0 0 26px; }

.field { display: block; margin-bottom: 24px; }
.field > span { display: block; font-weight: 700; margin-bottom: 8px; }
.field input {
  width: 100%; padding: 14px 15px;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px; color: var(--ink); font: inherit;
}
.field input:focus { outline: none; border-color: var(--azure); box-shadow: 0 0 0 3px var(--azure-wash); }
.field small { display: block; color: var(--muted); margin-top: 8px; font-size: 13px; }

.checks { display: grid; gap: 12px; margin-bottom: 26px; }
.check {
  display: flex; gap: 13px; padding: 15px;
  background: var(--surface-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px; cursor: pointer; font-size: 14px; line-height: 1.5;
  transition: border-color .15s, background .15s;
}
.check:hover { border-color: var(--line-strong); }
.check:has(input:checked) { border-color: var(--azure); background: var(--azure-wash); }
.check input { margin-top: 2px; flex-shrink: 0; width: 19px; height: 19px; accent-color: var(--azure); }

.checkout-summary { position: sticky; top: 88px; }
.checkout-summary h2 { font-size: 18px; margin: 0 0 16px; }

.sum-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.sum-row span { color: var(--muted); }
.sum-row b { color: var(--ink); }
.sum-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0 6px; font-size: 15px; font-weight: 700; color: var(--muted);
}
.sum-total b { color: var(--ink); font-size: 26px; }

.errors {
  background: #fff1ee; border: 1px solid #ffc4b5;
  border-radius: 12px; padding: 14px 16px; margin-bottom: 22px;
  color: var(--coral-dark); font-size: 14px;
}
.errors p { margin: 4px 0; }

/* ── order page ───────────────────────────────────────────────── */
.order { max-width: 760px; margin: 0 auto; }
.order-head { text-align: center; margin: 12px 0 8px; }
.order-head h1 { font-size: 28px; margin: 0 0 4px; }

.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 15px; border-radius: 999px; font-size: 13px; font-weight: 700;
  margin-bottom: 8px;
}
.status-pill.wait { background: #fff6e6; color: #b5760a; }
.status-pill.work { background: var(--azure-wash); color: var(--azure-dark); }
.status-pill.ready { background: #e6f9f1; color: var(--ok); }
.status-pill.fail { background: #fff1ee; color: var(--coral-dark); }

.card + .card { margin-top: 20px; }
.card h2 { font-size: 20px; margin: 0 0 12px; }

.qr-wrap { display: flex; gap: 26px; align-items: flex-start; }
@media (max-width: 640px) { .qr-wrap { flex-direction: column; align-items: center; text-align: center; } }
.qr {
  width: 210px; height: 210px; background: #fff; padding: 12px;
  border: 1px solid var(--line); border-radius: 16px; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.qr-side { flex: 1; min-width: 0; }

.how-install ol { padding-left: 20px; color: var(--ink-soft); }
.how-install li { margin-bottom: 10px; }
.how-install b { color: var(--ink); }

.fail-card { border-color: #ffc4b5; }
.dev-note {
  margin-top: 14px; padding: 11px 14px; background: var(--surface-soft);
  border-radius: 10px; color: var(--muted); font-size: 13px;
}
.pay-card .btn { margin-top: 6px; }
.keep-link { margin-top: 24px; color: var(--muted); font-size: 14px; text-align: center; }
