/* =========================================================
   Nomand Travel eSIM — Landing CSS
   Палітра у CSS-змінних → міняти в одному місці.
   ========================================================= */

:root {
  /* Brand palette (схоже на esimnomandbot.com — white + slate + travel green + Telegram blue) */
  --c-bg:        #FFFFFF;
  --c-bg-soft:   #F5F8FB;
  --c-surface:   #FFFFFF;
  --c-text:      #0E1525;
  --c-text-mute: #5B6478;
  --c-border:    #E5E9F0;

  --c-primary:        #00B86B;   /* travel green CTA */
  --c-primary-hover:  #00A05E;
  --c-primary-soft:   #E6F7EF;

  --c-accent:         #229ED9;   /* Telegram blue */
  --c-accent-hover:   #1E8FC5;
  --c-accent-soft:    #E3F1FB;

  --grad: linear-gradient(135deg, #00B86B 0%, #229ED9 100%);
  --grad-soft: linear-gradient(135deg, #E6F7EF 0%, #E3F1FB 100%);

  /* Layout */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(14, 21, 37, .04), 0 1px 3px rgba(14, 21, 37, .03);
  --shadow:    0 8px 24px -8px rgba(14, 21, 37, .12), 0 2px 6px rgba(14, 21, 37, .04);
  --shadow-lg: 0 24px 60px -20px rgba(14, 21, 37, .25);

  --container: 1140px;
  --header-h:  64px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; color: var(--c-text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm  { padding: 9px 16px; font-size: 0.875rem; }
.btn-lg  { padding: 15px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(0, 184, 107, .55);
}
.btn-primary:hover {
  box-shadow: 0 12px 28px -10px rgba(0, 184, 107, .65);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-ghost:hover { background: var(--c-bg-soft); border-color: #cfd6e2; }
.btn-light {
  background: #fff;
  color: var(--c-text);
}
.btn-light:hover { background: #f4f6fa; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: 0 1px 0 rgba(14,21,37,.02);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--c-text); }
.logo-text { font-size: 1.1rem; letter-spacing: -0.02em; }
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--c-text-mute); font-weight: 500; font-size: 0.95rem;
  transition: color .15s ease;
}
.nav a:hover { color: var(--c-text); }

.header-right { display: flex; align-items: center; gap: 14px; }
.lang-switcher {
  display: inline-flex;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switcher a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 11px;
  color: var(--c-text-mute);
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.lang-switcher a:hover { color: var(--c-text); }
.lang-switcher .lang-active {
  background: var(--c-surface);
  color: var(--c-text);
  box-shadow: 0 1px 3px rgba(14, 21, 37, .08);
}

@media (max-width: 760px) {
  .nav { display: none; }
  .lang-switcher { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 24px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(34,158,217,.10), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(0,184,107,.10), transparent 60%),
    var(--c-bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-surface);
  color: var(--c-text-mute);
  border: 1px solid var(--c-border);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0,184,107,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 6px rgba(0,184,107,0); }
}
.lead {
  margin-top: 20px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--c-text-mute);
  max-width: 540px;
}
.hero-cta {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-meta {
  margin: 36px 0 0;
  padding: 0; list-style: none;
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-meta li {
  display: flex; flex-direction: column;
  font-size: 0.85rem; color: var(--c-text-mute);
}
.hero-meta strong {
  font-size: 1.5rem; font-weight: 700; color: var(--c-text);
  letter-spacing: -0.02em;
}

/* Hero visual — phone mock */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 540px;
}
.phone {
  width: 290px; height: 580px;
  background: #0E1525;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.05) inset;
  position: relative;
  transform: rotate(-3deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.phone:hover { transform: rotate(0deg); }
.phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: #0E1525;
  border-radius: 999px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #F0F6FB 0%, #FFFFFF 100%);
  border-radius: 34px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 38px 16px 12px;
  border-bottom: 1px solid #E8EEF5;
  background: #FFFFFF;
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-accent);
  display: grid; place-items: center;
}
.chat-name { font-weight: 600; font-size: 0.85rem; }
.chat-status { font-size: 0.7rem; color: var(--c-primary); }
.chat-body {
  flex: 1; padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.35;
  animation: bubble-in .5s both;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bubble.in {
  background: #fff; border: 1px solid #E8EEF5;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble.out {
  background: var(--c-accent);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.bubble.tick { font-weight: 600; }
.bubble-actions {
  margin-top: 6px; display: flex; gap: 6px;
}
.chip {
  font-size: 0.7rem; padding: 3px 8px; border-radius: 999px;
  background: var(--c-bg-soft); color: var(--c-text); border: 1px solid var(--c-border);
}
.bubble.qr { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.qr-mock {
  width: 90px; height: 90px;
  background: #fff;
  border-radius: 8px;
  display: grid; place-items: center;
  padding: 8px;
  box-shadow: 0 0 0 1px var(--c-border);
}
.qr-grid {
  width: 100%; height: 100%;
  background:
    conic-gradient(from 0deg at 50% 50%, #0E1525 0deg 90deg, #fff 90deg 180deg, #0E1525 180deg 270deg, #fff 270deg 360deg);
  background-size: 14px 14px;
  background-image:
    linear-gradient(to right, #0E1525 0, #0E1525 2px, transparent 2px, transparent 6px),
    linear-gradient(to bottom, #0E1525 0, #0E1525 2px, transparent 2px, transparent 6px);
  background-size: 8px 8px;
  border-radius: 4px;
  position: relative;
}
.qr-grid::before, .qr-grid::after, .qr-mock::before {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border: 4px solid #0E1525;
  border-radius: 3px;
}
.qr-mock { position: relative; }
.qr-mock::before { top: 8px; left: 8px; }
.qr-grid::before { top: 0; right: 0; }
.qr-grid::after { bottom: 0; left: 0; }

/* Floating cards around phone */
.float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--c-border);
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
  animation: float 6s ease-in-out infinite;
}
.float span { font-size: 1.4rem; }
.float strong { display: block; font-weight: 700; letter-spacing: -0.01em; }
.float small { color: var(--c-text-mute); font-size: 0.72rem; }
.float-1 { top: 8%; left: -8%; animation-delay: 0s; }
.float-2 { top: 50%; right: -10%; animation-delay: -2s; }
.float-3 { bottom: 8%; left: -2%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Marquee */
.marquee {
  margin-top: 56px;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-soft);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-right: 36px;
}
.marquee-track span {
  font-size: 0.95rem; color: var(--c-text-mute); font-weight: 500;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 960px) {
  .hero { padding-top: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { min-height: auto; margin-top: 16px; }
  .phone { transform: rotate(0); width: 250px; height: 500px; }
  .float-1 { top: 4%; left: 0; }
  .float-2 { top: 45%; right: 0; }
  .float-3 { bottom: 4%; left: 5%; }
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 0;
}
.section-soft { background: var(--c-bg-soft); }
.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 680px;
}
.section-head h2 { margin-top: 8px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.prose {
  font-size: 1.05rem;
  color: var(--c-text-mute);
  max-width: 760px;
  margin: 0 auto;
}
.prose.center { text-align: center; }
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 48px; }
.cta-row .btn { align-self: center; }
.note { font-size: 0.85rem; color: var(--c-text-mute); }
.note.center { text-align: center; }

@media (max-width: 760px) {
  .section { padding: 64px 0; }
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--c-text-mute); font-size: 0.95rem; }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Where ---------- */
.where-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.where-copy h2 { margin: 8px 0 20px; }
.where-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.region {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 18px;
  border-radius: var(--radius);
  transition: transform .2s ease;
}
.region:hover { transform: translateY(-2px); }
.region h4 {
  font-size: 0.9rem; font-weight: 600; color: var(--c-text-mute);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em;
}
.region p { font-size: 1.4rem; letter-spacing: 4px; }
.region-global {
  background: var(--grad-soft);
  border-color: transparent;
}
.region-global p { font-size: 1rem; letter-spacing: 0; color: var(--c-text); font-weight: 600; }

@media (max-width: 960px) {
  .where-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.plan-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--c-surface), var(--c-surface)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}
.plan-tag {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.plan-head h3 { font-size: 1.4rem; font-weight: 700; }
.plan-badge {
  font-size: 0.85rem;
  color: var(--c-text-mute);
  background: var(--c-bg-soft);
  padding: 5px 12px;
  border-radius: 999px;
}
.plan-badge strong { color: var(--c-text); font-size: 1rem; }
.plan ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.plan li {
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
  color: var(--c-text-mute);
}
.plan li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--c-primary-soft);
  border-radius: 50%;
}
.plan li::after {
  content: "";
  position: absolute; left: 4px; top: 10px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
  transform: rotate(-45deg);
}

@media (max-width: 960px) {
  .plans { grid-template-columns: 1fr; }
}

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.benefit:hover {
  transform: translateY(-3px);
  border-color: var(--c-primary-soft);
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.benefit h3 { margin-bottom: 6px; }
.benefit p { color: var(--c-text-mute); font-size: 0.95rem; }

@media (max-width: 760px) {
  .benefits { grid-template-columns: 1fr; }
}

/* ---------- Compare table ---------- */
.compare-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 760px;
}
.compare thead th {
  text-align: left;
  padding: 18px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--c-text-mute);
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-border);
  white-space: nowrap;
}
.compare thead th.us {
  color: var(--c-primary);
  background: var(--c-primary-soft);
  position: relative;
}
.brand-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  margin-right: 6px;
  vertical-align: middle;
}
.compare tbody tr { border-bottom: 1px solid var(--c-border); }
.compare tbody tr:last-child { border-bottom: none; }
.compare tbody th[scope="row"] {
  text-align: left;
  padding: 16px;
  font-weight: 600;
  color: var(--c-text);
  font-size: 0.9rem;
  background: var(--c-bg-soft);
  width: 22%;
}
.compare td {
  padding: 16px;
  color: var(--c-text-mute);
  vertical-align: top;
}
.compare td.us {
  color: var(--c-text);
  background: rgba(0, 184, 107, .06);
  font-weight: 500;
}
.compare td.us strong { color: var(--c-primary); font-size: 1.1rem; }

.compare-note {
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--c-text-mute);
  border-top: 1px solid var(--c-border);
  background: var(--c-bg-soft);
}

/* ---------- Personas / Use cases ---------- */
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.persona {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.persona:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.persona-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--c-surface), var(--c-surface)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}
.persona-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.persona h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.persona-sub { color: var(--c-text-mute); font-size: 0.95rem; margin-bottom: 18px; }
.persona ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 8px;
  flex-grow: 1;
}
.persona li {
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--c-text-mute);
}
.persona li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--c-primary-soft); border-radius: 50%;
}
.persona li::after {
  content: ""; position: absolute; left: 3px; top: 10px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
  transform: rotate(-45deg);
}
.persona-cta {
  font-weight: 600;
  color: var(--c-primary);
  font-size: 0.95rem;
  transition: gap .15s;
}
.persona-cta:hover { text-decoration: underline; }

