/* Premium layer: typography, grouping, visuals, depth */

:root{
  --k-text-strong:#F4F7FF;
  --k-text-body:rgba(234,240,255,.86);
  --k-text-soft:rgba(234,240,255,.68);
  --k-space-xl:64px;
  --k-space-lg:52px;
  --k-radius-xl:26px;
}

body.k-body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.k-bg__mesh{
  position:absolute;inset:-20%;
  background:
    radial-gradient(circle at 30% 20%, rgba(53,211,255,.08), transparent 42%),
    radial-gradient(circle at 70% 30%, rgba(124,92,255,.10), transparent 45%),
    conic-gradient(from 210deg at 50% 50%, rgba(53,211,255,.04), rgba(124,92,255,.05), rgba(124,255,178,.03), rgba(53,211,255,.04));
  opacity:.85;
  animation:kMesh 22s ease-in-out infinite;
}
@keyframes kMesh{
  0%,100%{transform:translate3d(0,0,0) rotate(0deg)}
  50%{transform:translate3d(-1%,1%,0) rotate(2deg)}
}

/* Typography */
.k-h1{
  font-size:clamp(40px,5.2vw,68px);
  font-weight:800;
  letter-spacing:-.95px;
  line-height:1.02;
  color:var(--k-text-strong);
  max-width:14ch;
  text-wrap:balance;
}
.k-h1 .k-hl{
  background:linear-gradient(135deg,#FFFFFF 0%,#7CE8FF 40%,#A78BFA 75%,#7CFFB2 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.k-h2{
  font-size:clamp(28px,3.2vw,42px);
  font-weight:750;
  letter-spacing:-.5px;
  color:var(--k-text-strong);
}
/* Section headings — distinct from body text */
.k-section__head--styled{
  position:relative;
  padding:20px 22px 18px;
  margin-bottom:22px;
  border-radius:20px;
  background:
    linear-gradient(135deg, rgba(53,211,255,.07), rgba(124,92,255,.05)),
    rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
  overflow:hidden;
}
.k-section__head--styled:before{
  content:"";
  position:absolute;left:0;top:0;bottom:0;width:4px;
  background:linear-gradient(180deg, rgba(53,211,255,.95), rgba(124,92,255,.9), rgba(124,255,178,.75));
}
.k-section__head--styled:after{
  content:"";
  position:absolute;right:-40px;top:-50px;width:180px;height:180px;border-radius:50%;
  background:radial-gradient(circle, rgba(53,211,255,.12), transparent 68%);
  pointer-events:none;
}
.k-section__head--emph{
  background:
    linear-gradient(135deg, rgba(53,211,255,.10), rgba(124,92,255,.08)),
    rgba(255,255,255,.03);
  border-color:rgba(53,211,255,.18);
}
.k-eyebrow--bar{
  padding-left:12px;
  border-left:2px solid rgba(53,211,255,.55);
}
.k-sectionTitle{
  font-size:clamp(32px,3.8vw,52px);
  font-weight:800;
  letter-spacing:-.75px;
  line-height:1.06;
  margin:0 0 14px;
  max-width:22ch;
}
.k-sectionTitle__text{
  display:inline;
  background:linear-gradient(135deg,#FFFFFF 0%,#B8F0FF 38%,#9B8CFF 72%,#7CFFB2 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 40px rgba(53,211,255,.15);
}
.k-sectionTitle:after{
  content:"";
  display:block;
  width:min(120px,40%);
  height:4px;
  margin-top:14px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(53,211,255,.95), rgba(124,92,255,.85), transparent);
}
.k-section__head--emph .k-sectionTitle__text{
  background:linear-gradient(135deg,#FFFFFF 0%,rgba(53,211,255,1) 45%,rgba(124,92,255,1) 85%);
  -webkit-background-clip:text;
  background-clip:text;
}
.k-sectionTitle--faq .k-sectionTitle__text{max-width:none}
.k-sectionLead{
  font-size:clamp(17px,1.55vw,20px);
  line-height:1.65;
  color:var(--k-text-body);
  max-width:68ch;
  margin:0;
  padding-left:2px;
}
.k-proseBlock .k-sectionLead{text-wrap:balance;margin-top:4px}
.k-proseBlock .k-sectionTitle{max-width:18ch}
/* Inline titles (no head wrapper) */
.k-engine__grid .k-sectionTitle,
.k-preview__copy .k-sectionTitle,
.k-device__grid > div > .k-sectionTitle,
.k-security__grid > div > .k-sectionTitle{
  margin-bottom:12px;
}
.k-lead{
  font-size:clamp(17px,1.65vw,20px);
  line-height:1.65;
  color:var(--k-text-body);
  max-width:62ch;
  margin-top:14px;
}
.k-sub{
  font-size:17px;
  line-height:1.65;
  color:var(--k-text-soft);
  max-width:72ch;
  margin-top:10px;
}
.k-hl{
  background:linear-gradient(135deg, rgba(53,211,255,.95), rgba(124,92,255,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.k-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:rgba(53,211,255,.85);
  margin-bottom:12px;
}
.k-section__head{margin-bottom:28px}
.k-section__head .k-sub{margin-top:10px}

/* Content groups (ActivTrades-style large bands) */
.k-group{
  position:relative;
  padding:var(--k-space-lg) 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.k-group--hero{padding-top:16px;padding-bottom:0;border-top:0}
.k-group--trust{padding:0;background:rgba(255,255,255,.02)}
.k-group--product{
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    radial-gradient(circle at 10% 0%, rgba(53,211,255,.06), transparent 40%);
}
.k-group--proof{
  background:
    linear-gradient(180deg, rgba(124,92,255,.05), rgba(255,255,255,.01)),
    radial-gradient(circle at 90% 20%, rgba(53,211,255,.06), transparent 45%);
}
.k-group--convert{
  background:linear-gradient(180deg, rgba(53,211,255,.06), rgba(124,92,255,.05));
}
.k-panel{
  border-radius:var(--k-radius-xl);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 100px rgba(0,0,0,.45);
  backdrop-filter:blur(16px);
  padding:22px;
}
.k-panel + .k-panel{margin-top:14px}

/* Hero media */
.k-hero{padding:48px 0 24px}
.k-hero__media{
  position:relative;
  min-height:380px;
  border-radius:var(--k-radius-xl);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--k-shadow);
}
.k-hero__img{
  width:100%;height:100%;object-fit:cover;
  min-height:380px;
  display:block;
  filter:saturate(1.08) contrast(1.05);
}
.k-split__media,
.k-hero__media{
  background:rgba(255,255,255,.04);
}
.k-split__media .k-img,
.k-hero__media .k-img{
  width:100%;
  min-height:320px;
  height:100%;
  object-fit:cover;
  display:block;
}
.k-hero__overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg, rgba(7,10,18,.55), rgba(7,10,18,.15) 55%, rgba(7,10,18,.65));
  pointer-events:none;
}
.k-floatWidget{
  position:absolute;left:16px;right:16px;bottom:16px;
  display:grid;grid-template-columns:1fr 1fr;gap:10px;
}
.k-floatWidget__card{
  padding:12px 12px;border-radius:16px;
  background:rgba(12,15,26,.72);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
}
.k-floatWidget__k{font-size:11px;color:var(--k-text-soft);text-transform:uppercase;letter-spacing:.08em}
.k-floatWidget__v{font-size:18px;font-weight:800;margin-top:4px}
.k-floatWidget__v.up{color:rgba(124,255,178,.95)}
.k-chipRow{position:absolute;top:16px;left:16px;display:flex;gap:8px;flex-wrap:wrap}
.k-chip{
  padding:7px 10px;border-radius:999px;font-size:11px;font-weight:700;
  background:rgba(12,15,26,.65);border:1px solid rgba(255,255,255,.12);
  color:rgba(234,240,255,.78);backdrop-filter:blur(12px);
}

/* Icons in cards */
.k-card__icon{
  width:44px;height:44px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, rgba(53,211,255,.16), rgba(124,92,255,.14));
  border:1px solid rgba(255,255,255,.12);
  color:rgba(234,240,255,.92);
  margin-bottom:12px;
  box-shadow:0 12px 30px rgba(53,211,255,.08);
}
.k-ic{display:block}

/* Photo grids */
.k-photoGrid{display:grid;grid-template-columns:1fr;gap:12px}
.k-photo{
  position:relative;border-radius:20px;overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  min-height:220px;
}
.k-photo img{width:100%;height:100%;object-fit:cover;min-height:220px;display:block}
.k-photo__cap{
  position:absolute;left:0;right:0;bottom:0;padding:14px 14px;
  background:linear-gradient(180deg, transparent, rgba(7,10,18,.85));
}
.k-photo__cap strong{display:block;font-size:14px}
.k-photo__cap span{font-size:12px;color:var(--k-text-soft)}

/* Why / conditions split */
.k-split{display:grid;grid-template-columns:1fr;gap:16px;align-items:center}
.k-split__media{
  border-radius:var(--k-radius-xl);overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  min-height:280px;position:relative;
}
.k-split__media img{width:100%;height:100%;object-fit:cover;min-height:280px;display:block}

/* Ecosystem band */
.k-eco{
  display:grid;grid-template-columns:repeat(2,1fr);gap:10px;
}
.k-eco__item{
  padding:14px;border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  display:flex;align-items:center;gap:10px;
}
.k-eco__item .k-ic{color:rgba(53,211,255,.9)}
.k-coin__sym{display:flex;align-items:center;gap:8px}
.k-coin__sym .k-ic{opacity:.9}

.k-avatar--photo{padding:0;overflow:hidden;width:44px;height:44px;border-radius:16px}
.k-avatar__img{width:100%;height:100%;object-fit:cover;display:block;border-radius:16px}

/* CTA pulse */
.k-btn--pulse{position:relative;overflow:hidden}
.k-btn--pulse:after{
  content:"";position:absolute;inset:-2px;border-radius:inherit;
  background:linear-gradient(135deg, rgba(53,211,255,.35), rgba(124,92,255,.25));
  opacity:0;transition:opacity .2s ease;
  z-index:-1;filter:blur(10px);
}
.k-btn--pulse:hover:after{opacity:1}

/* Popup entrance */
.k-pop[aria-hidden="false"] .k-pop__panel--lead{
  animation:kPopIn .45s cubic-bezier(.2,.9,.2,1) both;
}
.k-pop[aria-hidden="false"] .k-pop__titleGrad{
  animation:kPopTitle .6s cubic-bezier(.2,.9,.2,1) .08s both;
}
@keyframes kPopIn{
  from{opacity:0;transform:translateY(20px) scale(.96)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes kPopTitle{
  from{opacity:0;filter:blur(6px);letter-spacing:.04em}
  to{opacity:1;filter:blur(0);letter-spacing:-.02em}
}

/* Card hover depth */
.k-card,.k-coin{transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease}

/* How-it-works — interactive step cards */
.k-how .k-steps{position:relative}
@media (min-width: 720px){
  .k-how .k-steps{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
  }
}
@media (min-width: 1100px){
  .k-how .k-steps{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:12px;
  }
  .k-how .k-step{
    grid-template-columns:1fr;
    grid-template-rows:auto 1fr;
    text-align:center;
    padding:18px 14px 16px;
  }
  .k-how .k-step__visual{margin:0 auto}
  .k-how .k-step__b{text-align:center}
  .k-how .k-step__action{justify-content:center;width:100%}
}
.k-card:hover,.k-coin:hover{
  transform:translateY(-3px);
  border-color:rgba(53,211,255,.22);
  box-shadow:0 22px 70px rgba(0,0,0,.38), 0 0 0 1px rgba(53,211,255,.08);
}

@media (min-width: 860px){
  .k-group{padding:var(--k-space-xl) 0}
  .k-hero__grid{grid-template-columns:1.02fr .98fr}
  .k-photoGrid{grid-template-columns:repeat(3,1fr)}
  .k-split{grid-template-columns:1fr 1fr}
  .k-eco{grid-template-columns:repeat(4,1fr)}
  .k-floatWidget{grid-template-columns:repeat(3,1fr)}
}

.k-feat__k{font-weight:750;display:flex;align-items:center;gap:10px}
.k-feat__k .k-ic{color:rgba(53,211,255,.9);flex-shrink:0}
.k-feat__v{color:var(--k-text-soft);font-size:13px;margin-top:6px}

/* Infinite marquee (coins + payments) */
.k-group,.k-section,.k-container{max-width:100%}
.k-marquee__viewport{width:100%;overflow:hidden;max-width:100%}
.k-marquee__track{
  display:flex;width:max-content;
  animation:kMarqueeScroll var(--k-marquee-duration, 38s) linear infinite;
}
.k-marquee__group{display:flex;align-items:center;flex-shrink:0}
.k-marquee__slide--coin{padding:0 24px;display:inline-flex;align-items:center}
.k-marquee__slide--pay{padding:0 10px;display:inline-flex}
@keyframes kMarqueeScroll{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
.k-coinStrip{
  position:relative;z-index:20;
  padding:20px 0;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-block:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 60px rgba(0,0,0,.28);
}
.k-coinStrip__logo{
  height:34px;width:auto;max-width:120px;object-fit:contain;
  opacity:.88;
  transition:opacity .2s ease, filter .2s ease, transform .2s ease;
}
.k-marquee__slide--coin:hover .k-coinStrip__logo{
  opacity:1;
  transform:scale(1.04);
}
.k-marquee__slide--avalanche .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(232,65,66,.55)) saturate(1.15)}
.k-marquee__slide--bitcoin .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(247,147,26,.55)) saturate(1.15)}
.k-marquee__slide--bnb .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(243,186,47,.5)) saturate(1.15)}
.k-marquee__slide--cardano .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(0,51,173,.55)) saturate(1.12)}
.k-marquee__slide--chainlink .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(55,91,210,.55)) saturate(1.12)}
.k-marquee__slide--cronos .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(0,45,116,.6)) saturate(1.1)}
.k-marquee__slide--dogecoin .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(194,166,51,.5)) saturate(1.15)}
.k-marquee__slide--ethereum-classic .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(50,131,50,.55)) saturate(1.12)}
.k-marquee__slide--ethereum .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(98,126,234,.55)) saturate(1.15)}
.k-marquee__slide--litecoin .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(52,93,157,.55)) saturate(1.1)}
.k-marquee__slide--polkadot .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(230,0,122,.5)) saturate(1.15)}
.k-marquee__slide--polygon .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(130,71,229,.55)) saturate(1.15)}
.k-marquee__slide--shiba-inu .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(255,164,9,.5)) saturate(1.15)}
.k-marquee__slide--solana .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(153,69,255,.55)) saturate(1.18)}
.k-marquee__slide--tron .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(255,0,19,.45)) saturate(1.12)}
.k-marquee__slide--uniswap .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(255,0,122,.5)) saturate(1.15)}
.k-marquee__slide--unus-sed-leo .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(243,147,33,.5)) saturate(1.12)}
.k-marquee__slide--wrapped-bitcoin .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(240,146,66,.5)) saturate(1.12)}
.k-marquee__slide--xrp .k-coinStrip__logo{filter:drop-shadow(0 0 10px rgba(0,170,228,.5)) saturate(1.12)}
.k-marquee__slide--coin:hover .k-coinStrip__logo{filter:drop-shadow(0 0 16px var(--k-coin-glow, rgba(53,211,255,.65))) saturate(1.25)}
.k-marquee__slide--avalanche{--k-coin-glow:rgba(232,65,66,.75)}
.k-marquee__slide--bitcoin{--k-coin-glow:rgba(247,147,26,.75)}
.k-marquee__slide--bnb{--k-coin-glow:rgba(243,186,47,.7)}
.k-marquee__slide--cardano{--k-coin-glow:rgba(0,51,173,.75)}
.k-marquee__slide--chainlink{--k-coin-glow:rgba(55,91,210,.75)}
.k-marquee__slide--cronos{--k-coin-glow:rgba(0,45,116,.8)}
.k-marquee__slide--dogecoin{--k-coin-glow:rgba(194,166,51,.7)}
.k-marquee__slide--ethereum-classic{--k-coin-glow:rgba(50,131,50,.75)}
.k-marquee__slide--ethereum{--k-coin-glow:rgba(98,126,234,.75)}
.k-marquee__slide--litecoin{--k-coin-glow:rgba(52,93,157,.75)}
.k-marquee__slide--polkadot{--k-coin-glow:rgba(230,0,122,.7)}
.k-marquee__slide--polygon{--k-coin-glow:rgba(130,71,229,.75)}
.k-marquee__slide--shiba-inu{--k-coin-glow:rgba(255,164,9,.7)}
.k-marquee__slide--solana{--k-coin-glow:rgba(153,69,255,.75)}
.k-marquee__slide--tron{--k-coin-glow:rgba(255,0,19,.65)}
.k-marquee__slide--uniswap{--k-coin-glow:rgba(255,0,122,.7)}
.k-marquee__slide--unus-sed-leo{--k-coin-glow:rgba(243,147,33,.7)}
.k-marquee__slide--wrapped-bitcoin{--k-coin-glow:rgba(240,146,66,.7)}
.k-marquee__slide--xrp{--k-coin-glow:rgba(0,170,228,.7)}
/* Payments section — trust bar + branded marquee */
.k-payments{
  position:relative;
  overflow:hidden;
}
.k-payments::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(53,211,255,.08), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(124,92,255,.06), transparent 50%);
  pointer-events:none;
}
.k-payments__shell{
  position:relative;
  margin-top:8px;
  padding:22px 20px 18px;
  border-radius:var(--k-radius-xl);
  background:linear-gradient(165deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 45%, rgba(0,0,0,.12) 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 80px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
}
.k-payments__trust{
  display:flex;flex-wrap:wrap;justify-content:center;gap:10px 12px;
  margin-bottom:20px;
}
.k-payments__pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 16px;border-radius:999px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  font-size:13px;font-weight:600;color:var(--k-text-soft);
}
.k-payments__pillIc{
  display:flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:10px;
  background:linear-gradient(135deg, rgba(53,211,255,.18), rgba(124,92,255,.14));
  color:rgba(53,211,255,.95);
}
.k-payments__pillIc .k-ic{width:18px;height:18px}
.k-payments__stage{
  position:relative;
  padding:8px 0 4px;
  overflow:hidden;
}
.k-payments__fade{
  position:absolute;top:0;bottom:0;width:min(80px,12vw);z-index:3;pointer-events:none;
}
.k-payments__fade--l{left:0;background:linear-gradient(90deg, rgba(10,12,20,.95), transparent)}
.k-payments__fade--r{right:0;background:linear-gradient(270deg, rgba(10,12,20,.95), transparent)}
.k-payments .k-marquee{margin:0}
.k-marquee__slide--pay{padding:0 5px}
.k-marquee--payments .k-pay{
  --k-pay-accent:#35d3ff;
  --k-pay-glow:rgba(53,211,255,.22);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  padding:10px 12px 8px;border-radius:14px;
  width:112px;max-width:112px;
  min-height:62px;
  overflow:hidden;
  background:linear-gradient(160deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 8px 28px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.k-marquee--payments .k-pay:hover{
  border-color:color-mix(in srgb, var(--k-pay-accent) 50%, transparent);
  box-shadow:0 10px 32px rgba(0,0,0,.32), 0 0 0 1px color-mix(in srgb, var(--k-pay-accent) 22%, transparent), 0 0 20px var(--k-pay-glow);
  background:linear-gradient(160deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.03) 100%);
}
.k-pay__logo{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:30px;padding:4px 6px;border-radius:8px;
  background:rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.k-marquee--payments .k-pay__img{
  display:block;
  height:20px;width:auto;max-width:76px;max-height:20px;
  object-fit:contain;object-position:center;
  filter:brightness(1.06);
}
.k-pay__name{
  font-size:9px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  color:rgba(234,240,255,.48);
  line-height:1.2;
  max-width:100%;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.k-pay--visa{--k-pay-accent:#1a1f71;--k-pay-glow:rgba(26,31,113,.45)}
.k-pay--visa .k-pay__logo{background:linear-gradient(135deg, rgba(26,31,113,.55), rgba(20,52,203,.25))}
.k-pay--mastercard{--k-pay-accent:#eb001b;--k-pay-glow:rgba(235,0,27,.35)}
.k-pay--mastercard .k-pay__logo{background:linear-gradient(135deg, rgba(235,0,27,.22), rgba(247,158,27,.12))}
.k-pay--paypal{--k-pay-accent:#003087;--k-pay-glow:rgba(0,48,135,.4)}
.k-pay--paypal .k-pay__logo{background:linear-gradient(135deg, rgba(0,48,135,.4), rgba(0,156,222,.15))}
.k-pay--apple-pay{--k-pay-accent:#ffffff;--k-pay-glow:rgba(255,255,255,.12)}
.k-pay--google-pay{--k-pay-accent:#4285f4;--k-pay-glow:rgba(66,133,244,.3)}
.k-pay--skrill{--k-pay-accent:#a4218a;--k-pay-glow:rgba(164,33,138,.32)}
.k-pay--skrill .k-pay__logo{background:rgba(164,33,138,.12)}
.k-pay--neteller{--k-pay-accent:#83ba3b;--k-pay-glow:rgba(131,186,59,.32)}
.k-pay--neteller .k-pay__logo{background:rgba(255,255,255,.03);border-color:rgba(131,186,59,.12)}
.k-pay--neteller .k-pay__img{
  height:14px;max-height:14px;max-width:86px;width:auto;
  filter:none;
}
.k-pay--bank{--k-pay-accent:#35d3ff;--k-pay-glow:rgba(53,211,255,.22)}
.k-pay--bank .k-pay__logo{background:rgba(53,211,255,.05)}
.k-pay--mastercard .k-pay__img{max-width:52px}
.k-pay--bank .k-pay__img{height:22px;max-height:22px;max-width:50px;width:auto}
.k-pay--skrill .k-pay__img{max-width:72px;height:18px}
.k-payments__foot{
  margin:16px 0 0;text-align:center;
  font-size:12px;color:rgba(234,240,255,.42);line-height:1.45;
}
@media (min-width: 720px){
  .k-payments__shell{padding:28px 28px 22px}
  .k-marquee--payments .k-pay{width:118px;max-width:118px;min-height:66px}
  .k-marquee--payments .k-pay__img{height:22px;max-width:82px;max-height:22px}
  .k-pay__logo{height:32px}
}

/* ActivTrades-inspired trust blocks */
.k-awardGrid{
  display:grid;gap:12px;
  grid-template-columns:repeat(2,1fr);
}
.k-award{
  padding:18px 16px;border-radius:var(--k-radius-xl);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.k-award__n{font-size:28px;font-weight:800;letter-spacing:-.4px;color:var(--k-text-strong)}
.k-award__l{margin-top:6px;font-size:13px;color:var(--k-text-soft);line-height:1.45}
.k-licenseRow{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.k-license{
  font-size:12px;font-weight:650;letter-spacing:.04em;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(53,211,255,.18);
  background:rgba(53,211,255,.06);
  color:rgba(234,240,255,.86);
}
.k-global__grid,.k-support__grid{
  display:grid;gap:22px;align-items:center;
}
.k-countryGrid{
  display:grid;gap:8px;
  grid-template-columns:repeat(2,1fr);
  margin-top:16px;
}
.k-country{
  display:flex;align-items:center;gap:8px;
  font-size:13px;color:var(--k-text-body);
  padding:8px 10px;border-radius:12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
.k-country__flag{font-size:16px;line-height:1}
.k-support__badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}

/* Compare table — richer UI */
.k-compare__wrap{position:relative}
.k-compare__glow{
  position:absolute;inset:-12% -8%;
  background:radial-gradient(circle at 50% 30%, rgba(53,211,255,.14), transparent 58%);
  pointer-events:none;filter:blur(18px);
}
.k-compare__box{position:relative}
.k-compare__featureCol{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--k-text-soft)}
.k-compare__brand{display:block;font-size:14px;font-weight:800;color:var(--k-text-strong)}
.k-compare__tag{
  display:inline-flex;margin-top:4px;padding:4px 8px;border-radius:999px;
  font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  background:rgba(124,255,178,.12);border:1px solid rgba(124,255,178,.22);color:rgba(124,255,178,.95);
}
.k-compare__rowN{
  display:inline-flex;min-width:26px;margin-right:8px;
  font-size:11px;font-weight:800;color:rgba(53,211,255,.85);
}
.k-compare__meter{
  display:block;width:100%;max-width:72px;height:8px;border-radius:999px;
  background:rgba(255,255,255,.08);position:relative;overflow:hidden;
}
.k-compare__meter:after{
  content:"";position:absolute;inset:0 auto 0 0;border-radius:inherit;
}
.k-compare__meter.is-full:after{width:100%;background:linear-gradient(90deg, rgba(53,211,255,.95), rgba(124,255,178,.9))}
.k-compare__meter.is-part:after{width:42%;background:linear-gradient(90deg, rgba(255,196,86,.9), rgba(255,138,138,.75))}
.k-compare__meter.is-none:after{width:16%;background:rgba(255,255,255,.18)}
.k-compare__row:hover{background:rgba(255,255,255,.02)}

/* Section head — inline variant (split columns) */
.k-section__head--inline{
  padding:0;margin-bottom:16px;
  background:none;border:none;box-shadow:none;
  overflow:visible;
}
.k-section__head--inline:before,
.k-section__head--inline:after{display:none}
.k-section__head--inline .k-sectionTitle{
  max-width:none;margin-bottom:10px;
}
.k-section__head--inline .k-sectionLead{margin-top:0}
.k-section__head--inline .k-sectionTitle:after{width:88px;margin-top:12px}

/* Testimonials grid */
.k-reviews{display:grid;gap:14px}
.k-review{
  margin:0;padding:20px 20px 18px;border-radius:22px;
  background:linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 48px rgba(0,0,0,.28);
  display:flex;flex-direction:column;gap:14px;
  min-height:100%;
}
.k-review--featured{
  background:
    linear-gradient(135deg, rgba(53,211,255,.10), rgba(124,92,255,.08)),
    rgba(255,255,255,.03);
  border-color:rgba(53,211,255,.22);
}
.k-review__top{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.k-stars{display:inline-flex;gap:2px;line-height:1}
.k-stars__s{font-size:14px;color:rgba(255,255,255,.22)}
.k-stars__s.is-on{color:#FFD76A;text-shadow:0 0 12px rgba(255,215,106,.35)}
.k-review__badge{
  font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  padding:5px 9px;border-radius:999px;
  background:rgba(124,255,178,.10);border:1px solid rgba(124,255,178,.22);
  color:rgba(124,255,178,.95);
}
.k-review__quote{margin:0;flex:1}
.k-review__quote p{
  margin:0;font-size:16px;line-height:1.65;color:var(--k-text-body);
}
.k-review__quote p:before{content:"“";color:rgba(53,211,255,.75);font-weight:800;margin-right:2px}
.k-review__quote p:after{content:"”";color:rgba(53,211,255,.75);font-weight:800;margin-left:2px}
.k-review--featured .k-review__quote p{font-size:18px;line-height:1.6}
.k-review__foot{display:flex;align-items:center;gap:12px;margin-top:auto;padding-top:4px}
.k-review__avatar{width:48px;height:48px;border-radius:16px;flex-shrink:0}
.k-review__who{display:flex;flex-direction:column;gap:3px;min-width:0}
.k-review__who strong{font-size:15px;color:var(--k-text-strong)}
.k-review__who span{font-size:13px;color:var(--k-text-soft);line-height:1.35}
.k-reviews__grid{display:grid;gap:12px;grid-template-columns:1fr}
.k-reviews__note{
  margin:16px 0 0;font-size:12px;line-height:1.5;color:var(--k-text-soft);
  text-align:center;max-width:56ch;margin-inline:auto;
}

/* Global reach — mobile-first (fixes overflow on small screens) */
.k-global{
  overflow-x:clip;
  width:100%;
  max-width:100%;
}
.k-global > .k-container{
  width:100%;
  max-width:100%;
  margin-inline:auto;
  padding-inline:14px;
  box-sizing:border-box;
}
.k-global__layout{
  display:grid;
  gap:20px;
  width:100%;
  min-width:0;
  max-width:100%;
}
.k-global__copy{
  width:100%;
  min-width:0;
  max-width:100%;
  overflow:hidden;
  box-sizing:border-box;
}
.k-global .k-section__head--styled{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  margin:0 0 14px;
  padding:14px 14px 14px 16px;
}
.k-global .k-section__head--styled:after{display:none}
.k-global .k-sectionTitle{
  max-width:100%;
  font-size:clamp(22px,5.5vw,36px);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.k-global .k-sectionLead{
  max-width:100%;
  font-size:15px;
  line-height:1.55;
}
.k-global__metrics{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  width:100%;
  max-width:100%;
  margin:0 0 14px;
  box-sizing:border-box;
}
.k-global__metric{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-align:left;
}
.k-global__metricN{
  display:block;
  flex-shrink:0;
  font-size:clamp(20px,5vw,28px);
  font-weight:800;
  letter-spacing:-.4px;
  background:linear-gradient(135deg,#fff,rgba(53,211,255,.95));
  -webkit-background-clip:text;background-clip:text;
  color:transparent;
}
.k-global__metricL{
  display:block;
  margin:0;
  flex:1;
  min-width:0;
  font-size:12px;
  color:var(--k-text-soft);
  line-height:1.35;
  text-align:right;
}
.k-countryCloud{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.k-countryPill{
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  font-size:13px;
  color:var(--k-text-body);
}
.k-countryPill__flag{font-size:16px;line-height:1;flex-shrink:0}
.k-countryPill__name{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.k-global__visual{
  width:100%;
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
}
.k-split__media--global{
  width:100%;
  max-width:100%;
  min-height:220px;
  border-radius:var(--k-radius-xl);
  overflow:hidden;
}
.k-global__badge{
  position:absolute;left:12px;right:12px;bottom:12px;z-index:2;
  max-width:calc(100% - 24px);
  padding:8px 12px;border-radius:999px;
  font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  background:rgba(7,10,18,.72);border:1px solid rgba(53,211,255,.25);
  color:rgba(234,240,255,.9);backdrop-filter:blur(10px);
  text-align:center;
}
@media (min-width: 480px){
  .k-countryCloud{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (min-width: 860px){
  .k-global > .k-container{
    width:min(1200px,calc(100% - 40px));
    padding-inline:0;
  }
  .k-global .k-section__head--styled:after{
    display:block;
    right:-40px;top:-50px;width:180px;height:180px;
  }
  .k-global__layout{
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:24px;
  }
  .k-global__metrics{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-bottom:18px;
  }
  .k-global__metric{
    display:block;
    padding:14px 12px;
    text-align:center;
  }
  .k-global__metricL{margin-top:4px;text-align:center}
  .k-countryCloud{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }
  .k-countryPill{
    width:auto;
    max-width:none;
    border-radius:999px;
    padding:8px 12px;
  }
  .k-split__media--global{min-height:340px}
  .k-global__badge{left:16px;right:auto;max-width:none;text-align:left}
}

/* Device + security columns */
.k-device__copy,.k-security__copy{min-width:0;display:flex;flex-direction:column;gap:0}
.k-device__bul{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}
.k-device__grid{align-items:center}
.k-split__media--device{min-height:320px;border-radius:var(--k-radius-xl)}
.k-securityVisual{
  position:relative;z-index:1;height:100%;min-height:280px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:28px 22px;gap:16px;
}
.k-securityVisual__icon{
  width:88px;height:88px;border-radius:24px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, rgba(53,211,255,.18), rgba(124,92,255,.16));
  border:1px solid rgba(53,211,255,.25);
  box-shadow:0 0 40px rgba(53,211,255,.15);
}
.k-securityVisual__icon .k-ic{color:rgba(53,211,255,.95)}
.k-securityVisual__title{
  margin:0;font-size:18px;font-weight:750;color:var(--k-text-strong);max-width:22ch;
}
.k-securityVisual__chips{
  list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:8px;justify-content:center;
}
.k-securityVisual__chips li{
  font-size:11px;font-weight:700;letter-spacing:.04em;
  padding:7px 11px;border-radius:999px;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);
  color:rgba(234,240,255,.86);
}
.k-list--checks{list-style:none;padding:0;margin:12px 0 0}
.k-list--checks li{
  position:relative;padding-left:26px;margin-bottom:10px;color:var(--k-text-body);font-size:15px;line-height:1.5;
}
.k-list--checks li:before{
  content:"✓";position:absolute;left:0;top:0;
  color:rgba(124,255,178,.95);font-weight:800;
}
.k-card h3{font-size:18px}
.k-card p{font-size:15px;line-height:1.6}
.k-accQ{font-size:16px;font-weight:650}
.k-accA__inner{font-size:15px;line-height:1.65}

@media (min-width: 860px){
  .k-awardGrid{grid-template-columns:repeat(4,1fr)}
  .k-countryGrid{grid-template-columns:repeat(3,1fr)}
  .k-reviews__grid{grid-template-columns:repeat(2,1fr)}
  .k-review--featured{grid-column:1/-1}
  .k-global__grid,.k-support__grid{grid-template-columns:1fr 1fr}
}
@media (min-width: 1100px){
  .k-reviews__grid{grid-template-columns:repeat(3,1fr)}
  .k-review--featured{grid-column:span 2}
}

/* Performance: defer paint for below-fold groups on landing */
.k-landing .k-group:not(.k-group--hero){
  content-visibility:auto;
  contain-intrinsic-size:auto 520px;
}

@media (max-width: 719px){
  .k-marquee__slide--coin .k-coinStrip__logo{
    filter:none;
    opacity:.9;
  }
}

@media (prefers-reduced-motion: reduce){
  .k-marquee__track,
  .k-bg__mesh,
  .k-hero__glow,
  .k-btn--pulse{
    animation:none!important;
  }
  .k-marquee__track{transform:none!important}
  [data-k-reveal]{opacity:1!important;transform:none!important}
}
