  :root {
    --primary: #00A86B;
    --primary-2: #007A4D;
    --primary-3: #2FBF8A;
    --primary-soft: #E6F7EF;
    --ink: #0F172A;
    --ink-2: #1E293B;
    --muted: #64748B;
    --muted-2: #94A3B8;
    --border: #E5E9F2;
    --border-2: #EEF1F7;
    --bg: #FFFFFF;
    --bg-alt: #F5F7FB;
    --bg-tint: #F9FBFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.03);
    --shadow-md: 0 4px 6px rgba(15,23,42,0.03), 0 10px 20px rgba(15,23,42,0.05);
    --shadow-lg: 0 12px 24px rgba(15,23,42,0.06), 0 24px 48px rgba(15,23,42,0.08);
    --shadow-brand: 0 10px 30px rgba(0,168,107,0.20);

    --sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --display: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --mono: ui-monospace, 'SF Mono', 'Menlo', 'Consolas', monospace;

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-pill: 999px;

    --maxw: 1200px;
    --pad: clamp(20px, 4vw, 40px);
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --primary: #2FBF8A;
      --primary-2: #00A86B;
      --primary-3: #5DD4A6;
      --primary-soft: #0F2A20;
      --ink: #F1F5F9;
      --ink-2: #E2E8F0;
      --muted: #94A3B8;
      --muted-2: #64748B;
      --border: #1E293B;
      --border-2: #172033;
      --bg: #0A0F1D;
      --bg-alt: #0F172A;
      --bg-tint: #101828;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
      --shadow-md: 0 8px 16px rgba(0,0,0,0.35);
      --shadow-lg: 0 20px 40px rgba(0,0,0,0.4);
      --shadow-brand: 0 12px 40px rgba(47,191,138,0.25);
    }
  }
  :root[data-theme="dark"] {
    --primary: #2FBF8A;
    --primary-2: #00A86B;
    --primary-3: #5DD4A6;
    --primary-soft: #0F2A20;
    --ink: #F1F5F9;
    --ink-2: #E2E8F0;
    --muted: #94A3B8;
    --muted-2: #64748B;
    --border: #1E293B;
    --border-2: #172033;
    --bg: #0A0F1D;
    --bg-alt: #0F172A;
    --bg-tint: #101828;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.35);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.4);
    --shadow-brand: 0 12px 40px rgba(47,191,138,0.25);
  }
  :root[data-theme="light"] {
    --primary: #00A86B;
    --primary-2: #007A4D;
    --primary-3: #2FBF8A;
    --primary-soft: #E6F7EF;
    --ink: #0F172A;
    --ink-2: #1E293B;
    --muted: #64748B;
    --muted-2: #94A3B8;
    --border: #E5E9F2;
    --border-2: #EEF1F7;
    --bg: #FFFFFF;
    --bg-alt: #F5F7FB;
    --bg-tint: #F9FBFF;
    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.03);
    --shadow-md: 0 4px 6px rgba(15,23,42,0.03), 0 10px 20px rgba(15,23,42,0.05);
    --shadow-lg: 0 12px 24px rgba(15,23,42,0.06), 0 24px 48px rgba(15,23,42,0.08);
    --shadow-brand: 0 10px 30px rgba(0,168,107,0.20);
  }

  html { color-scheme: light dark; scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  a { color: inherit; text-decoration: none; }
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  /* ─── ANNOUNCE BAR ───────────────────────────────── */
  .announce {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 10px 20px;
    display: flex; justify-content: center; align-items: center; gap: 10px;
  }
  .announce .pill { background: var(--primary); padding: 2px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
  .announce a { text-decoration: underline; text-underline-offset: 3px; color: #fff; }
  .announce .arr { display:inline-block; transition: transform .18s ease; }
  .announce a:hover .arr { transform: translateX(3px); }

  /* ─── NAV ─────────────────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 40;
    background: color-mix(in oklab, var(--bg) 92%, transparent);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; gap: 40px;
    height: 72px;
  }
  .brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--ink);
    white-space: nowrap;
  }
  .brand-mark {
    width: 52px; height: 28px;
    display: inline-block;
    flex-shrink: 0;
  }
  .brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .wm-mount { color: #14684F; }
  .wm-pay   { color: #4EB397; }
  @media (prefers-color-scheme: dark) {
    .wm-mount { color: #5EC7A5; }
    .wm-pay   { color: #7ED5B5; }
  }
  :root[data-theme="dark"] .wm-mount { color: #5EC7A5; }
  :root[data-theme="dark"] .wm-pay   { color: #7ED5B5; }
  :root[data-theme="light"] .wm-mount { color: #14684F; }
  :root[data-theme="light"] .wm-pay   { color: #4EB397; }
  .nav-links {
    display: flex; gap: 28px; margin-left: 8px;
    font-size: 15px;
    color: var(--ink-2);
    font-weight: 500;
  }
  .nav-links a { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
  .nav-links a:hover { color: var(--primary); }
  .nav-links .caret { font-size: 10px; color: var(--muted); }
  .nav-spacer { flex: 1; }
  .nav-right { display: flex; align-items: center; gap: 20px; }
  .nav-right .lang { font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
  .nav-right .login { font-size: 15px; color: var(--ink-2); font-weight: 500; }
  .nav-right .login:hover { color: var(--primary); }
  @media (max-width: 900px) {
    .nav-links, .nav-right .lang, .nav-right .login { display: none; }
  }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all .18s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-brand);
  }
  .btn-primary:hover { background: var(--primary-2); transform: translateY(-1px); box-shadow: 0 14px 34px rgba(0,168,107,0.30); }
  .btn-secondary {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--border);
  }
  .btn-secondary:hover { border-color: var(--ink); }
  .btn-ghost {
    background: var(--primary-soft);
    color: var(--primary);
  }
  .btn-ghost:hover { background: color-mix(in oklab, var(--primary-soft) 70%, var(--primary) 8%); }
  .btn .arr { display:inline-block; transition: transform .18s ease; }
  .btn:hover .arr { transform: translateX(3px); }

  /* ─── HERO ───────────────────────────────────────── */
  .hero {
    padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 112px);
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(1200px 500px at 85% -10%, color-mix(in oklab, var(--primary) 14%, transparent) 0%, transparent 60%),
      radial-gradient(900px 400px at 10% 30%, color-mix(in oklab, var(--primary-3) 8%, transparent) 0%, transparent 55%),
      var(--bg);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }
  .hero-copy { max-width: 560px; }
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-copy { max-width: none; margin: 0 auto; }
    .hero-copy .hero-lede { margin-left: auto; margin-right: auto; }
    .hero-copy .hero-ctas, .hero-copy .hero-trustline { justify-content: center; }
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .hero-badge .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 4px color-mix(in oklab, var(--primary) 22%, transparent); }

  h1.hero-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(38px, 5.2vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.028em;
    text-wrap: balance;
    margin: 20px 0 24px;
    color: var(--ink);
  }
  h1.hero-title .grad {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-lede {
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.6;
    color: var(--muted);
    max-width: 52ch;
    margin: 0 0 32px;
  }

  .hero-ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .hero-trustline {
    display: flex; align-items: center; gap: 14px;
    color: var(--muted);
    font-size: 13.5px;
    flex-wrap: wrap;
  }
  .hero-trustline .stars { color: #F59E0B; letter-spacing: 2px; font-size: 15px; }
  .hero-trustline .sep { width: 4px; height: 4px; background: var(--muted-2); border-radius: 50%; }

  /* ─── HERO NETWORK FLOW ──────────────────────────── */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
  }
  .flow {
    width: 100%;
    max-width: 540px;
    height: auto;
    display: block;
  }
  .flow .pulse {
    transform-origin: 260px 260px;
    animation: flow-pulse 3s ease-out infinite;
  }
  .flow .pulse.delay { animation-delay: 1.5s; }
  @keyframes flow-pulse {
    0%   { transform: scale(0.4); opacity: 0.55; }
    100% { transform: scale(1.35); opacity: 0; }
  }
  .flow .node-live {
    transform-origin: center;
    animation: node-live 1.8s ease-in-out infinite;
  }
  @keyframes node-live {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
  }
  @media (prefers-reduced-motion: reduce) {
    .flow .flow-coin, .flow .pulse, .flow .node-live { display: none; }
  }

  /* ─── DASHBOARD MOCKUP ───────────────────────────── */
  .mock {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    transform: perspective(1400px) rotateY(-2deg) rotateX(2deg);
  }
  @media (max-width: 960px) { .mock { transform: none; } }
  .mock::before {
    content: "";
    position: absolute; inset: -10px -10px auto auto;
    width: 80px; height: 80px;
    background: radial-gradient(closest-side, color-mix(in oklab, var(--primary) 35%, transparent), transparent 70%);
    filter: blur(6px);
    z-index: -1;
  }

  .m-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px;
    box-shadow: var(--shadow-sm);
  }
  .m-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .m-lbl { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }
  .m-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--r-pill);
    background: color-mix(in oklab, var(--success) 14%, transparent);
    color: var(--success);
  }
  .m-badge.warn { background: color-mix(in oklab, var(--warning) 14%, transparent); color: var(--warning); }
  .m-num { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
  .m-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

  .m-chart {
    grid-column: 1 / -1;
    padding: 20px;
  }
  .m-chart-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
  .m-chart-title { font-size: 13px; color: var(--muted); font-weight: 500; }
  .m-chart-val { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
  .m-chart-val .delta { font-size: 12px; color: var(--success); margin-left: 8px; font-weight: 600; }

  .bars {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
    gap: 6px;
    height: 84px;
  }
  .bar {
    background: linear-gradient(180deg, var(--primary-3) 0%, var(--primary) 100%);
    border-radius: 3px 3px 0 0;
    opacity: 0.85;
    transition: opacity .2s ease;
  }
  .bar:hover { opacity: 1; }
  .bar.dim { background: var(--border); opacity: 1; }

  .m-methods { grid-column: 1 / -1; padding: 16px 20px; }
  .m-methods-title { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
  .method-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: var(--r-pill);
    font-size: 12px;
    color: var(--ink-2);
    font-weight: 500;
  }
  .chip .cdot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
  .chip .cdot.b { background: #E2136E; }
  .chip .cdot.g { background: #00A651; }
  .chip .cdot.o { background: #F26522; }
  .chip .cdot.r { background: #FF3A3A; }
  .chip .cdot.p { background: #7B2CBF; }

  /* ─── STATS STRIP ───────────────────────────────── */
  .stats-strip {
    padding: 40px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  @media (max-width: 780px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
  .stat {
    text-align: left;
    display: flex; flex-direction: column; gap: 4px;
  }
  .stat-num {
    font-size: clamp(30px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.028em;
    color: var(--ink);
    line-height: 1;
  }
  .stat-num .u { color: var(--primary); }
  .stat-lbl {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
  }

  /* ─── SECTION SCAFFOLDING ───────────────────────── */
  section.block { padding: clamp(72px, 9vw, 112px) 0; }

  .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 72px);
  }
  .section-eyebrow {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
  }
  .section-head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.024em;
    text-wrap: balance;
    margin: 0 0 16px;
    color: var(--ink);
  }
  .section-head p {
    color: var(--muted);
    font-size: 17px;
    margin: 0;
    line-height: 1.6;
  }

  /* ─── WHO WE SERVE (COUNTRIES) ──────────────────── */
  .countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 780px) { .countries { grid-template-columns: 1fr; } }

  .country {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .country:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--primary) 25%, var(--border)); }

  .country-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .country-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    display: inline-flex; align-items: center; gap: 12px;
  }
  .flag {
    width: 34px; height: 24px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border);
    display: inline-block;
    flex-shrink: 0;
  }
  .flag-in { background: linear-gradient(to bottom, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%); position: relative; }
  .flag-in::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border: 1.5px solid #000080; border-radius: 50%; transform: translate(-50%,-50%); }
  .flag-bd { background: #006A4E; position: relative; }
  .flag-bd::after { content: ""; position: absolute; left: 45%; top: 50%; width: 10px; height: 10px; background: #F42A41; border-radius: 50%; transform: translate(-50%,-50%); }
  .flag-pk { background: linear-gradient(to right, #FFFFFF 22%, #01411C 22%); position: relative; }
  .flag-pk::after { content: ""; position: absolute; left: 68%; top: 50%; width: 9px; height: 9px; background: radial-gradient(circle at 35% 40%, transparent 3px, #fff 3.5px); border-radius: 50%; transform: translate(-50%,-50%); }

  .country-ccy {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    letter-spacing: 0.06em;
  }
  .method-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .method-list li { font-size: 14px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; }
  .check {
    width: 16px; height: 16px; flex-shrink: 0;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700;
  }

  /* ─── WHY CHOOSE (FEATURES) ─────────────────────── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

  .feature {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex; flex-direction: column; gap: 12px;
  }
  .feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--primary) 25%, var(--border)); }
  .feat-icon {
    width: 48px; height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 6px;
  }
  .feat-icon svg { width: 24px; height: 24px; }
  .feature h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--ink);
  }
  .feature p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.55; }

  /* ─── SOLUTIONS 2x2 ─────────────────────────────── */
  .solutions-block { background: var(--bg-alt); }
  .sol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 780px) { .sol-grid { grid-template-columns: 1fr; } }
  .sol {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex; flex-direction: column; gap: 14px;
    transition: all .2s ease;
    box-shadow: var(--shadow-sm);
  }
  .sol:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--primary) 25%, var(--border)); }
  .sol-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
    color: #fff;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-brand);
  }
  .sol-icon svg { width: 26px; height: 26px; }
  .sol h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--ink);
  }
  .sol p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.6; }
  .sol .sol-link {
    margin-top: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .sol .sol-link .arr { transition: transform .18s ease; }
  .sol:hover .sol-link .arr { transform: translateX(4px); }

  /* ─── PAYMENT METHODS ROW ───────────────────────── */
  .pm-block { padding: clamp(56px, 7vw, 88px) 0; }
  .pm-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  @media (max-width: 820px) { .pm-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 520px) { .pm-grid { grid-template-columns: repeat(3, 1fr); } }
  .pm-tile {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    min-height: 84px;
    transition: all .18s ease;
    text-align: center;
  }
  .pm-tile:hover { border-color: var(--primary); background: var(--primary-soft); transform: translateY(-2px); }
  .pm-logo {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: -0.02em;
  }
  .pm-name { font-size: 12.5px; color: var(--ink-2); font-weight: 600; }

  /* ─── COMPLIANCE ────────────────────────────────── */
  .comp-block {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  }
  .comp-inner {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(32px, 5vw, 56px);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  @media (max-width: 900px) { .comp-inner { grid-template-columns: 1fr; } }
  .comp-inner h3 {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 12px 0 12px;
    line-height: 1.2;
  }
  .comp-inner p { color: var(--muted); font-size: 16px; margin: 0 0 20px; line-height: 1.6; }
  .comp-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .comp-badge {
    display: flex; align-items: center; gap: 12px;
    padding: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
  }
  .comp-badge .cb-ico {
    width: 40px; height: 40px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .comp-badge .cb-ico svg { width: 20px; height: 20px; }
  .comp-badge .cb-t { font-size: 14px; font-weight: 700; color: var(--ink); }
  .comp-badge .cb-s { font-size: 12px; color: var(--muted); }

  /* ─── CTA BAND ──────────────────────────────────── */
  .cta-band { padding: clamp(72px, 9vw, 100px) 0; }
  .cta-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    border-radius: var(--r-xl);
    padding: clamp(40px, 6vw, 64px);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-brand);
  }
  .cta-inner::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(600px 300px at 90% -10%, rgba(255,255,255,0.18), transparent 60%),
      radial-gradient(500px 300px at -10% 110%, rgba(255,255,255,0.08), transparent 60%);
    pointer-events: none;
  }
  @media (max-width: 780px) { .cta-inner { grid-template-columns: 1fr; text-align: left; } }
  .cta-inner h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.024em;
    margin: 0 0 12px;
    line-height: 1.15;
    text-wrap: balance;
    position: relative;
  }
  .cta-inner p { color: rgba(255,255,255,0.85); margin: 0; font-size: 16px; position: relative; }
  .cta-inner .cta-actions {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end;
    position: relative;
  }
  @media (max-width: 780px) { .cta-inner .cta-actions { justify-content: flex-start; } }
  .cta-inner .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
  .cta-inner .btn-primary:hover { background: #F5F7FB; }
  .cta-inner .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
  .cta-inner .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

  /* ─── FOOTER ────────────────────────────────────── */
  footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    margin-bottom: 48px;
  }
  @media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
  .foot-brand .brand { font-size: 24px; }
  .foot-brand p { color: var(--muted); font-size: 14px; margin: 16px 0 20px; max-width: 32ch; line-height: 1.6; }
  .foot-social { display: flex; gap: 10px; }
  .foot-social a {
    width: 36px; height: 36px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: all .18s ease;
  }
  .foot-social a:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-soft); }
  .foot-social svg { width: 16px; height: 16px; }

  .foot-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: 0.01em;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a { font-size: 14px; color: var(--muted); }
  .foot-col a:hover { color: var(--primary); }

  .foot-bar {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
  }
  .foot-bar-links { display: flex; gap: 20px; }
  .foot-bar-links a:hover { color: var(--primary); }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    .mock { transform: none; }
  }

  /* ─── SUB-PAGE SCAFFOLDING (Solutions, Support, Blog, About, etc.) ─── */
  .page-hero {
    padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 6vw, 72px);
    background:
      radial-gradient(1000px 400px at 85% -10%, color-mix(in oklab, var(--primary) 12%, transparent) 0%, transparent 60%),
      radial-gradient(700px 300px at 15% 20%, color-mix(in oklab, var(--primary-3) 6%, transparent) 0%, transparent 55%),
      var(--bg);
    text-align: center;
  }
  .page-hero .page-eyebrow {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 22px;
  }
  .page-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.05;
    margin: 0 auto 20px;
    max-width: 22ch;
    text-wrap: balance;
    color: var(--ink);
  }
  .page-hero p.lede {
    font-size: clamp(17px, 1.4vw, 19px);
    color: var(--muted);
    max-width: 60ch;
    margin: 0 auto 32px;
    line-height: 1.6;
  }
  .page-hero .page-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  .sub-section { padding: clamp(64px, 8vw, 96px) 0; }
  .sub-section.alt { background: var(--bg-alt); }
  .sub-section > .container > .sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
  .sub-section .sec-head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.022em;
    text-wrap: balance;
    margin: 12px 0 12px;
    color: var(--ink);
  }
  .sub-section .sec-head p { color: var(--muted); font-size: 16px; margin: 0; line-height: 1.6; }

  .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
  @media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
  .split h3 { font-size: clamp(24px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.018em; margin: 0 0 14px; text-wrap: balance; }
  .split p { color: var(--muted); font-size: 16px; margin: 0 0 16px; line-height: 1.6; }

  .num-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 18px; }
  .num-list li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
  .num-list .n {
    width: 32px; height: 32px;
    background: var(--primary-soft); color: var(--primary);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    flex-shrink: 0;
  }
  .num-list .body strong { display: block; color: var(--ink); font-weight: 700; font-size: 15.5px; margin-bottom: 4px; }
  .num-list .body span { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

  .visual-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
  }
  .visual-card h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin: 0 0 20px; }
  .attempt {
    display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: 10px;
    background: var(--bg-alt);
  }
  .attempt .icon { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 11px; flex-shrink: 0; }
  .attempt .icon.ok { background: var(--success); }
  .attempt .icon.fail { background: var(--danger); }
  .attempt .rail { font-weight: 600; font-size: 14px; color: var(--ink); }
  .attempt .status { font-family: var(--mono); font-size: 12px; color: var(--muted); }
  .attempt.win { background: color-mix(in oklab, var(--success) 8%, var(--bg)); border-color: color-mix(in oklab, var(--success) 30%, var(--border)); }

  .three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 820px) { .three-col { grid-template-columns: 1fr; } }
  .option {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex; flex-direction: column;
  }
  .option:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--primary) 25%, var(--border)); }
  .option-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--primary); text-transform: uppercase; margin-bottom: 12px; }
  .option h3 { font-size: 22px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.015em; }
  .option p { color: var(--muted); font-size: 15px; margin: 0 0 16px; line-height: 1.55; }
  .option ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
  .option ul li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); }
  .option ul li::before { content: "✓"; color: var(--primary); font-weight: 700; }
  .option .best-for { margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--border); font-size: 12.5px; color: var(--muted); }
  .option .best-for strong { color: var(--ink); font-weight: 600; }

  .rate-table { width: 100%; border-collapse: collapse; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
  .rate-table th, .rate-table td { text-align: left; padding: 14px 20px; font-size: 14.5px; border-bottom: 1px solid var(--border); }
  .rate-table th { background: var(--bg-alt); font-weight: 700; color: var(--ink-2); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
  .rate-table td.method { font-weight: 600; color: var(--ink); }
  .rate-table td.num { font-family: var(--mono); text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
  .rate-table td.pill-cell { text-align: right; }
  .rate-pill { display: inline-block; padding: 3px 10px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; font-family: var(--mono); }
  .rate-pill.high { background: color-mix(in oklab, var(--success) 14%, transparent); color: var(--success); }
  .rate-pill.med  { background: color-mix(in oklab, var(--warning) 14%, transparent); color: var(--warning); }
  .rate-table tbody tr:last-child td { border-bottom: none; }

  .related { padding: clamp(56px, 7vw, 88px) 0; border-top: 1px solid var(--border); }
  .related h4 { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-align: center; margin: 0 0 28px; font-weight: 700; }
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 780px) { .related-grid { grid-template-columns: 1fr; } }
  .related-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: all .2s ease;
    display: flex; flex-direction: column; gap: 8px;
  }
  .related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--primary) 25%, var(--border)); }
  .related-card .rc-tag { font-family: var(--mono); font-size: 11px; color: var(--primary); letter-spacing: 0.1em; }
  .related-card h5 { font-size: 18px; font-weight: 700; margin: 0; color: var(--ink); }
  .related-card p { color: var(--muted); font-size: 14px; margin: 0; }
  .related-card .arr { color: var(--primary); font-weight: 600; margin-top: 8px; font-size: 14px; }

  /* Code block for docs/integration */
  .code-block {
    background: #0F172A;
    color: #E2E8F0;
    border-radius: var(--r-lg);
    padding: 24px;
    overflow-x: auto;
    font-family: var(--mono);
    font-size: 13.5px;
    line-height: 1.6;
  }
  .code-block .c-kw { color: #7ED5B5; }
  .code-block .c-str { color: #FBBF24; }
  .code-block .c-com { color: #64748B; }
  .code-block .c-num { color: #A5B4FC; }
  .code-tabs { display: flex; gap: 4px; margin-bottom: -1px; }
  .code-tab { padding: 8px 14px; font-size: 12.5px; font-weight: 600; color: var(--muted); border: 1px solid var(--border); border-bottom: none; border-radius: 8px 8px 0 0; background: var(--bg); cursor: pointer; }
  .code-tab.active { color: var(--ink); background: var(--bg); position: relative; z-index: 1; }

  /* FAQ accordion (used on FAQs page + sub-pages) */
  .faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
  .faq details { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 22px; transition: border-color .18s ease; }
  .faq details[open] { border-color: color-mix(in oklab, var(--primary) 30%, var(--border)); }
  .faq summary { font-weight: 600; font-size: 15.5px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
  .faq summary::after { content: "+"; font-size: 20px; color: var(--muted); font-weight: 400; transition: transform .2s ease; }
  .faq details[open] summary::after { content: "−"; }
  .faq details p { margin: 12px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.65; }

  /* Removed dashboard mockup — no longer used on any page */

  /* ─── NAV DROPDOWNS ─── */
  .dropdown { position: relative; }
  .drop-trigger { cursor: pointer; }
  .drop-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: -14px;
    min-width: 200px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    z-index: 60;
  }
  .dropdown:hover .drop-menu,
  .dropdown:focus-within .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
  }
  .drop-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
  }
  .drop-menu a:hover { background: var(--primary-soft); color: var(--primary); }
  .drop-menu a + a { margin-top: 0; }
  /* Invisible hover-bridge so cursor doesn't lose dropdown between trigger and menu */
  .dropdown::after {
    content: "";
    position: absolute;
    top: 100%; left: 0; right: 0; height: 8px;
    display: none;
  }
  .dropdown:hover::after, .dropdown:focus-within::after { display: block; }

  /* ─── HARD MOBILE FIXES ─── */
  html, body { overflow-x: hidden; max-width: 100vw; }
  img, svg, video, iframe { max-width: 100%; height: auto; }
  .container { max-width: 100%; box-sizing: border-box; }
  table { max-width: 100%; }

  /* Hero title + lede should never overflow on mobile */
  @media (max-width: 720px) {
    h1.hero-title, .page-hero h1 { font-size: clamp(28px, 8vw, 42px); word-break: break-word; }
    .hero-lede, .page-hero p.lede { font-size: 15px; }
    .announce { font-size: 12px; padding: 8px 12px; text-align: left; }
    .announce .pill { font-size: 10px; padding: 2px 8px; flex-shrink: 0; }
    .announce a { flex-shrink: 0; }
    .cta-band h2, .cta-inner h2 { font-size: clamp(22px, 6vw, 30px); }
    .cta-inner { padding: 32px 24px; }
    .cta-inner .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-inner .cta-actions .btn { justify-content: center; }
    .foot-brand p { max-width: 100%; }
    .hero-visual { min-height: auto; }
    .flow { max-width: 100%; }
  }

  /* Every rate-table / spec-table wraps in a scroll box on mobile */
  @media (max-width: 720px) {
    .rate-table { display: block; overflow-x: auto; white-space: nowrap; }
    .rate-table th, .rate-table td { padding: 12px 14px; font-size: 13.5px; }
  }

  /* ─── HAMBURGER MENU ─── */
  .nav-hamburger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 40px; height: 40px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-left: auto;
  }
  .nav-hamburger svg { width: 22px; height: 22px; display: block; }

  @media (max-width: 900px) {
    .nav-hamburger { display: inline-flex; }
    .nav-links, .nav-right .lang, .nav-right .login { display: none; }
    .nav-right .btn-primary { display: none; }

    /* Slide-out mobile menu */
    .mobile-menu {
      position: fixed;
      inset: 0 0 0 25%;
      background: var(--bg);
      z-index: 200;
      padding: 24px 20px 40px;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform .28s ease;
      box-shadow: -8px 0 30px rgba(0,0,0,0.12);
      display: flex; flex-direction: column;
      gap: 4px;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 190;
      opacity: 0;
      visibility: hidden;
      transition: opacity .2s ease, visibility 0s linear .2s;
    }
    .mobile-menu-backdrop.open {
      opacity: 1;
      visibility: visible;
      transition: opacity .2s ease, visibility 0s linear 0s;
    }
    .mobile-menu-close {
      align-self: flex-end;
      background: none; border: none;
      font-size: 24px; color: var(--muted);
      cursor: pointer;
      padding: 8px 12px;
      margin-bottom: 12px;
    }
    .mobile-menu a {
      display: block;
      padding: 14px 12px;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
      border-radius: 8px;
    }
    .mobile-menu a.section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      padding-top: 20px;
      padding-bottom: 4px;
    }
    .mobile-menu a.sub { padding-left: 24px; font-size: 15px; color: var(--ink-2); font-weight: 500; }
    .mobile-menu a:hover { background: var(--primary-soft); color: var(--primary); }
    .mobile-menu .mobile-cta {
      background: var(--primary);
      color: #fff;
      text-align: center;
      margin-top: 20px;
      padding: 14px;
      border-radius: var(--r-md);
    }
    .mobile-menu .mobile-cta:hover { background: var(--primary-2); }
  }

  @media (min-width: 901px) {
    .nav-hamburger, .mobile-menu, .mobile-menu-backdrop { display: none !important; }
  }

  /* ─── EXTRA-NARROW (320px, iPhone SE 1st gen, older Androids) ─── */
  @media (max-width: 380px) {
    :root { --pad: 16px; }
    .brand { font-size: 18px; gap: 8px; }
    .brand-mark { width: 44px; height: 24px; }
    .nav-inner { height: 60px; gap: 12px; }
    .announce { font-size: 11px; padding: 6px 12px; gap: 8px; }
    .announce .pill { font-size: 9px; padding: 2px 6px; }
    .announce a { font-size: 11px; }
    h1.hero-title, .page-hero h1 { font-size: clamp(24px, 7vw, 36px); line-height: 1.1; }
    .hero-lede, .page-hero p.lede { font-size: 14.5px; }
    .btn { padding: 10px 16px; font-size: 13.5px; }
    .container { padding-left: 16px; padding-right: 16px; }
    .cta-inner { padding: 24px 18px; }
    .foot-brand p { font-size: 13px; }
    .rate-table th, .rate-table td { padding: 10px 12px; font-size: 12.5px; }
    .flow { max-width: 100%; }
    /* Any block-level SVG that lists absolute widths */
    svg.flow, svg.mp-logo, .visual-card svg { width: 100%; height: auto; }
  }

  /* Compliance card & badges collapse cleanly on narrow viewports */
  @media (max-width: 720px) {
    .comp-inner { padding: 28px 20px; gap: 24px; }
    .comp-badges { grid-template-columns: 1fr; }
    .comp-badge { padding: 12px; }
    .comp-badge .cb-t { font-size: 13.5px; }
    .comp-badge .cb-s { font-size: 11.5px; }
  }
  @media (max-width: 380px) {
    .comp-inner { padding: 20px 14px; }
  }