@media (max-width: 960px) {
  .personas { grid-template-columns: 1fr; }
}

/* ---------- Speed cards ---------- */
.speeds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.speed-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, border-color .2s;
}
.speed-card:hover { transform: translateY(-2px); border-color: var(--c-primary-soft); }
.speed-card .speed-flag { font-size: 1.8rem; line-height: 1; }
.speed-meta { display: flex; flex-direction: column; gap: 2px; }
.speed-meta strong { font-size: 1.05rem; font-weight: 700; }
.speed-meta span { font-size: 0.82rem; color: var(--c-text-mute); }
.speed-stats { display: flex; gap: 18px; }
.speed-stats > div { display: flex; flex-direction: column; }
.speed-stats strong {
  font-size: 1.5rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.speed-stats small { font-size: 0.74rem; color: var(--c-text-mute); }
.speed-bar {
  height: 6px;
  background: var(--c-bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.speed-fill {
  height: 100%;
  width: var(--w, 50%);
  background: var(--grad);
  border-radius: 999px;
}
.speed-summary {
  background: linear-gradient(135deg, var(--c-primary-soft), var(--c-accent-soft));
  border-color: transparent;
}
.speed-note { font-size: 0.88rem; color: var(--c-text); margin: 0; }

@media (max-width: 960px) { .speeds { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .speeds { grid-template-columns: 1fr; } }

/* ---------- Pay strip ---------- */
.pay-strip {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pay-strip-label {
  display: flex; align-items: center; gap: 14px;
}
.pay-strip-label .benefit-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-soft);
  font-size: 1.2rem;
}
.pay-strip-label strong { display: block; font-weight: 700; font-size: 1rem; }
.pay-strip-label span { font-size: 0.85rem; color: var(--c-text-mute); }

.pay-badges {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.pay-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-text);
  position: relative;
}
.pay-visa { background: #1A1F71; color: #fff; border-color: #1A1F71; font-style: italic; letter-spacing: 0.08em; }
.pay-mc { background: #fff; color: var(--c-text); padding-left: 36px; }
.pay-mc-dots {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center;
}
.pay-mc-dots i {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block;
}
.pay-mc-dots i:first-child { background: #EB001B; }
.pay-mc-dots i:last-child { background: #F79E1B; margin-left: -5px; mix-blend-mode: multiply; }
.pay-applepay { background: #000; color: #fff; border-color: #000; }
.pay-applepay::before {
  content: ""; display: inline-block; width: 10px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.665 18.84c-.67 1.046-1.36 1.97-2.292 1.98-.92.01-1.213-.62-2.26-.62-1.04 0-1.37.6-2.24.63-.9.04-1.59-1.13-2.27-2.17-1.39-2.13-2.45-6.02-1.02-8.66.71-1.31 1.97-2.13 3.35-2.16.88-.02 1.71.62 2.25.62.55 0 1.56-.77 2.62-.65.44.02 1.7.18 2.5 1.39-.06.04-1.5.93-1.48 2.78.01 2.2 1.83 2.93 1.86 2.95-.02.07-.29 1.07-.97 2.1zM15.31 5.31c.48-.6.81-1.42.72-2.24-.7.03-1.56.49-2.06 1.07-.45.52-.84 1.37-.73 2.16.78.06 1.59-.4 2.07-.99z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.665 18.84c-.67 1.046-1.36 1.97-2.292 1.98-.92.01-1.213-.62-2.26-.62-1.04 0-1.37.6-2.24.63-.9.04-1.59-1.13-2.27-2.17-1.39-2.13-2.45-6.02-1.02-8.66.71-1.31 1.97-2.13 3.35-2.16.88-.02 1.71.62 2.25.62.55 0 1.56-.77 2.62-.65.44.02 1.7.18 2.5 1.39-.06.04-1.5.93-1.48 2.78.01 2.2 1.83 2.93 1.86 2.95-.02.07-.29 1.07-.97 2.1zM15.31 5.31c.48-.6.81-1.42.72-2.24-.7.03-1.56.49-2.06 1.07-.45.52-.84 1.37-.73 2.16.78.06 1.59-.4 2.07-.99z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pay-usdt { background: #26A17B; color: #fff; border-color: #26A17B; }
.pay-btc  { background: #F7931A; color: #fff; border-color: #F7931A; }
.pay-usdc { background: #2775CA; color: #fff; border-color: #2775CA; }
.pay-coin { font-size: 1rem; }

@media (max-width: 760px) {
  .pay-strip { flex-direction: column; align-items: flex-start; }
}

/* ---------- Trust map ---------- */
.trust-stage {
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #FAFCFE 0%, #F2F6FB 100%);
  border: 1px solid var(--c-border);
  padding: 24px;
}
.trust-map {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
}
.trust-map .land path {
  fill: #E7EEF6;
  stroke: #FFFFFF;
  stroke-width: 0.5;
  vector-effect: non-scaling-stroke;
  transition: fill .25s ease;
}
.trust-map .land path:hover { fill: #D7E2EF; }

/* Active city dots */
.trust-map .dot-core {
  fill: var(--c-primary);
  filter: drop-shadow(0 0 1px rgba(0,184,107,.8));
}
.trust-map .dot-ring {
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: dot-ping 2.4s cubic-bezier(0.2, 0.7, 0.3, 1) infinite;
}
@keyframes dot-ping {
  0%   { r: 2.5; opacity: 0.85; stroke-width: 1.4; }
  80%  { r: 14;  opacity: 0;    stroke-width: 0.3; }
  100% { r: 14;  opacity: 0;    stroke-width: 0.3; }
}

.trust-card {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 28px;
  text-align: center;
  width: min(420px, calc(100% - 48px));
}
.trust-card-title {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1rem;
}
.trust-card-count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--c-text-mute);
  font-size: 1rem;
}
.trust-card-count strong {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.trust-card-sub {
  color: var(--c-text-mute);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.trust-card-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 5px 14px;
  border-radius: 999px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,184,107,.25);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 760px) {
  .trust-stage { padding: 12px; }
  .trust-card { position: static; transform: none; margin-top: 16px; width: 100%; }
}

/* ---------- Stories ---------- */
.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  margin: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.story:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.story-yellow { background: #FBE89C; color: #2A1E00; }
.story-dark   { background: #4A5560; color: #fff; }
.story-light  { background: #EDEFF2; color: var(--c-text); }

.story-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--av-bg, var(--c-bg-soft));
  color: var(--av-fg, var(--c-text));
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  flex-shrink: 0;
}
.avatar::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #1A1A1A;
  display: grid; place-items: center;
  z-index: 0;
}
.avatar { z-index: 1; }
.avatar::before {
  content: "∞";
  position: absolute;
  right: -10px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: #FBE89C;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 2;
}
.story-meta {
  display: flex; flex-direction: column;
  line-height: 1.25;
  margin-left: 24px;
}
.story-meta strong { font-size: 1.05rem; font-weight: 700; }
.story-meta span { font-size: 0.85rem; opacity: 0.75; }

.story-quote {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 0.8;
  height: 18px;
  margin-bottom: 8px;
  opacity: 0.9;
}
.story blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .stories { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .stories { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; }
details {
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
details:first-of-type { border-top: 1px solid var(--c-border); }
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 1.4rem; font-weight: 400;
  color: var(--c-text-mute);
  transition: transform .2s ease;
  width: 24px; text-align: center;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  margin-top: 10px;
  color: var(--c-text-mute);
  font-size: 0.97rem;
}

/* ---------- Final CTA ---------- */
.cta-final {
  background: var(--grad);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 200px at 20% 20%, rgba(255,255,255,.15), transparent),
    radial-gradient(600px 200px at 80% 80%, rgba(255,255,255,.1), transparent);
  pointer-events: none;
}
.cta-final-inner { position: relative; }
.cta-final h2 { color: #fff; margin-bottom: 12px; }
.cta-final p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1.05rem; }

/* ---------- Blog index ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.blog-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-cover {
  height: 180px;
  background: var(--grad);
  position: relative;
  display: grid; place-items: center;
  font-size: 3.4rem;
  color: rgba(255,255,255,0.9);
}
.blog-card-cover::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 50%);
}
.blog-card-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  gap: 10px; flex-grow: 1;
}
.blog-card-meta { font-size: 0.78rem; color: var(--c-text-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--c-text); }
.blog-card p { color: var(--c-text-mute); font-size: 0.92rem; }
.blog-card-cta { margin-top: auto; color: var(--c-primary); font-weight: 600; font-size: 0.9rem; }

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

/* ---------- Article (single post) ---------- */
.article-hero {
  padding: 64px 0 32px;
  background:
    radial-gradient(700px 380px at 10% 0%, rgba(0,184,107,.10), transparent 60%),
    radial-gradient(700px 380px at 90% 0%, rgba(34,158,217,.10), transparent 60%),
    var(--c-bg);
}
.article-hero .container { max-width: 780px; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--c-text-mute);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--c-primary); }
.article-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.article-meta {
  color: var(--c-text-mute);
  font-size: 0.9rem;
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center;
}
.article-meta::before { content: ""; }
.article-meta .dot { width: 4px; height: 4px; background: var(--c-text-mute); border-radius: 50%; opacity: 0.4; }

.article-body {
  padding: 32px 0 80px;
}
.article-body .container { max-width: 780px; }
.article-body p,
.article-body ul,
.article-body ol {
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--c-text); font-weight: 700; }

.article-cta-card {
  margin: 40px 0;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-primary-soft), var(--c-accent-soft));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.article-cta-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.article-cta-card p { font-size: 0.95rem; color: var(--c-text-mute); margin: 0; }

.article-related {
  border-top: 1px solid var(--c-border);
  padding-top: 32px;
  margin-top: 40px;
}
.article-related h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-mute);
  margin-bottom: 16px;
}
.article-related ul { list-style: none; padding: 0; margin: 0; }
.article-related li { margin-bottom: 10px; }
.article-related a { color: var(--c-text); font-weight: 600; }
.article-related a:hover { color: var(--c-primary); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 0 32px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.footer-nav a {
  color: var(--c-text-mute); font-size: 0.9rem;
  transition: color .15s ease;
}
.footer-nav a:hover { color: var(--c-text); }
.footer-meta { color: var(--c-text-mute); font-size: 0.85rem; }
