/* ============================================================
   VEYLO MOBILE — design system v1
   Signal coral on deep ink. Dark-first, premium, in motion.
   Display: Space Grotesk · Body: Inter
   ============================================================ */
:root {
  /* ===== Veylo premium light — warm cream + calm teal ===== */
  --ink:        #122B2E;   /* deep teal-charcoal (text + footer) */
  --ink-2:      #1B3A3E;
  --ink-3:      #265055;
  --teal:       #11A8A0;   /* primary accent — calm, trustworthy */
  --teal-deep:  #0C8A83;
  --teal-soft:  #E4F5F3;   /* tint backgrounds */
  --coral:      #11A8A0;   /* alias so legacy .btn-primary etc. become teal */
  --coral-hot:  #21C3B8;
  --coral-dark: #0C8A83;
  --glow:       #F2B705;   /* warm gold secondary, used sparingly */
  --cream:      #FBF8F2;   /* warm off-white — the premium base */
  --cream-2:    #F4EFE6;   /* slightly deeper cream for alt sections */
  --paper:      #FBF8F2;
  --soft:       #F4EFE6;
  --white:      #FFFFFF;
  --text:       #16302F;   /* warm near-black */
  --text-dim:   #5C6B6A;
  --text-inv:   #EAF3F2;
  --dim-inv:    #9DB4B2;
  --line:       #ECE5D8;   /* warm hairline */
  --grad:       linear-gradient(120deg, #11A8A0 0%, #21C3B8 55%, #5FD9CF 120%);
  --grad-warm:  linear-gradient(135deg, #FBF8F2 0%, #E4F5F3 100%);
  --radius:     20px;
  --shadow-sm:  0 2px 16px rgba(18,43,46,.05);
  --shadow-md:  0 16px 44px -18px rgba(18,43,46,.16);
  --shadow-lg:  0 40px 80px -30px rgba(18,43,46,.22);
  --disp: "Space Grotesk", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --green: var(--ink); --red: var(--teal); --marigold: var(--glow);
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: var(--paper); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; }
::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; border-radius: 4px; }

/* ---------- motion ---------- */
@keyframes drift   { 0% {transform: translate(0,0) scale(1);} 50% {transform: translate(40px,-30px) scale(1.15);} 100% {transform: translate(0,0) scale(1);} }
@keyframes drift2  { 0% {transform: translate(0,0) scale(1.1);} 50% {transform: translate(-50px,25px) scale(1);} 100% {transform: translate(0,0) scale(1.1);} }
@keyframes floaty  { 0%,100% {transform: rotate(-6deg) translateY(0);} 50% {transform: rotate(-6deg) translateY(-14px);} }
@keyframes rise    { from {opacity: 0; transform: translateY(26px);} to {opacity: 1; transform: translateY(0);} }
@keyframes marquee { from {transform: translateX(0);} to {transform: translateX(-50%);} }
@keyframes pulse   { 0%,100% {box-shadow: 0 0 0 0 rgba(255,77,54,.45);} 70% {box-shadow: 0 0 0 12px rgba(255,77,54,0);} }
@keyframes sweep   { from {left: -60%;} to {left: 130%;} }

.reveal { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
/* Only hide-before-reveal when JS is active, so content is never invisible without JS */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 30px; border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--disp); font-weight: 700; font-size: 1.55rem; letter-spacing: -.03em;
  text-decoration: none; display: inline-flex; align-items: baseline; color: var(--text);
}
.logo-dot { color: var(--coral); }
.logo-tag { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--dim-inv); margin-left: 10px; }
.site-head nav { display: flex; align-items: center; gap: 22px; font-size: .95rem; font-weight: 500; }
.site-head nav a { text-decoration: none; color: var(--text-dim); font-weight: 500; transition: color .15s; }
.site-head nav a:hover { color: var(--coral); }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-block; font-family: var(--disp); font-weight: 600;
  padding: 15px 30px; border-radius: 999px; text-decoration: none; border: 0;
  cursor: pointer; font-size: 1rem; line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 24px -8px rgba(255,77,54,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(255,77,54,.6); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
}
.btn-primary:hover::after { animation: sweep .7s ease; }
.btn-ghost { background: #fff; color: var(--text); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-block { display: block; width: 100%; text-align: center; }

.flash { background: var(--grad); color: #fff; padding: 12px 28px; font-weight: 600; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-warm); color: var(--text);
  padding: clamp(56px, 9vh, 104px) 28px clamp(64px, 11vh, 120px);
}
.hero::before { /* faint grid texture */
  content: ""; position: absolute; inset: 0; opacity: .25;
  background-image: linear-gradient(rgba(17,168,160,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(17,168,160,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; }
.orb-1 { width: 520px; height: 520px; background: #6FE0D6; top: -200px; right: -140px; opacity:.4; animation: drift 16s ease-in-out infinite; }
.orb-2 { width: 420px; height: 420px; background: #FFE08A; bottom: -220px; left: -160px; opacity: .35; animation: drift2 20s ease-in-out infinite; }
.hero-grid { position: relative; max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 {
  font-family: var(--disp); font-weight: 700; letter-spacing: -.035em;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.02;
  animation: rise .8s cubic-bezier(.2,.7,.2,1) both;
}
.hero h1 .grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { max-width: 520px; margin: 22px 0 32px; font-size: 1.18rem; color: var(--dim-inv); line-height: 1.6; animation: rise .8s .12s cubic-bezier(.2,.7,.2,1) both; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: rise .8s .22s cubic-bezier(.2,.7,.2,1) both; }
.hero-proof { margin-top: 30px; font-size: .9rem; color: var(--text-dim); animation: rise .8s .3s both; }
.hero-proof strong { color: var(--text); }

/* floating eSIM card */
.sim-wrap { display: flex; justify-content: center; animation: rise .9s .25s both; }
.sim-card {
  width: min(330px, 80%); aspect-ratio: 1.6; border-radius: 24px; position: relative;
  background: linear-gradient(135deg, #1A1E3C 0%, #10122A 60%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.08);
  animation: floaty 6s ease-in-out infinite; transform: rotate(-6deg);
  padding: 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.sim-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 24px; padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,77,54,.7), transparent 40%, transparent 65%, rgba(255,179,107,.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.sim-chip { width: 52px; height: 40px; border-radius: 8px; background: linear-gradient(135deg, var(--glow), var(--coral)); position: relative; }
.sim-chip::after { content: ""; position: absolute; inset: 7px; border: 1.5px solid rgba(12,14,30,.45); border-radius: 4px; }
.sim-brand { font-family: var(--disp); font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: -.03em; }
.sim-meta { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--dim-inv); }

/* ---------- marquee ---------- */
.marquee { background: var(--grad); color: #fff; overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 30s linear infinite; font-family: var(--disp); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; }

/* ---------- sections ---------- */
.section { padding: clamp(72px, 11vh, 128px) 28px; max-width: 1100px; margin: 0 auto; }
.section h2 { font-family: var(--disp); font-weight: 700; letter-spacing: -.03em; font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 12px; line-height: 1.1; }
.kicker { font-family: var(--disp); letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; color: var(--coral); font-weight: 600; margin-bottom: 12px; }
.section .lede { color: var(--text-dim); max-width: 640px; font-size: 1.12rem; line-height: 1.6; }

/* ---------- country picker ---------- */
.picker-label { font-family: var(--disp); font-weight: 600; font-size: 1.05rem; margin: 26px 0 14px; color: var(--text); }
.flags { display: flex; flex-wrap: wrap; gap: 10px; }
.flag-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--line);
  color: var(--text); border-radius: 999px; padding: 10px 17px;
  text-decoration: none; font-weight: 500; font-size: .9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s cubic-bezier(.2,.7,.2,1), border-color .18s ease, box-shadow .18s ease;
}
.flag-chip .fl { font-size: 1.15rem; }
.flag-chip:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow-md); }
.flag-chip.on { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 10px 24px -10px rgba(17,168,160,.5); }
.flags-light .flag-chip { background: #fff; border-color: var(--line); color: var(--text); }
.flags-light .flag-chip.on { background: var(--ink); border-color: var(--ink); color: #fff; animation: none; }

/* ---------- plan cards ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; margin-top: 38px; }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; display: flex; flex-direction: column; gap: 6px; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #D9DEE8; }
.plan.featured { background: #fff; border: 2px solid var(--coral); box-shadow: 0 24px 50px -24px rgba(255,77,54,.28); }
.plan.featured::before {
  content: "Most popular"; position: absolute; top: -13px; left: 26px;
  background: var(--grad); color: #fff; font-family: var(--disp); font-weight: 600;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.plan h3 { font-family: var(--disp); font-weight: 700; font-size: 1.25rem; letter-spacing: -.02em; }
.plan .price { font-family: var(--disp); font-weight: 700; font-size: 2.7rem; letter-spacing: -.03em; margin-top: 6px; }
.plan.featured .price { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan.featured h3, .plan.featured ul, .plan.featured li { color: var(--text); }
.plan .price small { font-size: .95rem; font-weight: 500; color: var(--text-dim); letter-spacing: 0; }
.plan.featured .price small { color: var(--text-dim); }
.plan ul { list-style: none; padding: 18px 0 22px; display: grid; gap: 10px; flex: 1; font-size: .96rem; }
.plan li { padding-left: 28px; position: relative; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad); mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.8 8.5l1.4-1.4 2.3 2.3 5.3-5.3 1.4 1.4z"/></svg>') center/contain no-repeat;
}
.bd-line { font-weight: 600; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 30px; margin-top: 38px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .25s ease; }
.step:hover { transform: translateY(-5px); }
.step .n {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad); color: #fff; font-family: var(--disp); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px;
}
.step h3 { font-family: var(--disp); font-weight: 700; font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: .95rem; }

/* ---------- feature band (dark) ---------- */
.band { background: var(--soft); color: var(--text); }
.band .section h2 { color: var(--text); }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 38px; }
.feat { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; box-shadow: var(--shadow-sm); transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease; }
.feat:hover { border-color: #D9DEE8; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat h3 { font-family: var(--disp); font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.feat p { color: var(--text-dim); font-size: .94rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad); color: #fff; text-align: center; }
.cta-band .section { padding: clamp(56px, 8vh, 88px) 28px; }
.cta-band h2 { color: #fff; }
.cta-band p { opacity: .9; margin: 10px auto 26px; max-width: 520px; }

/* ---------- forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; max-width: 460px; margin: 64px auto; box-shadow: var(--shadow-md); }
.form-card h1 { font-family: var(--disp); font-weight: 700; letter-spacing: -.02em; margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.field input {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; background: var(--paper); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus { border-color: var(--coral); outline: none; box-shadow: 0 0 0 4px rgba(255,77,54,.12); }
.muted { color: var(--text-dim); font-size: .9rem; }
.err { color: var(--coral); font-weight: 600; }

/* ---------- dashboard ---------- */
.dash { max-width: 920px; margin: 0 auto; padding: 56px 28px; }
.dash h1 { font-family: var(--disp); font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
.dash .number { font-family: var(--disp); font-weight: 600; font-size: 1.25rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin: 30px 0; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { box-shadow: var(--shadow-md); }
.card:hover { transform: translateY(-3px); }
.card h3 { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; font-weight: 600; }
.big { font-family: var(--disp); font-weight: 700; font-size: 1.7rem; letter-spacing: -.02em; }
.meter { height: 9px; background: var(--paper); border-radius: 99px; overflow: hidden; border: 1px solid var(--line); margin-top: 12px; }
.meter span { display: block; height: 100%; background: var(--grad); border-radius: 99px; transition: width .8s cubic-bezier(.2,.7,.2,1); }
.meter.warn span { background: var(--coral); }

/* ---------- activate / QR ---------- */
.qr-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; text-align: center; max-width: 500px; margin: 56px auto; box-shadow: 0 24px 50px -30px rgba(12,14,30,.25); }
.qr-wrap h1 { font-family: var(--disp); font-weight: 700; letter-spacing: -.02em; }
#qrcode { display: inline-block; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.lpa { font-family: monospace; background: var(--paper); padding: 9px 13px; border-radius: 10px; word-break: break-all; display: block; margin-top: 14px; font-size: .84rem; }

/* ---------- footer ---------- */

/* ---------- tables (admin) ---------- */
table.data { width: 100%; border-collapse: collapse; background: #fff; font-size: .92rem; border-radius: 14px; overflow: hidden; }
table.data th, table.data td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
table.data th { font-family: var(--disp); background: var(--ink); color: var(--text-inv); font-weight: 600; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .sim-wrap { order: -1; }
  .sim-card { width: min(280px, 86%); }
}
@media (max-width: 640px) {
  .site-head { padding: 14px 18px; }
  .site-head nav { gap: 14px; font-size: .88rem; }
  .logo-tag { display: none; }
  .section { padding: 52px 20px; }
}


.page-body { line-height: 1.7; }
.page-body h2 { font-family: var(--disp); font-size: 1.2rem; margin: 22px 0 8px; }
.page-body p { margin-bottom: 12px; }

/* ---- responsive nav ---- */
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-head nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: 8px 0; border-top: 1px solid var(--line); box-shadow: var(--shadow-md); }
  body.nav-open .site-head nav { display: flex; }
  .site-head nav a { padding: 13px 28px; width: 100%; }
}

/* ---- compatibility checker ---- */
.checker { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px; margin-top:24px; }
.checker label { display:block; font-weight:600; font-size:.9rem; margin-bottom:6px; }
.checker select { width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:12px; font:inherit; background:var(--paper); }
.checker select:focus { border-color:var(--coral); outline:none; box-shadow:0 0 0 4px rgba(255,77,54,.12); }
.checker-result { margin-top:18px; padding:18px; border-radius:14px; line-height:1.6; }
.checker-result.ok { background:#EDFAF2; border:1px solid #0B8A4B; }
.checker-result.no { background:#FFF0EE; border:1px solid var(--coral); }
.checker-result.maybe { background:#FFF6E5; border:1px solid #B7791F; }

/* ---- addons / top-ups ---- */
.addon-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:14px; margin-top:14px; }
.addon { background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:16px; text-align:center; display:flex; flex-direction:column; gap:8px; }
.addon strong { font-size:.95rem; }
.addon-price { font-family:var(--disp); font-weight:700; font-size:1.3rem; }

/* ============ HOMEPAGE v2 ============ */
/* hero badge */
.hero-badge { display:inline-block; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); color:var(--teal-deep); font-size:.82rem; font-weight:600; padding:6px 14px; border-radius:999px; margin-bottom:18px; animation:rise .8s both; }

/* illustrated phone */
.phone { width:min(290px,82%); aspect-ratio:.5; background:linear-gradient(160deg,#1A1E3C,#0d1024); border-radius:38px; border:2px solid rgba(255,255,255,.12); box-shadow:0 50px 90px -30px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.08); position:relative; padding:14px; animation:floaty 6s ease-in-out infinite; }
.phone-notch { width:42%; height:22px; background:#0a0c1a; border-radius:0 0 14px 14px; margin:0 auto 10px; }
.phone-screen { background:radial-gradient(120% 80% at 50% 0%, #181d3d 0%, #0c0f22 70%); border-radius:26px; height:calc(100% - 32px); padding:20px 18px; display:flex; flex-direction:column; align-items:center; gap:10px; }
.ps-top { width:100%; display:flex; justify-content:space-between; align-items:center; }
.ps-sig, .ps-batt { width:24px; height:11px; }
.ps-sig { background:linear-gradient(90deg,var(--coral),transparent); border-radius:2px; }
.ps-batt { border:1.5px solid var(--dim-inv); border-radius:3px; }
.ps-brand { font-family:var(--disp); font-weight:700; color:#fff; font-size:1.1rem; }
.ps-flag { font-size:2.4rem; margin-top:8px; }
.ps-flag .fi { width:2.4rem; height:1.8rem; border-radius:5px; }
.ps-num { font-family:var(--disp); color:#fff; font-weight:600; letter-spacing:.05em; }
.ps-label { color:var(--dim-inv); font-size:.8rem; margin-top:-4px; }
.ps-qr { background:#fff; padding:10px; border-radius:14px; margin-top:6px; }
.ps-live { margin-top:auto; display:inline-flex; align-items:center; gap:7px; color:#5BE7A9; font-size:.82rem; font-weight:600; }
.ps-live .dot { width:8px; height:8px; border-radius:50%; background:#5BE7A9; box-shadow:0 0 0 0 rgba(91,231,169,.6); animation:pulse 2s infinite; }

/* trust bar */
.trustbar { background:var(--ink-2); border-top:1px solid var(--ink-3); border-bottom:1px solid var(--ink-3); }
.trust-inner { max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:10px; padding:26px 24px; text-align:center; }
.trust-item { display:flex; flex-direction:column; gap:3px; }
.ti-num { font-family:var(--disp); font-weight:700; font-size:1.7rem; color:#fff; letter-spacing:-.02em; }
.ti-lab { color:var(--dim-inv); font-size:.82rem; }

/* visual how-it-works */
.how-visual { display:flex; align-items:stretch; gap:14px; margin-top:38px; }
.how-step { flex:1; background:#fff; color:var(--text); border:1px solid var(--line); box-shadow:var(--shadow-sm); border-radius:var(--radius); padding:32px 26px; text-align:center; position:relative; transition:transform .2s ease, box-shadow .2s ease; }
.how-step:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.how-art { display:flex; justify-content:center; margin-bottom:8px; }
.how-step .n { position:absolute; top:16px; right:18px; font-family:var(--disp); font-weight:700; color:var(--coral); font-size:1.1rem; }
.how-step h3 { font-family:var(--disp); font-weight:700; font-size:1.1rem; margin:10px 0 6px; color:var(--text); }
.how-step p { color:var(--text-dim); font-size:.93rem; }
.how-arrow { display:flex; align-items:center; color:var(--coral); font-size:1.6rem; font-weight:700; }

/* feature icons */
.feat-ic { font-size:1.6rem; color:var(--coral); margin-bottom:8px; }

/* destinations grid */
.dest-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:14px; margin-top:34px; }
.dest-card { background:#fff; border:1px solid var(--line); border-radius:14px; padding:18px 16px; text-decoration:none; color:var(--text); display:flex; flex-direction:column; gap:4px; transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.dest-card:hover { transform:translateY(-4px); border-color:var(--coral); box-shadow:0 18px 30px -22px rgba(12,14,30,.4); }
.dest-flag { font-size:1.6rem; }
.dest-flag .fi { width:1.9rem; height:1.4rem; border-radius:4px; }
.dest-name { font-family:var(--disp); font-weight:600; }
.dest-local { color:var(--text-dim); font-size:.85rem; }

/* soft band */
.band-soft { background: var(--cream-2); color: var(--text); }
.band-soft h2, .band-soft h3 { color: var(--text); }
.band-soft .lede, .band-soft p { color: var(--text-dim); }

/* testimonials */
.quote-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; margin-top:36px; }
.quote { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px; margin:0; box-shadow:var(--shadow-sm); }
.quote .stars { color:var(--glow); letter-spacing:2px; margin-bottom:12px; }
.quote blockquote { margin:0 0 16px; color:var(--text); font-size:1.05rem; line-height:1.65; }
.quote figcaption { display:flex; align-items:center; gap:10px; color:var(--text-dim); font-size:.9rem; }
.q-av { width:34px; height:34px; border-radius:50%; display:grid; place-items:center; font-family:var(--disp); font-weight:700; color:#fff; }
.q-av-1 { background:linear-gradient(135deg,#FF4D36,#FF6A45); }
.q-av-2 { background:linear-gradient(135deg,#3D2BFF,#6A45FF); }
.q-av-3 { background:linear-gradient(135deg,#0B8A4B,#5BE7A9); }

/* app callout */
.app-callout .kicker { color:var(--coral); }
.app-callout h2 { color:#fff; }
.app-callout .lede { color:var(--dim-inv); margin:10px 0 22px; }
.phone-sm { width:min(240px,80%); aspect-ratio:.5; margin:0 auto; animation:floatY 6s ease-in-out infinite; }
.ps-dash { gap:12px; align-items:stretch; }
.ps-dash .ps-brand { margin-bottom:4px; }
.ps-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:12px; }
.ps-card span { color:var(--dim-inv); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; }
.ps-card small { color:#fff; font-size:.78rem; }
.ps-meter { height:7px; background:rgba(255,255,255,.1); border-radius:99px; margin:7px 0 5px; overflow:hidden; }
.ps-meter i { display:block; height:100%; background:var(--grad); border-radius:99px; }
.ps-btn { background:var(--grad); color:#fff; text-align:center; font-family:var(--disp); font-weight:600; font-size:.85rem; padding:11px; border-radius:12px; margin-top:auto; }

/* FAQ accordion */
.faq { margin-top:30px; display:flex; flex-direction:column; gap:10px; }
.faq details { background:#fff; border:1px solid var(--line); border-radius:14px; padding:4px 20px; }
.faq summary { font-family:var(--disp); font-weight:600; padding:16px 0; cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq summary::after { content:"+"; color:var(--coral); font-size:1.4rem; font-weight:700; }
.faq details[open] summary::after { content:"−"; }
.faq details p { padding:0 0 16px; color:var(--text-dim); line-height:1.6; }
.faq a { color:var(--coral); }

@media (max-width:880px){
  .trust-inner { grid-template-columns:repeat(2,1fr); gap:22px 10px; }
  .how-visual { flex-direction:column; }
  .how-arrow { transform:rotate(90deg); justify-content:center; padding:4px 0; }
    }

/* ---- SVG flags (flag-icons) with emoji fallback ---- */
.fi { width: 1.3em; height: 1em; border-radius: 3px; background-size: cover; background-position: center;
      display: inline-block; vertical-align: -0.12em; box-shadow: 0 0 0 1px rgba(0,0,0,.06); position: relative; overflow: hidden; }
.fi .fl-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; line-height: 1; font-size: .95em; }
/* When flag-icons CSS loaded, hide the emoji (the SVG background covers the box) */
.flags-ok .fi .fl-fallback { display: none; }
.flag-chip .fi { width: 1.4em; height: 1.05em; }
.ps-flag .fi { width: 2.4rem; height: 1.8rem; border-radius: 5px; }
.dest-flag .fi { width: 1.9rem; height: 1.4rem; border-radius: 4px; }

/* ============ PREMIUM MOTION LAYER ============ */
@keyframes fadeUp { from { opacity:0; transform:translateY(34px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn { from { opacity:0; transform:scale(.94); } to { opacity:1; transform:scale(1); } }
@keyframes slideL { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:none; } }
@keyframes slideR { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:none; } }
@keyframes gradShift { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }
@keyframes shimmer { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
@keyframes floatY { 0%,100% { transform:translateY(0) rotate(-5deg); } 50% { transform:translateY(-16px) rotate(-5deg); } }
@keyframes glowPulse { 0%,100% { opacity:.5; } 50% { opacity:.85; } }

/* JS-gated reveals with variants & stagger */
.js [data-rise], .js [data-fade], .js [data-scale], .js [data-left], .js [data-right] { opacity:0; will-change:opacity,transform; }
.js [data-rise].in  { animation: fadeUp .8s cubic-bezier(.2,.75,.2,1) forwards; }
.js [data-fade].in  { animation: fadeIn 1s ease forwards; }
.js [data-scale].in { animation: scaleIn .8s cubic-bezier(.2,.75,.2,1) forwards; }
.js [data-left].in  { animation: slideL .8s cubic-bezier(.2,.75,.2,1) forwards; }
.js [data-right].in { animation: slideR .8s cubic-bezier(.2,.75,.2,1) forwards; }
.js [data-delay="1"].in { animation-delay:.08s; }
.js [data-delay="2"].in { animation-delay:.16s; }
.js [data-delay="3"].in { animation-delay:.24s; }
.js [data-delay="4"].in { animation-delay:.32s; }

/* animated gradient text for accents */
.grad-anim { background:linear-gradient(120deg,var(--teal),#21C3B8,#5FD9CF,var(--teal)); background-size:300% 100%; -webkit-background-clip:text; background-clip:text; color:transparent; animation:gradShift 6s ease infinite; }

/* shimmering CTA */
.btn-primary { background-size:200% 100%; }
.btn-primary:hover { animation: gradShift 2s ease infinite; }

@media (prefers-reduced-motion: reduce) {
  .js [data-rise], .js [data-fade], .js [data-scale], .js [data-left], .js [data-right] { opacity:1 !important; animation:none !important; }
  .grad-anim, .btn-primary:hover { animation:none !important; }
}


/* ============ ILLUSTRATIONS & RICH SECTIONS ============ */
.art { width: 100%; height: auto; display: block; }
.art-hero { max-width: 520px; margin: 0 auto; filter: drop-shadow(0 30px 50px rgba(17,168,160,.18)); }
.art-float { animation: floatY 6s ease-in-out infinite; transform-origin: center; }
.art-orbit { transform-origin: 260px 250px; animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(340deg); } }
.art-pin { animation: pinPop 3s ease-in-out infinite; transform-origin: center; }
.art-pin:nth-of-type(2){ animation-delay:.6s; } .art-pin:nth-of-type(3){ animation-delay:1.2s; }
@keyframes pinPop { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.art-sig { animation: glowPulse 2.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){ .art-float,.art-orbit,.art-pin,.art-sig{animation:none !important;} }

/* split (image + copy) sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-art { display: flex; justify-content: center; }
.split-art svg { max-width: 440px; }
.tick-list { list-style: none; padding: 18px 0 24px; display: grid; gap: 12px; }
.tick-list li { padding-left: 32px; position: relative; font-size: 1rem; }
.tick-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--grad);
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.8 8.5l1.4-1.4 2.3 2.3 5.3-5.3 1.4 1.4z"/></svg>') center/contain no-repeat; }

/* row head (title + view-all button) */
.row-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 12px; }

/* blog/magazine cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 26px; margin-top: 32px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); box-shadow: var(--shadow-sm); transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-art { display: block; aspect-ratio: 5/3; overflow: hidden; }
.blog-art svg { width: 100%; height: 100%; }
.blog-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-title { font-family: var(--disp); font-weight: 700; font-size: 1.12rem; line-height: 1.3; }
.blog-ex { color: var(--text-dim); font-size: .92rem; flex: 1; }
.blog-read { color: var(--teal-deep); font-weight: 600; font-size: .9rem; margin-top: 4px; }

/* post page */
.back-link { color: var(--teal-deep); text-decoration: none; font-weight: 600; display: inline-block; margin-bottom: 18px; }
.post-hero { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/7; margin-bottom: 28px; box-shadow: var(--shadow-md); }
.post-hero svg { width: 100%; height: 100%; }
.post-title { font-family: var(--disp); font-weight: 700; font-size: clamp(1.8rem,4vw,2.6rem); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 12px; }
.post-body { margin-top: 18px; }
.post-cta { margin-top: 40px; padding: 32px; background: var(--teal-soft); border-radius: var(--radius); text-align: center; }
.post-cta h3 { font-family: var(--disp); font-weight: 700; margin-bottom: 14px; }

/* dark app band */
.band-dark { background: var(--ink); }
.band-dark h2 { color: #fff; }
.appbadges { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.appbadge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; padding: 10px 18px; border-radius: 12px; font-size: .9rem; font-weight: 500; }
.appbadge b { color: var(--glow); }

/* business banner */
.biz-banner { background: var(--ink); border-radius: 28px; padding: 48px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; color: #fff; position: relative; overflow: hidden; }
.biz-banner::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(17,168,160,.4), transparent 70%); top: -100px; right: -60px; }
.biz-banner h2 { color: #fff; position: relative; }
.biz-banner .kicker { color: var(--teal); position: relative; }
.biz-banner .lede { color: var(--dim-inv); position: relative; max-width: 460px; }
.biz-banner .btn { position: relative; }

@media (max-width: 880px){
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-art { order: -1; }
  .band-dark .split-art { order: 0; } .band-dark .split-art { display:flex; justify-content:center; }
  .row-head { flex-direction: column; align-items: flex-start; }
  .biz-banner { padding: 32px; }
}

/* fix: split-copy headings always solid dark on light bands */
.band-soft .split-copy h2 { color: var(--text); background: none; -webkit-text-fill-color: currentColor; }
.band-soft .split-copy .lede, .band-soft .split-copy .tick-list li { color: var(--text-dim); }
.band-soft .split-copy .tick-list li { color: var(--text); }

.split-art .art { max-width: 380px; }
.band-soft .split-art svg { max-width: 360px; }

/* ============ RICH FOOTER ============ */
.site-foot { background: var(--ink); color: var(--dim-inv); margin-top: 0; }
.foot-cta-strip { border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-cta-inner { max-width: 1140px; margin: 0 auto; padding: 40px 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot-cta-inner h3 { font-family: var(--disp); font-weight: 700; color: #fff; font-size: 1.5rem; letter-spacing: -.02em; }
.foot-cta-inner p { color: var(--dim-inv); margin-top: 4px; }
.foot-top { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.5fr; gap: 40px; padding: 56px 28px 44px; }
.foot-logo { font-size: 1.7rem; color: #fff; }
.foot-tag { margin-top: 10px; color: var(--dim-inv); font-size: .92rem; max-width: 220px; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.soc { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--dim-inv); text-decoration: none; transition: background .2s, color .2s, transform .2s; }
.soc:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.foot-h { font-family: var(--disp); font-weight: 600; color: #fff; margin-bottom: 16px; font-size: .98rem; }
.foot-col { display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: var(--dim-inv); text-decoration: none; font-size: .92rem; transition: color .15s, padding-left .15s; }
.foot-col a:hover { color: #fff; padding-left: 3px; }
.foot-news-sub { color: var(--dim-inv); font-size: .88rem; margin-bottom: 14px; line-height: 1.5; }
.news-form { display: flex; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 5px; transition: border-color .2s; }
.news-form:focus-within { border-color: var(--teal); }
.news-form input { flex: 1; background: none; border: 0; color: #fff; padding: 10px 16px; font: inherit; outline: none; }
.news-form input::placeholder { color: var(--dim-inv); }
.news-form button { background: var(--grad); color: #fff; border: 0; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; transition: transform .15s; flex-shrink: 0; }
.news-form button:hover { transform: scale(1.08); }
.foot-apps { display: flex; gap: 10px; margin-top: 16px; }
.foot-app { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 7px 13px; border-radius: 10px; font-size: .82rem; color: var(--dim-inv); }
.foot-app b { color: #fff; }
.foot-app svg { color: var(--dim-inv); }
.foot-bottom { max-width: 1140px; margin: 0 auto; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--dim-inv); border-top: 1px solid rgba(255,255,255,.08); }
.foot-legal-links { display: flex; gap: 20px; }
.foot-legal-links a { color: var(--dim-inv); text-decoration: none; }
.foot-legal-links a:hover { color: #fff; }
@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 44px 22px 32px; }
  .foot-brand, .foot-news { grid-column: 1 / -1; }
  .foot-cta-inner { flex-direction: column; align-items: flex-start; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}


/* ============ INNER PAGES ============ */
.page-hero-band { background: var(--grad-warm); padding: clamp(40px,7vh,72px) 28px; }
.page-hero-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.page-hero-copy h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(2rem,4.5vw,3rem); letter-spacing: -.03em; line-height: 1.08; }
.page-hero-art { display: flex; justify-content: center; }
.page-hero-art svg { width: 100%; max-width: 320px; height: auto; }
.page-content { max-width: 820px; padding-top: clamp(40px,6vh,64px); }
.page-content .page-body { font-size: 1.05rem; line-height: 1.75; color: var(--text); }
.page-content .page-body h2 { font-family: var(--disp); font-weight: 700; font-size: 1.4rem; margin: 32px 0 12px; letter-spacing: -.02em; }
.page-content .page-body h3 { font-family: var(--disp); font-weight: 600; font-size: 1.12rem; margin: 24px 0 8px; }
.page-content .page-body p { margin-bottom: 16px; }
.page-content .page-body ul { margin: 0 0 16px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.page-content .page-body li { padding-left: 30px; position: relative; }
.page-content .page-body li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--teal-soft); }
.page-content .page-body li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.page-content .page-body a { color: var(--teal-deep); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.contact-card .cc-ic { font-size: 1.6rem; color: var(--teal); }
.contact-card h3 { font-family: var(--disp); font-weight: 700; margin: 8px 0 4px; }
.contact-card p { font-size: 1.05rem; font-weight: 600; }
.page-cta { margin-top: 44px; background: var(--teal-soft); border-radius: var(--radius); padding: 30px 34px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.page-cta h3 { font-family: var(--disp); font-weight: 700; font-size: 1.25rem; }
@media (max-width:780px){ .page-hero-inner{grid-template-columns:1fr;} .page-hero-art{order:-1;max-width:220px;margin:0 auto;} .contact-cards{grid-template-columns:1fr;} }

/* blog/magazine + post page (also lost in truncation) */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 26px; margin-top: 32px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); box-shadow: var(--shadow-sm); transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-art { display: block; aspect-ratio: 5/3; overflow: hidden; }
.blog-art svg { width: 100%; height: 100%; }
.blog-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-title { font-family: var(--disp); font-weight: 700; font-size: 1.12rem; line-height: 1.3; }
.blog-ex { color: var(--text-dim); font-size: .92rem; flex: 1; }
.blog-read { color: var(--teal-deep); font-weight: 600; font-size: .9rem; margin-top: 4px; }
.back-link { color: var(--teal-deep); text-decoration: none; font-weight: 600; display: inline-block; margin-bottom: 18px; }
.post-hero { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/7; margin-bottom: 28px; box-shadow: var(--shadow-md); }
.post-hero svg { width: 100%; height: 100%; }
.post-title { font-family: var(--disp); font-weight: 700; font-size: clamp(1.8rem,4vw,2.6rem); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 12px; }
.post-body { margin-top: 18px; }
.post-cta { margin-top: 40px; padding: 32px; background: var(--teal-soft); border-radius: var(--radius); text-align: center; }
.post-cta h3 { font-family: var(--disp); font-weight: 700; margin-bottom: 14px; }
.row-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 12px; }

/* ============ FOOTER (Airalo-structure, Veylo identity) ============ */
.site-foot { background: var(--cream); color: var(--text); }
/* app-download band */
.foot-app-band { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.foot-app-inner { background: var(--teal-soft); border-radius: 28px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: center; padding: 40px 48px; overflow: hidden; }
.foot-app-art svg { max-width: 320px; width: 100%; height: auto; display: block; }
.foot-app-copy h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(1.6rem,3vw,2.4rem); letter-spacing: -.03em; line-height: 1.05; color: var(--ink); }
.foot-app-copy p { color: var(--text-dim); margin: 12px 0 22px; font-size: 1.02rem; max-width: 440px; }
.foot-app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.app-dl { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 14px; transition: transform .18s, box-shadow .18s; }
.app-dl:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.app-dl-ic { font-size: 1.4rem; }
.app-dl small { display: block; font-size: .64rem; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }
.app-dl b { font-size: 1rem; }
.foot-app-ratings { display: flex; gap: 36px; margin-top: 18px; }
.foot-app-ratings span { display: flex; flex-direction: column; }
.foot-app-ratings small { color: var(--text-dim); font-size: .76rem; }
.foot-app-ratings b { font-family: var(--disp); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.foot-app-ratings i { color: var(--glow); font-style: normal; letter-spacing: 1px; font-size: .8rem; }

/* link columns */
.foot-top { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(7, 1fr); gap: 28px; padding: 64px 28px 32px; }
.foot-h { font-family: var(--disp); font-weight: 700; color: var(--ink); margin-bottom: 16px; font-size: 1rem; }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col a { color: var(--text-dim); text-decoration: none; font-size: .9rem; transition: color .15s; }
.foot-col a:hover { color: var(--teal-deep); }
.foot-soc-link { display: flex; align-items: center; gap: 9px; }
.sx { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.sx-fb { background: #1877F2; } .sx-ig { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF); } .sx-x { background: #111; } .sx-tt { background: #111; }

/* big decorative wordmark */
.foot-word { font-family: var(--disp); font-weight: 700; text-align: center; font-size: clamp(5rem, 20vw, 16rem); line-height: .8; letter-spacing: -.04em; color: #fff; padding: 10px 0 0; user-select: none;
  text-shadow: 0 1px 0 var(--line); position: relative; }
.foot-word span { color: var(--teal); }

.foot-bottom { border-top: 1px solid var(--line); max-width: 1180px; margin: 0 auto; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--text-dim); }
.foot-legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-legal-links a { color: var(--text-dim); text-decoration: none; }
.foot-legal-links a:hover { color: var(--teal-deep); }
@media (max-width: 980px) {
  .foot-top { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .foot-app-inner { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .foot-app-art { order: -1; } .foot-app-art svg { margin: 0 auto; max-width: 220px; }
  .foot-app-badges, .foot-app-ratings { justify-content: center; }
  .foot-word { font-size: 28vw; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px){ .foot-top { grid-template-columns: repeat(2,1fr); } }

/* ============ COVERAGE MAP ============ */
.cov-section { padding-top: clamp(32px,5vh,52px); padding-bottom: 0; }
.cov-map-wrap { max-width: 920px; margin: 0 auto; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); }
.cov-map { width: 100%; height: auto; display: block; }
.cov-hub { animation: covHub 2.6s ease-in-out infinite; transform-origin: 480px 150px; }
@keyframes covHub { 0%,100%{opacity:1} 50%{opacity:.6} }
.cov-pin { animation: covPin 2.8s ease-in-out infinite; transform-origin: center; }
@keyframes covPin { 0%,100%{opacity:.55; transform:translateY(0)} 50%{opacity:1; transform:translateY(-3px)} }
.cov-legend { text-align: center; margin-top: 18px; color: var(--text-dim); font-size: .9rem; }
.cov-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: #11A8A0; vertical-align: -1px; margin-right: 4px; }
.cov-dot-hub { background: #0C8A83; box-shadow: 0 0 0 3px rgba(17,168,160,.25); }
@media (prefers-reduced-motion: reduce){ .cov-hub,.cov-pin{animation:none !important;} }
