  :root {
    --black: #030303;
    --graphite: #111827;
    --graphite-2: #0b1120;
    --white: #ffffff;
    --slate: #94a3b8;
    --slate-dark: #475569;
    --cyan: #22c7f2;
    --blue: #3b82f6;
    --violet: #7c3aed;
    --grad: linear-gradient(120deg, #22c7f2 0%, #3b82f6 50%, #7c3aed 100%);
    --grad-soft: linear-gradient(120deg, rgba(34,199,242,.14), rgba(59,130,246,.14), rgba(124,58,237,.14));
    --radius-lg: 24px;
    --radius-md: 16px;
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }

  .container { width: min(1180px, 92%); margin: 0 auto; }

  .grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 16px; border-radius: 999px;
  }
  .eyebrow::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--grad);
  }
  .dark-section .eyebrow {
    color: var(--cyan);
    background: rgba(34,199,242,.08);
    border: 1px solid rgba(34,199,242,.22);
  }
  .light-section .eyebrow {
    color: var(--violet);
    background: rgba(124,58,237,.07);
    border: 1px solid rgba(124,58,237,.2);
  }

  .section { position: relative; padding: 110px 0; }
  .dark-section { background: var(--black); color: var(--white); }
  .light-section { background: #f6f8fc; color: #0c1222; }

  .section-head { max-width: 640px; margin-bottom: 56px; }
  .section-head h2 { font-size: clamp(30px, 4.2vw, 46px); margin: 18px 0 16px; font-weight: 700; }
  .dark-section .section-head p { color: var(--slate); font-size: 17px; }
  .light-section .section-head p { color: var(--slate-dark); font-size: 17px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  /* Keep selected headlines on one line at desktop widths (clamp grows with viewport). */
  .section-head.center:has(.headline-single) { max-width: min(960px, 100%); }
  .headline-single { white-space: nowrap; }
  .mobile-br { display: none; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-display); font-weight: 600; font-size: 15px;
    padding: 14px 30px; border-radius: 999px; border: none; cursor: pointer;
    text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .btn-primary {
    background: var(--grad); color: #fff;
    box-shadow: 0 8px 30px rgba(59,130,246,.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(124,58,237,.45); }
  .btn-ghost {
    background: rgba(255,255,255,.06); color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
  }
  .btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
  .btn-dark { background: #0c1222; color: #fff; }
  .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(12,18,34,.3); }

  /* ---------- Nav (liquid glass) ---------- */
  .nav {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
    width: min(1180px, 94%); z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 22px; border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03) 40%, rgba(255,255,255,.06) 75%, rgba(255,255,255,.1));
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    box-shadow:
      0 10px 36px rgba(0,0,0,.4),
      inset 0 1px 0 rgba(255,255,255,.28),
      inset 0 -1px 0 rgba(255,255,255,.06);
    transition: background .3s ease, box-shadow .3s ease;
  }
  .nav::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background:
      radial-gradient(120% 90% at 18% 0%, rgba(255,255,255,.16), transparent 42%),
      radial-gradient(80% 110% at 85% 100%, rgba(124,58,237,.12), transparent 55%);
  }
  .nav.scrolled {
    background: linear-gradient(135deg, rgba(10,14,26,.66), rgba(10,14,26,.5) 45%, rgba(10,14,26,.62));
    box-shadow:
      0 14px 44px rgba(0,0,0,.55),
      inset 0 1px 0 rgba(255,255,255,.22),
      inset 0 -1px 0 rgba(255,255,255,.05);
  }
  .logo { display: flex; align-items: center; text-decoration: none; }
  .logo img { height: 30px; width: auto; display: block; }
  .footer .logo img { height: 38px; }
  .nav-links { display: flex; gap: 6px; list-style: none; }
  .nav-links a {
    color: var(--slate); text-decoration: none; font-size: 14.5px; font-weight: 500;
    padding: 8px 14px; border-radius: 999px; transition: color .2s, background .2s;
  }
  .nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .nav .btn { padding: 10px 22px; font-size: 14px; }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: 150px 0 100px;
    background:
      radial-gradient(ellipse 52% 42% at 10% 12%, rgba(124,58,237,.22), transparent 68%),
      radial-gradient(ellipse 46% 50% at 88% 24%, rgba(34,199,242,.13), transparent 70%),
      radial-gradient(ellipse 62% 46% at 42% 108%, rgba(59,130,246,.18), transparent 70%),
      linear-gradient(160deg, #06030e 0%, var(--black) 45%, #020617 100%);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
  }
  .light-beam {
    position: absolute; height: 190px; width: 150%; left: -25%;
    filter: blur(46px); pointer-events: none;
  }
  .light-beam.lb1 {
    top: 4%; transform: rotate(-9deg); opacity: .3;
    background: linear-gradient(90deg, transparent 5%, rgba(34,199,242,.4) 35%, rgba(59,130,246,.35) 60%, transparent 95%);
  }
  .light-beam.lb2 {
    top: 34%; transform: rotate(7deg); opacity: .22;
    background: linear-gradient(90deg, transparent 10%, rgba(124,58,237,.42) 55%, transparent 92%);
  }
  @keyframes drift {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(50px, 36px) scale(1.12); }
  }
  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
  }

  /* Tech circuit lines */
  .hero-circuit { position: absolute; inset: 0; width: 100%; height: 100%; }
  .circuit-base path { fill: none; stroke: rgba(148,163,184,.14); stroke-width: 1; }
  .circuit-pulse path {
    fill: none; stroke: url(#circuitGrad); stroke-width: 1.5; stroke-linecap: round;
    stroke-dasharray: 70 1600; stroke-dashoffset: 70;
    animation: circuitflow 7s linear infinite; opacity: .85;
  }
  .circuit-pulse path:nth-child(2) { animation-delay: 1.4s; }
  .circuit-pulse path:nth-child(3) { animation-delay: 2.6s; }
  .circuit-pulse path:nth-child(4) { animation-delay: 3.8s; }
  .circuit-pulse path:nth-child(5) { animation-delay: .8s; }
  .circuit-pulse path:nth-child(6) { animation-delay: 4.6s; }
  @keyframes circuitflow { from { stroke-dashoffset: 70; } to { stroke-dashoffset: -1600; } }
  .circuit-nodes circle { fill: rgba(34,199,242,.55); animation: nodeblink 3.2s ease-in-out infinite; }
  .circuit-nodes circle:nth-child(2n) { fill: rgba(124,58,237,.55); animation-delay: 1.6s; }
  .circuit-nodes circle:nth-child(3n) { animation-delay: .9s; }
  @keyframes nodeblink { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }

  .hero-inner {
    position: relative; z-index: 2;
  }
  .hero-inner > div:first-child { max-width: 46%; }
  .hero h1 { font-size: clamp(36px, 4.6vw, 58px); font-weight: 700; margin: 26px 0 22px; }
  .hero-sub { color: var(--slate); font-size: 17px; max-width: 560px; margin: 0 0 14px; }
  .hero-sub-2 { color: var(--slate); font-size: 15px; max-width: 540px; margin: 0 0 34px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 38px; }
  .hero-badge {
    font-size: 13px; font-weight: 500; color: var(--slate);
    padding: 8px 16px; border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
  }
  .hero-badge strong { color: #fff; font-weight: 600; }

  @keyframes railflow { to { stroke-dashoffset: -72; } }

  /* Hero map: frameless Asia-Pacific landmass covering the right side */
  .map-wrap {
    position: absolute; top: 0; right: 0; bottom: 0; width: 58%;
    z-index: 1;
  }
  .map-wrap::before {
    content: ""; position: absolute; inset: -6%;
    background: radial-gradient(ellipse 70% 62% at 60% 46%, rgba(38,86,166,.16), transparent 72%);
    pointer-events: none;
  }
  #marketMap {
    position: absolute; inset: 0; width: 100%; height: 100%;
    -webkit-mask-image: radial-gradient(ellipse 88% 82% at 62% 50%, #000 42%, transparent 80%);
    mask-image: radial-gradient(ellipse 88% 82% at 62% 50%, #000 42%, transparent 80%);
  }

  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ---------- How it works (light) ---------- */
  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .step-card {
    position: relative; background: #fff; border-radius: var(--radius-lg);
    padding: 34px 28px; border: 1px solid #e5eaf3;
    box-shadow: 0 6px 24px rgba(15,23,42,.05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
  }
  .step-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(59,130,246,.14); border-color: rgba(59,130,246,.35); }
  /* Relay bar: fills card 1, hands over to card 2, then 3, then 4, loops */
  .step-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad);
    transform: scaleX(0); transform-origin: left;
    animation: relay 7.2s linear infinite;
  }
  @keyframes relay {
    0% { transform: scaleX(0); opacity: 1; }
    23% { transform: scaleX(1); opacity: 1; }
    28% { transform: scaleX(1); opacity: 0; }
    28.01%, 100% { transform: scaleX(0); opacity: 0; }
  }
  .steps-grid .step-card:nth-child(2)::before { animation-delay: 1.8s; }
  .steps-grid .step-card:nth-child(3)::before { animation-delay: 3.6s; }
  .steps-grid .step-card:nth-child(4)::before { animation-delay: 5.4s; }
  .step-num {
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    color: var(--blue); letter-spacing: .1em; margin-bottom: 18px; display: block;
  }
  .step-icon {
    width: 52px; height: 52px; border-radius: 16px; background: var(--grad-soft);
    border: 1px solid rgba(59,130,246,.2);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  }
  .step-icon svg { width: 24px; height: 24px; stroke: var(--blue); }
  .step-card h3 { font-size: 20px; margin-bottom: 10px; color: #0c1222; }
  .step-card p { font-size: 14.5px; color: var(--slate-dark); }
  .steps-cta { margin-top: 48px; text-align: center; }
  .steps-cta p { color: var(--slate-dark); margin-bottom: 18px; font-weight: 500; }

  /* Easy setup background decor */
  #about { overflow: hidden; }
  #about .container { position: relative; z-index: 1; }
  .setup-bg { position: absolute; inset: 0; pointer-events: none; opacity: .72; }
  .setup-bg svg { position: absolute; inset: 17% 0 auto; width: 100%; height: 52%; }
  .setup-line, .setup-branch, .setup-pulse, .setup-tick {
    fill: none; stroke-linecap: round; stroke-linejoin: round;
  }
  .setup-line.main { stroke: url(#setupGrad); stroke-width: 1.6; opacity: .32; }
  .setup-line.faint { stroke: rgba(71,85,105,.22); stroke-width: 1; stroke-dasharray: 7 12; opacity: .42; }
  .setup-branch { stroke: rgba(59,130,246,.22); stroke-width: 1.1; stroke-dasharray: 5 10; }
  .setup-pulse { stroke: url(#setupGrad); stroke-width: 2; stroke-dasharray: 54 980; opacity: .36; animation: setupflow 6.6s linear infinite; }
  .setup-tick { stroke: rgba(12,18,34,.14); stroke-width: 1.2; }
  @keyframes setupflow { from { stroke-dashoffset: 80; } to { stroke-dashoffset: -980; } }

  /* ---------- Features (dark, liquid glass bento) ---------- */
  .features { overflow: hidden; }
  .features-bg { position: absolute; inset: 0; pointer-events: none; }
  /* Fine dot matrix across the section */
  .features-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(148,163,184,.32) 1.2px, transparent 1.7px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, #000 25%, transparent 78%);
  }
  /* Diagonal light streaks give the glass colour to refract */
  .features .light-beam.fb1 {
    top: 10%; transform: rotate(-11deg); opacity: .5;
    background: linear-gradient(90deg, transparent 8%, rgba(34,199,242,.42) 38%, rgba(59,130,246,.36) 62%, transparent 94%);
  }
  .features .light-beam.fb2 {
    top: 46%; transform: rotate(8deg); opacity: .42;
    background: linear-gradient(90deg, transparent 6%, rgba(124,58,237,.44) 50%, rgba(59,130,246,.3) 76%, transparent 96%);
  }
  .features .light-beam.fb3 {
    top: 78%; transform: rotate(-6deg); opacity: .36;
    background: linear-gradient(90deg, transparent 12%, rgba(59,130,246,.4) 55%, transparent 90%);
  }
  /* Tech circuit lines (same motif as the hero) */
  .features-circuit { position: absolute; inset: 0; width: 100%; height: 100%; }
  /* Sparse currency glyph print */
  .fx-glyph {
    position: absolute; font-family: var(--font-display); font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    opacity: .26; user-select: none;
  }
  .fx-glyph::before { content: attr(data-symbol); }
  .fx-glyph.g1 { top: 12%; left: 6%; font-size: 74px; transform: rotate(-10deg); }
  .fx-glyph.g2 { top: 30%; right: 8%; font-size: 60px; transform: rotate(8deg); }
  .fx-glyph.g3 { bottom: 22%; left: 12%; font-size: 66px; transform: rotate(6deg); }
  .fx-glyph.g4 { bottom: 8%; right: 26%; font-size: 82px; transform: rotate(-7deg); }
  .fx-glyph.g5 { top: 55%; left: 42%; font-size: 54px; transform: rotate(12deg); }
  .features .container { position: relative; z-index: 1; }
  .bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .feature-card {
    position: relative;
    background: linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.03) 45%, rgba(255,255,255,.07));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    backdrop-filter: blur(28px) saturate(175%);
    -webkit-backdrop-filter: blur(28px) saturate(175%);
    box-shadow: 0 20px 50px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(255,255,255,.05);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    overflow: hidden;
  }
  .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34,199,242,.45);
    box-shadow: 0 24px 60px rgba(59,130,246,.28), inset 0 1px 0 rgba(255,255,255,.3);
  }
  .feature-card::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(59,130,246,.12), transparent 60%);
    opacity: 0; transition: opacity .3s ease; pointer-events: none;
  }
  .feature-card:hover::after { opacity: 1; }
  .feature-card.wide { grid-column: span 2; }
  .feature-head {
    display: flex; align-items: center; justify-content: flex-end; gap: 12px;
    margin-bottom: 16px;
  }
  .feature-head .feature-tag { margin-bottom: 0; }
  .feature-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    color: inherit;
  }
  .feature-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }
  .feature-tag {
    display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
    background: rgba(34,199,242,.1); color: var(--cyan);
    border: 1px solid rgba(34,199,242,.25);
  }
  .feature-card h3 { display: flex; align-items: center; gap: 9px; font-size: 19px; margin-bottom: 8px; color: #fff; }
  .feature-card p { font-size: 14px; color: var(--slate); }
  .feature-stat { font-family: var(--font-display); font-size: 34px; font-weight: 700; margin-bottom: 6px; }

  /* ---------- Coverage (light) ---------- */
  .coverage-stats { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: -26px 0 44px; }
  .coverage-stat {
    display: inline-flex; align-items: baseline; gap: 8px;
    background: #fff; border: 1px solid #e5eaf3; border-radius: 999px;
    padding: 10px 22px; box-shadow: 0 8px 22px rgba(15,23,42,.05);
  }
  .coverage-stat b {
    font-family: var(--font-display); font-size: 19px; font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .coverage-stat span { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-dark); }
  #coverage { overflow: hidden; }
  .coverage-deco { position: absolute; pointer-events: none; color: #0c1222; }
  .coverage-deco.qr { top: 40px; right: -30px; width: 280px; opacity: .06; transform: rotate(8deg); }
  .coverage-deco.phone { bottom: -36px; left: -14px; width: 220px; opacity: .07; transform: rotate(-10deg); }
  #coverage .container { position: relative; z-index: 1; }
  .coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .currency-card {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 16px;
    background: #fff; border: 1px solid #e5eaf3; border-radius: var(--radius-lg);
    padding: 26px 28px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .currency-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad); opacity: 0; transition: opacity .3s ease;
  }
  .currency-card::after {
    content: attr(data-symbol); position: absolute; right: 10px; bottom: -26px;
    font-family: var(--font-display); font-size: 110px; font-weight: 700; line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    opacity: .07; pointer-events: none;
  }
  .currency-card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,.35); box-shadow: 0 22px 48px rgba(124,58,237,.14); }
  .currency-card:hover::before { opacity: 1; }
  .cur-top { display: flex; align-items: center; gap: 16px; }
  .currency-code { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: #0c1222; line-height: 1.2; }
  .currency-market { font-size: 14px; color: var(--slate-dark); }
  .cur-flag { margin-left: auto; align-self: center; width: 42px; height: 30px; object-fit: cover; border-radius: 7px; border: 1px solid rgba(12,18,34,.12); box-shadow: 0 4px 12px rgba(12,18,34,.14); }
  .cur-methods { display: flex; flex-wrap: wrap; gap: 10px; position: relative; }
  .method-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: #334155;
    background: #f6f8fc; border: 1px solid #dde4ef; border-radius: 13px;
    padding: 10px 16px; white-space: nowrap;
    transition: border-color .25s ease, background .25s ease;
  }
  .currency-card:hover .method-tag { border-color: rgba(59,130,246,.3); background: #eef4ff; }
  .coverage-logo-carousel {
    position: relative; overflow: hidden; margin: 34px 0 0; padding: 16px 0;
    border-top: 1px solid #e5eaf3; border-bottom: 1px solid #e5eaf3;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  }
  .coverage-logo-track { display: flex; align-items: center; gap: 18px; width: max-content; animation: marquee 34s linear infinite; }
  @keyframes marquee { to { transform: translateX(-50%); } }
  .coverage-logo {
    width: 138px; height: 58px; border-radius: 16px; background: #fff;
    border: 1px solid #e0e7f2; box-shadow: 0 10px 26px rgba(15,23,42,.06);
    display: flex; align-items: center; justify-content: center; padding: 12px 18px;
  }
  .coverage-logo img { max-width: 100%; max-height: 32px; object-fit: contain; }
  .coverage-logo img[alt="DuitNow QR"] { max-height: 42px; }
  .coverage-logo img[alt="JazzCash"], .coverage-logo img[alt="Easypaisa"] { max-height: 38px; }
  .coverage-logo img[alt="Maya"], .coverage-logo img[alt="VietQR"], .coverage-logo img[alt="KHQR"] { max-height: 25px; }
  .coverage-note { text-align: center; margin-top: 24px; color: var(--slate-dark); font-size: 14px; }

  /* ---------- Settlement / API (dark split) ---------- */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .split-content h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 18px 0 18px; }
  .split-content > p { color: var(--slate); font-size: 16.5px; margin-bottom: 28px; max-width: 500px; }
  .check-list { list-style: none; display: grid; gap: 14px; }
  .check-list li { display: flex; gap: 14px; align-items: flex-start; color: #e2e8f0; font-size: 15px; }
  .check-list li strong { color: #fff; }
  .check-icon {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 8px; margin-top: 1px;
    background: var(--grad); display: flex; align-items: center; justify-content: center;
  }
  .check-icon svg { width: 13px; height: 13px; stroke: #fff; stroke-width: 3; }

  #settlement { position: relative; overflow: hidden; }
  .settle-bg { position: absolute; inset: 0; pointer-events: none; }
  .settle-hexgrid {
    position: absolute; inset: 0; width: 100%; height: 100%; opacity: .75;
    -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 45%, #000 32%, transparent 82%);
    mask-image: radial-gradient(ellipse 92% 88% at 50% 45%, #000 32%, transparent 82%);
  }
  #settlement .light-beam.sb1 {
    top: 8%; transform: rotate(-8deg); opacity: .2;
    background: linear-gradient(90deg, transparent 8%, rgba(34,199,242,.38) 40%, rgba(59,130,246,.3) 62%, transparent 94%);
  }
  #settlement .light-beam.sb2 {
    bottom: 4%; transform: rotate(6deg); opacity: .16;
    background: linear-gradient(90deg, transparent 10%, rgba(124,58,237,.4) 55%, transparent 92%);
  }
  .settle-glyph {
    position: absolute; font-family: var(--font-display); font-weight: 700; line-height: 1;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .settle-glyph.sg1 { top: 10%; left: 3%; font-size: 92px; transform: rotate(-10deg); opacity: .13; }
  .settle-glyph.sg2 { top: 58%; left: 45%; font-size: 64px; transform: rotate(14deg); opacity: .1; }
  .settle-glyph.sg3 { bottom: 5%; right: 3%; font-size: 120px; transform: rotate(8deg); opacity: .09; }
  .settle-hash { position: absolute; font-family: "Consolas", "SF Mono", ui-monospace, monospace; font-size: 12px; letter-spacing: .14em; color: rgba(148,163,184,.35); white-space: nowrap; }
  .settle-hash.sh1 { right: 22px; top: 30%; writing-mode: vertical-rl; }
  .settle-hash.sh2 { right: 26px; top: 10%; }
  .settle-hash.sh3 { right: 62px; top: 50%; }
  .settle-hash.sh4 { right: 320px; bottom: 3.5%; }
  #settlement .container { position: relative; z-index: 1; }
  .flow-visual { position: relative; }
  .settle-svg { display: block; width: 100%; height: auto; }
  .s-rail {
    fill: none; stroke: url(#setGrad); stroke-width: 1.6; stroke-linecap: round;
    stroke-dasharray: 5 9; animation: railflow 2.6s linear infinite; opacity: .85;
  }
  .s-chip-box { fill: rgba(17,24,39,.9); stroke: rgba(255,255,255,.16); rx: 19; }
  .s-chip-text { fill: #e2e8f0; font-family: "Space Grotesk", sans-serif; font-size: 14px; font-weight: 600; text-anchor: middle; }
  .s-hub-ring { fill: rgba(17,24,39,.85); stroke: url(#setGrad); stroke-width: 2; }
  .s-hub-glow { fill: none; stroke: rgba(59,130,246,.5); stroke-width: 1.5; }
  .s-hub-title { fill: #fff; font-family: "Space Grotesk", sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 1.2px; text-anchor: middle; }
  .s-hub-sub { fill: #94a3b8; font-family: "Plus Jakarta Sans", sans-serif; font-size: 8.5px; letter-spacing: 2.2px; text-anchor: middle; }
  .s-hex { fill: rgba(17,24,39,.78); stroke: url(#setGrad); stroke-width: 2.2; stroke-linejoin: round; }
  .s-hex-inner { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 1; stroke-linejoin: round; }
  .s-orbit { fill: none; stroke: rgba(148,163,184,.32); stroke-width: 1; stroke-dasharray: 3 7; }
  .s-wallet-glyph rect, .s-wallet-glyph path { fill: none; stroke: #e2e8f0; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .s-side-title { fill: #fff; font-family: "Space Grotesk", sans-serif; font-size: 17px; font-weight: 700; text-anchor: start; }
  .s-side-sub { fill: #94a3b8; font-family: "Plus Jakarta Sans", sans-serif; font-size: 12.5px; text-anchor: start; }
  .s-addr-chip { fill: rgba(34,199,242,.08); stroke: rgba(148,163,184,.3); }
  .s-addr-text { fill: #a5b4cd; font-family: "Consolas", "SF Mono", ui-monospace, monospace; font-size: 11.5px; letter-spacing: .08em; text-anchor: middle; }
  .s-instant-chip { fill: rgba(34,199,242,.12); stroke: rgba(34,199,242,.5); }
  .s-instant-text { fill: #22c7f2; font-family: "Space Grotesk", sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: 1.6px; text-anchor: middle; }
  .s-coin-text { fill: #fff; font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; text-anchor: middle; }
  .s-note { fill: #64748b; font-family: "Plus Jakarta Sans", sans-serif; font-size: 11px; text-anchor: middle; }

  /* ---------- FAQ (light) ---------- */
  .faq-wrap { max-width: 780px; margin: 0 auto; }
  .faq-item {
    background: #fff; border: 1px solid #e5eaf3; border-radius: var(--radius-md);
    margin-bottom: 14px; overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
  }
  .faq-item.open { border-color: rgba(59,130,246,.4); box-shadow: 0 12px 32px rgba(59,130,246,.1); }
  .faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 26px; background: none; border: none; cursor: pointer; text-align: left;
    font-family: var(--font-display); font-size: 16.5px; font-weight: 600; color: #0c1222;
  }
  .faq-q .chev { flex-shrink: 0; width: 30px; height: 30px; border-radius: 10px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; transition: transform .3s ease; }
  .faq-q .chev svg { width: 14px; height: 14px; stroke: var(--blue); stroke-width: 2.5; }
  .faq-item.open .chev { transform: rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
  .faq-a p { padding: 0 26px 24px; color: var(--slate-dark); font-size: 15px; }
  .faq-more { text-align: center; margin-top: 36px; color: var(--slate-dark); }
  .faq-more a { color: var(--blue); font-weight: 600; text-decoration: none; }
  .faq-more a:hover { text-decoration: underline; }

  /* ---------- CTA band ---------- */
  .cta-band { position: relative; overflow: hidden; }
  .cta-band::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(600px circle at 20% 30%, rgba(34,199,242,.16), transparent 60%),
      radial-gradient(600px circle at 80% 70%, rgba(124,58,237,.2), transparent 60%);
    pointer-events: none;
  }
  .cta-inner {
    position: relative; text-align: center;
    background: rgba(17,24,39,.45);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 32px; padding: 72px 40px;
    backdrop-filter: blur(24px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }
  .cta-inner .eyebrow { margin-bottom: 22px; }
  .cta-inner h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 0; }
  .cta-inner p { color: var(--slate); font-size: 17px; margin-bottom: 34px; }

  /* ---------- Contact (light) ---------- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
  .contact-info h3 { font-size: 26px; color: #0c1222; margin-bottom: 12px; }
  .contact-info > p { color: var(--slate-dark); font-size: 15.5px; margin-bottom: 30px; }
  .contact-channel {
    display: flex; align-items: center; gap: 16px;
    background: #fff; border: 1px solid #e5eaf3; border-radius: var(--radius-md);
    padding: 18px 20px; margin-bottom: 14px; text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .contact-channel:hover { transform: translateX(4px); border-color: rgba(59,130,246,.4); box-shadow: 0 10px 26px rgba(59,130,246,.1); }
  .cc-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .cc-icon svg { width: 21px; height: 21px; stroke: #fff; }
  .cc-label { font-family: var(--font-display); font-size: 13px; color: var(--slate-dark); font-weight: 500; }
  .cc-value { font-family: var(--font-body); font-size: 15.5px; font-weight: 600; color: #0c1222; }

  .contact-form {
    background: #fff; border: 1px solid #e5eaf3; border-radius: var(--radius-lg);
    padding: 38px 34px; box-shadow: 0 20px 50px rgba(15,23,42,.07);
  }
  .contact-form h3 { font-size: 22px; color: #0c1222; margin-bottom: 8px; }
  .contact-form > p { color: var(--slate-dark); font-size: 14px; margin-bottom: 26px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: #0c1222; margin-bottom: 7px; }
  .form-group input, .form-group textarea {
    width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: 14.5px;
    border: 1px solid #dde4ef; border-radius: 12px; background: #f8fafd; color: #0c1222;
    transition: border-color .2s ease, box-shadow .2s ease; resize: vertical;
  }
  .form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,.14); background: #fff;
  }
  .contact-form .btn { width: 100%; margin-top: 6px; }

  /* ---------- Footer ---------- */
  .footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.07); padding: 70px 0 34px; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
  .footer-brand p { color: var(--slate); font-size: 14px; margin-top: 16px; max-width: 320px; }
  .footer-social { display: flex; gap: 12px; margin-top: 22px; }
  .footer-social a {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    color: #e2e8f0; text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  }
  .footer-social a svg { width: 18px; height: 18px; fill: currentColor; }
  .footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(34,199,242,.45);
    background: rgba(34,199,242,.1);
    color: #fff;
    box-shadow: 0 10px 24px rgba(59,130,246,.2);
  }
  .footer h4 { font-size: 12.5px; letter-spacing: .04em; color: var(--slate); margin-bottom: 18px; }
  .footer ul { list-style: none; display: grid; gap: 11px; }
  .footer ul a { color: #cbd5e1; text-decoration: none; font-size: 14.5px; transition: color .2s; }
  .footer ul a:hover { color: var(--cyan); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    padding-top: 26px; border-top: 1px solid rgba(255,255,255,.07);
    color: var(--slate); font-size: 13.5px;
  }

  /* ---------- Reveal on scroll ---------- */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1020px) {
    .hero { padding-bottom: 0; }
    .hero-inner {
      position: relative; z-index: 2;
      padding-bottom: 4px;
    }
    .hero-inner > div:first-child {
      max-width: none; text-align: center;
    }
    .hero-sub, .hero-sub-2 { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-badges { justify-content: center; }
    /* Map sits directly under the CTA — soft top fade, no extra gradient slab. */
    .map-wrap {
      position: relative; width: 100%; height: 440px;
      margin-top: 8px; z-index: 1;
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 100%);
      mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 100%);
    }
    #marketMap {
      -webkit-mask-image: none;
      mask-image: none;
    }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .split, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    /* Settlement mobile: remove hash text only; keep ₮ marks; lift hex + beams a bit. */
    .settle-hash { display: none !important; }
    .settle-hexgrid { opacity: .42; }
    #settlement .light-beam.sb1 { opacity: .16; }
    #settlement .light-beam.sb2 { opacity: .13; }
    .settle-glyph.sg1 { opacity: .1; }
    .settle-glyph.sg2 { opacity: .08; }
    .settle-glyph.sg3 { opacity: .08; }
  }
  @media (max-width: 680px) {
    .section { padding: 80px 0; }
    .nav-links, .nav .btn-primary { display: none; }
    .nav-toggle { display: block; }
    .nav.open .nav-links {
      display: flex; flex-direction: column; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
      background: rgba(3,3,3,.95); border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
      padding: 16px; backdrop-filter: blur(20px);
    }
    .steps-grid, .bento, .form-row, .coverage-grid { grid-template-columns: 1fr; }
    .feature-card.wide { grid-column: span 1; }
    .hero { padding: 130px 0 0; }
    .hero-inner { padding-bottom: 0; }
    .map-wrap { height: 340px; margin-top: 4px; }
    .coverage-deco.qr { width: 180px; }
    .coverage-deco.phone { display: none; }
    .cta-inner { padding: 52px 24px; }
    .headline-single { white-space: normal; }
    .mobile-br { display: block; }
  }
/* ---------- Sub-page hero ---------- */
.page-hero {
  position: relative; background: var(--black); color: #fff;
  padding: 175px 0 95px; overflow: hidden; text-align: center;
}
.page-hero .container { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 700; margin: 22px 0 18px; }
.page-hero p { color: var(--slate); font-size: 16.5px; margin: 0 auto 14px; max-width: 700px; }
.subpage-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(34,199,242,.12), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(124,58,237,.14), transparent 34%),
    linear-gradient(160deg, #05070d, var(--black) 62%, #020617);
}
.subpage-hero .hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(148,163,184,.18) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: .22;
  -webkit-mask-image: radial-gradient(ellipse 72% 66% at 50% 42%, #000 24%, transparent 78%);
  mask-image: radial-gradient(ellipse 72% 66% at 50% 42%, #000 24%, transparent 78%);
}
.subpage-hero .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 720'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M0 180H260L330 250H560' stroke='%2394a3b8' stroke-opacity='.18'/%3E%3Cpath d='M1440 150h-250l-70 70H850' stroke='%2394a3b8' stroke-opacity='.16'/%3E%3Cpath d='M130 560h260l58-58h210' stroke='%2322c7f2' stroke-opacity='.22'/%3E%3Cpath d='M1260 560h-280l-62-62H710' stroke='%237c3aed' stroke-opacity='.2'/%3E%3Ccircle cx='330' cy='250' r='4' fill='%2322c7f2' fill-opacity='.5'/%3E%3Ccircle cx='1120' cy='220' r='4' fill='%237c3aed' fill-opacity='.5'/%3E%3Ccircle cx='448' cy='502' r='4' fill='%233b82f6' fill-opacity='.45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover; opacity: .72;
  -webkit-mask-image: radial-gradient(ellipse 86% 76% at 50% 45%, #000 22%, transparent 80%);
  mask-image: radial-gradient(ellipse 86% 76% at 50% 45%, #000 22%, transparent 80%);
}
.partner-hero .hero-bg::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 720'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1440 190H1140L1080 250H790L720 320H520' stroke='%2322c7f2' stroke-opacity='.24'/%3E%3Cpath d='M1440 330H1210L1156 384H890L838 436H590' stroke='%237c3aed' stroke-opacity='.22' stroke-dasharray='10 16'/%3E%3Cpath d='M160 520H410L470 460H660L722 398H940' stroke='%2394a3b8' stroke-opacity='.16'/%3E%3Cpath d='M1010 250V176H1188' stroke='%233b82f6' stroke-opacity='.18'/%3E%3Cpath d='M838 436V542H1080' stroke='%2322c7f2' stroke-opacity='.17'/%3E%3Ccircle cx='1080' cy='250' r='4.5' fill='%2322c7f2' fill-opacity='.55'/%3E%3Ccircle cx='838' cy='436' r='4.5' fill='%237c3aed' fill-opacity='.55'/%3E%3Ccircle cx='722' cy='398' r='4' fill='%233b82f6' fill-opacity='.5'/%3E%3Ccircle cx='1010' cy='176' r='3.5' fill='%2322c7f2' fill-opacity='.42'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .82;
  -webkit-mask-image: radial-gradient(ellipse 82% 76% at 62% 42%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 82% 76% at 62% 42%, #000 20%, transparent 78%);
}

.subpage-art {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(circle at var(--art-x, 12%) var(--art-y, 18%), rgba(34,199,242,.09), transparent 32%),
    radial-gradient(circle at var(--art-x2, 86%) var(--art-y2, 86%), rgba(124,58,237,.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}
.subpage-art::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: radial-gradient(rgba(71,85,105,.18) 1px, transparent 1.7px);
  background-size: 26px 26px; opacity: .36;
  -webkit-mask-image: radial-gradient(ellipse 80% 74% at 50% 48%, #000 24%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 74% at 50% 48%, #000 24%, transparent 80%);
}
.subpage-art::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 920 300'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 82h170l46 46h180l44-44h190l42 42h208' stroke='%233b82f6' stroke-opacity='.18'/%3E%3Cpath d='M70 218h135l36-36h150l34 34h170l38-38h210' stroke='%237c3aed' stroke-opacity='.14' stroke-dasharray='8 13'/%3E%3Cpath d='M255 128v58M460 84v72M690 126v56' stroke='%2322c7f2' stroke-opacity='.14'/%3E%3Ccircle cx='236' cy='128' r='4' fill='%2322c7f2' fill-opacity='.34'/%3E%3Ccircle cx='460' cy='84' r='4' fill='%233b82f6' fill-opacity='.3'/%3E%3Ccircle cx='690' cy='126' r='4' fill='%237c3aed' fill-opacity='.3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 760px 248px; background-position: center; background-repeat: repeat-x;
  opacity: .9;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.about-what::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1080 360'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 96H210L270 156H438L494 100H640L708 168H1020' stroke='%233b82f6' stroke-opacity='.2'/%3E%3Cpath d='M96 256H258L310 204H478L534 260H718L768 210H984' stroke='%2322c7f2' stroke-opacity='.15' stroke-dasharray='9 14'/%3E%3Cpath d='M270 156V238M494 100V48H604M708 168V248H820' stroke='%237c3aed' stroke-opacity='.14'/%3E%3Ccircle cx='270' cy='156' r='4' fill='%2322c7f2' fill-opacity='.36'/%3E%3Ccircle cx='494' cy='100' r='4' fill='%233b82f6' fill-opacity='.32'/%3E%3Ccircle cx='708' cy='168' r='4' fill='%237c3aed' fill-opacity='.32'/%3E%3C/g%3E%3C/svg%3E");
  background-size: min(980px, 92vw) auto; background-position: center 47%; background-repeat: no-repeat;
  opacity: .9;
  -webkit-mask-image: radial-gradient(ellipse 76% 68% at 50% 48%, #000 22%, transparent 76%);
  mask-image: radial-gradient(ellipse 76% 68% at 50% 48%, #000 22%, transparent 76%);
}
.about-approach::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1080 360'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M180 70H420L540 180L660 70H900' stroke='%237c3aed' stroke-opacity='.18'/%3E%3Cpath d='M180 290H420L540 180L660 290H900' stroke='%2322c7f2' stroke-opacity='.18'/%3E%3Cpath d='M540 180V88M540 180V272M420 70V132M660 290V232' stroke='%233b82f6' stroke-opacity='.14' stroke-dasharray='7 12'/%3E%3Ccircle cx='540' cy='180' r='5' fill='%233b82f6' fill-opacity='.38'/%3E%3Ccircle cx='420' cy='70' r='4' fill='%237c3aed' fill-opacity='.3'/%3E%3Ccircle cx='660' cy='290' r='4' fill='%2322c7f2' fill-opacity='.3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: min(900px, 86vw) auto; background-position: center 50%; background-repeat: no-repeat;
  opacity: .92;
  -webkit-mask-image: radial-gradient(ellipse 70% 64% at 50% 50%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 64% at 50% 50%, #000 20%, transparent 78%);
}
.partner-why::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1120 520'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M560 48V148M560 148H250L190 208H80M560 148H870L930 208H1040M560 148V278M560 278H250L190 338H80M560 278H870L930 338H1040M560 278V462' stroke='%233b82f6' stroke-opacity='.16'/%3E%3Cpath d='M270 96H410L448 134M850 96H710L672 134M270 390H410L448 352M850 390H710L672 352' stroke='%2322c7f2' stroke-opacity='.13' stroke-dasharray='8 13'/%3E%3Ccircle cx='560' cy='148' r='5' fill='%2322c7f2' fill-opacity='.32'/%3E%3Ccircle cx='560' cy='278' r='5' fill='%237c3aed' fill-opacity='.3'/%3E%3Ccircle cx='190' cy='208' r='3.5' fill='%233b82f6' fill-opacity='.28'/%3E%3Ccircle cx='930' cy='338' r='3.5' fill='%237c3aed' fill-opacity='.28'/%3E%3C/g%3E%3C/svg%3E");
  background-size: min(1000px, 92vw) auto; background-position: center 60%; background-repeat: no-repeat;
  opacity: .95;
  -webkit-mask-image: radial-gradient(ellipse 82% 76% at 50% 58%, #000 18%, transparent 82%);
  mask-image: radial-gradient(ellipse 82% 76% at 50% 58%, #000 18%, transparent 82%);
}
.about-approach { --art-x: 88%; --art-y: 14%; --art-x2: 14%; --art-y2: 84%; }
.partner-why { --art-x: 50%; --art-y: 12%; --art-x2: 82%; --art-y2: 72%; }
.subpage-art .container { position: relative; z-index: 1; }
.about-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: url("Logo/Pay247_PNG_File-07.png") center 54% / min(560px, 62vw) auto no-repeat;
  opacity: .055; pointer-events: none;
  filter: drop-shadow(0 0 36px rgba(34,199,242,.18));
  -webkit-mask-image: radial-gradient(ellipse 58% 62% at 50% 52%, #000 42%, transparent 82%);
  mask-image: radial-gradient(ellipse 58% 62% at 50% 52%, #000 42%, transparent 82%);
}

/* ---------- Sub-page content blocks ---------- */
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.info-card {
  background: #fff; border: 1px solid #e5eaf3; border-radius: var(--radius-lg);
  padding: 32px 30px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.info-card:hover { transform: translateY(-5px); border-color: rgba(59,130,246,.35); box-shadow: 0 20px 44px rgba(59,130,246,.12); }
.info-card .step-icon { margin-bottom: 18px; }
.info-card h3 { font-size: 19px; color: #0c1222; margin-bottom: 10px; }
.info-card p { font-size: 14.5px; color: var(--slate-dark); }
.dark-section .info-card { background: linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.03) 45%, rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(24px) saturate(170%); -webkit-backdrop-filter: blur(24px) saturate(170%); box-shadow: inset 0 1px 0 rgba(255,255,255,.2); }
.dark-section .info-card h3 { color: #fff; }
.dark-section .info-card p { color: var(--slate); }

.country-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.country-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px; border-radius: 999px;
  background: rgba(17,24,39,.6); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: #e2e8f0;
}
.country-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }

.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin-bottom: 18px; font-size: 16px; }
.light-section .prose p { color: #334155; }
.dark-section .prose p { color: #cbd5e1; }
.prose .lead { font-size: 18px; font-weight: 500; }
.light-section .prose .lead { color: #0c1222; }
.dark-section .prose .lead { color: #fff; }

.info-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.info-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1020px) { .info-cards, .info-cards.cols-3, .info-cards.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .info-cards, .info-cards.cols-3, .info-cards.cols-4 { grid-template-columns: 1fr; } .page-hero { padding: 140px 0 70px; } }
