  /* ================================================================
     NUQTA-DLS-2.0 — landing tokens (mirror packages/config/tokens.ts)
     ================================================================ */
  :root {
    --ink:        #0A0F1A;
    --ink-2:      #121826;
    --ink-3:      #1A2233;
    --ink-line:   #232C40;
    --bg:         #FAFAF7;
    --bg-2:       #F2F1EC;
    --surface:    #FFFFFF;
    --surface-alt:#F6F7F9;

    --coral:      #E0623F;  /* decorative signal only */
    --coral-strong:#B84826; /* interactive on light — AA white text (5.26:1) */
    --gold:       #C9A24A;
    --gold-text:  #8A6D1F;

    --text:       #0A0F1A;
    --text-sub:   #2E3344;
    --text-mut:   #6E7384;
    --text-faint: #9097A6;
    --n-300:      #C4C8D2;
    --n-200:      #E2E4EA;
    --n-100:      #EFF0F3;
    --ok:         #1F7A4D;

    /* "ink" panels are constant-dark in both modes (the physical-card feel) */
    --card-fg:    #FAFAF7;
    --card-mut:   #9097A6;

    --r-2: 8px; --r-3: 14px; --r-4: 22px; --r-card: 16px; --r-pill: 999px;

    --sans: "Geist", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --mono: "Geist Mono", ui-monospace, SFMono-Regular, monospace;
    --ar:   "Tajawal", "Geist", sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --maxw: 1200px;

    --e1: 0 1px 2px rgba(10,15,26,0.04), 0 1px 3px rgba(10,15,26,0.06);
    --e2: 0 4px 12px rgba(10,15,26,0.08), 0 2px 4px rgba(10,15,26,0.05);
    --e3: 0 12px 32px rgba(10,15,26,0.14), 0 4px 8px rgba(10,15,26,0.06);
    --e-card: 0 18px 28px rgba(10,15,26,0.18);

    color-scheme: light;
  }

  :root[data-theme="dark"] {
    --ink:        #0A0F1A;
    --ink-2:      #121826;
    --ink-3:      #1A2233;
    --ink-line:   #2A3146;
    --bg:         #0A0F1A;
    --bg-2:       #121826;
    --surface:    #121826;
    --surface-alt:#1A2233;
    --coral-strong:#E0623F; /* on dark, the bright coral already passes AA as a label */
    --gold-text:  #C9A24A;
    --text:       #F6F7F9;
    --text-sub:   #C4C8D2;
    --text-mut:   #9097A6;
    --text-faint: #6E7384;
    --n-300:      #3E4659;
    --n-200:      #1F2738;
    --n-100:      #1A2233;
    --e1: 0 1px 2px rgba(0,0,0,0.3);
    --e2: 0 6px 18px rgba(0,0,0,0.4);
    --e3: 0 16px 40px rgba(0,0,0,0.5);
    --e-card: 0 22px 40px rgba(0,0,0,0.55);
    color-scheme: dark;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --ink:#0A0F1A; --ink-2:#121826; --ink-3:#1A2233; --ink-line:#2A3146;
      --bg:#0A0F1A; --bg-2:#121826; --surface:#121826; --surface-alt:#1A2233;
      --coral-strong:#E0623F; --gold-text:#C9A24A;
      --text:#F6F7F9; --text-sub:#C4C8D2; --text-mut:#9097A6; --text-faint:#6E7384;
      --n-300:#3E4659; --n-200:#1F2738; --n-100:#1A2233;
      --e1:0 1px 2px rgba(0,0,0,0.3); --e2:0 6px 18px rgba(0,0,0,0.4);
      --e3:0 16px 40px rgba(0,0,0,0.5); --e-card:0 22px 40px rgba(0,0,0,0.55);
      color-scheme: dark;
    }
  }

  /* ================================================================
     Base
     ================================================================ */
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  html, body { margin: 0; padding: 0; background: var(--bg); }
  body {
    color: var(--text);
    font-family: var(--sans);
    font-feature-settings: "ss01", "ss02", "cv11";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color .3s var(--ease), color .3s var(--ease);
  }
  html[lang="ar"] body { font-family: var(--ar); }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  ::selection { background: var(--coral); color: #fff; }

  .wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
  .mono { font-family: var(--mono); }
  html[lang="ar"] .mono { font-family: var(--ar); }

  /* Bilingual visibility — only the active language renders (and is read by SR) */
  .lx-ar { display: none; }
  html[lang="ar"] .lx-en { display: none; }
  html[lang="ar"] .lx-ar { display: inline; }
  html[lang="ar"] .lx-ar.blk { display: block; }

  /* Reveal-on-scroll (disabled under reduced-motion / no-JS) */
  .reveal { opacity: 0; transform: translateY(22px); }
  .js .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .stampcard, .cell.fill { animation: none !important; }
  }

  /* ================================================================
     Nav — floating pill
     ================================================================ */
  .nav-shell { position: sticky; top: 0; z-index: 50; padding-top: clamp(14px, 2vw, 20px); }
  .nav {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px 10px 18px;
    border: 1px solid var(--n-200); border-radius: var(--r-pill);
    background: color-mix(in oklab, var(--surface) 86%, transparent);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    box-shadow: var(--e1);
  }
  html[lang="ar"] .nav { padding: 10px 18px 10px 12px; }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; letter-spacing: -0.015em; text-decoration: none; }
  .mark { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
  .mark .disc { position: absolute; inset-inline-start: 0; bottom: 0; width: 17px; height: 17px; border-radius: 50%; background: var(--text); }
  .mark .dot  { position: absolute; inset-inline-end: 0; top: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
  .brand .ar { color: var(--text-mut); font-size: 15px; padding-inline-start: 10px; margin-inline-start: 4px; border-inline-start: 1px solid var(--n-200); font-family: var(--ar); }
  .nav .spacer { flex: 1; }
  .nav .iconbtn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--n-200); background: var(--surface);
    color: var(--text); cursor: pointer; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .15s var(--ease), background-color .15s var(--ease);
  }
  .nav .iconbtn:hover { border-color: var(--n-300); }
  .nav .iconbtn svg { width: 17px; height: 17px; }
  .nav .langbtn { width: auto; padding-inline: 13px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .02em; gap: 6px; }
  .nav .merchants {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 16px; border-radius: var(--r-pill);
    background: var(--text); color: var(--bg);
    font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em;
    text-decoration: none; white-space: nowrap;
    transition: opacity .15s var(--ease);
  }
  .nav .merchants:hover { opacity: .9; }
  .nav .merchants svg { width: 14px; height: 14px; }
  .icon-sun { display: none; }
  :root[data-theme="dark"] .icon-sun { display: block; }
  :root[data-theme="dark"] .icon-moon { display: none; }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .icon-sun { display: block; }
    :root:not([data-theme="light"]) .icon-moon { display: none; }
  }

  /* ================================================================
     Hero — ink surface, cinematic
     ================================================================ */
  .hero { position: relative; margin-top: clamp(18px, 3vw, 28px); border-radius: clamp(20px, 3vw, 30px); overflow: hidden; background: var(--ink); color: var(--card-fg); box-shadow: var(--e-card); }
  .hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background:
    radial-gradient(120% 90% at 88% -8%, rgba(224,98,63,0.20), transparent 55%),
    radial-gradient(90% 80% at -5% 110%, rgba(201,162,74,0.10), transparent 50%); }
  .hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding: clamp(40px, 6vw, 84px) clamp(28px, 5vw, 72px); }
  .eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--card-mut); text-transform: uppercase; }
  html[lang="ar"] .eyebrow { font-family: var(--ar); text-transform: none; letter-spacing: 0; }
  .eyebrow .live { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(31,122,77,.5); animation: pulse 2.6s var(--ease) infinite; }
  @media (prefers-reduced-motion: reduce) { .eyebrow .live { animation: none; } }
  @keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(31,122,77,.45);} 70%{box-shadow:0 0 0 7px rgba(31,122,77,0);} 100%{box-shadow:0 0 0 0 rgba(31,122,77,0);} }

  h1.hero-title { margin: 18px 0 0; font-weight: 500; letter-spacing: -0.04em; line-height: 0.95; font-size: clamp(56px, 9vw, 118px); }
  .hero-title .wordmark { display: inline-flex; align-items: baseline; }
  .hero-title .wordmark .d { width: .16em; height: .16em; border-radius: 50%; background: var(--coral); transform: translateY(-0.62em); margin-inline-start: .05em; }
  .hero-sub { margin: 22px 0 0; max-width: 34ch; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: var(--card-fg); opacity: .82; }
  html[lang="ar"] .hero-sub { max-width: 40ch; }
  .hero-ar { margin-top: 14px; font-family: var(--ar); font-size: clamp(20px, 2.2vw, 26px); color: var(--card-fg); opacity: .72; direction: rtl; }
  html[lang="ar"] .hero-ar { display: none; }

  .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
  .btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 22px; border-radius: var(--r-pill); font-size: 15px; font-weight: 500; letter-spacing: -0.01em; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: transform .15s var(--ease), opacity .15s var(--ease), border-color .15s var(--ease); white-space: nowrap; }
  .btn svg { width: 16px; height: 16px; }
  .btn-primary { background: var(--coral-strong); color: #fff; }
  .btn-primary:hover { transform: translateY(-1px); opacity: .95; }
  .btn-ghost { background: transparent; color: var(--card-fg); border-color: rgba(250,250,247,0.28); }
  .btn-ghost:hover { border-color: rgba(250,250,247,0.55); }
  .hero-note { margin-top: 16px; font-family: var(--mono); font-size: 12px; color: var(--card-mut); letter-spacing: .03em; }
  html[lang="ar"] .hero-note { font-family: var(--ar); letter-spacing: 0; }

  /* ----- The signature stamp card (CSS recreation of StampCardWidget) ----- */
  .stampcard-stage { display: flex; justify-content: center; perspective: 1400px; }
  .stampcard {
    width: min(360px, 100%); background: var(--ink-2); color: var(--card-fg);
    border: 1px solid var(--ink-line); border-radius: var(--r-card);
    padding: 22px; position: relative; overflow: hidden;
    box-shadow: var(--e-card); transform: rotate(-2.2deg) translateY(16px); opacity: 0;
  }
  .stampcard.in { transform: rotate(-2.2deg); opacity: 1; transition: transform .8s var(--ease), opacity .8s var(--ease); }
  .stampcard:hover { transform: rotate(0deg) translateY(-2px); }
  .stampcard .ring { position: absolute; border: 1px solid rgba(255,255,255,0.05); border-radius: 50%; inset-inline-end: -70px; top: -70px; width: 220px; height: 220px; pointer-events: none; }
  .stampcard .ring.two { width: 320px; height: 320px; inset-inline-end: -120px; top: -120px; }
  .sc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; position: relative; }
  .sc-biz { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
  .sc-biz-alt { font-size: 12px; color: var(--card-mut); margin-top: 2px; font-family: var(--ar); }
  .sc-mark { display: inline-flex; align-items: baseline; gap: 3px; font-family: var(--ar); font-size: 15px; color: var(--card-fg); opacity: .82; }
  .sc-mark .d { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); align-self: flex-start; margin-top: 3px; }
  .sc-grid { margin-top: 22px; display: grid; gap: 10px; }
  .sc-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .cell { aspect-ratio: 1; border-radius: 50%; }
  .cell.empty { border: 1.5px solid var(--ink-line); }
  .cell.fill { background: var(--card-fg); transform: scale(0); }
  .stampcard.in .cell.fill { animation: pop .42s var(--ease) forwards; }
  .cell.fill.s1 { animation-delay: .15s; } .cell.fill.s2 { animation-delay: .22s; }
  .cell.fill.s3 { animation-delay: .29s; } .cell.fill.s4 { animation-delay: .36s; }
  .cell.fill.s5 { animation-delay: .43s; } .cell.fill.s6 { animation-delay: .50s; }
  .cell.fill.s7 { animation-delay: .57s; }
  @keyframes pop { 0%{transform:scale(0);} 70%{transform:scale(1.12);} 100%{transform:scale(1);} }
  .cell.reward { background: var(--coral); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 600; font-size: 15px; color: #fff; }
  .sc-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--ink-line); display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--card-mut); }
  .sc-foot .gold { color: var(--gold); }

  /* ================================================================
     Section scaffolding
     ================================================================ */
  section { padding-block: clamp(64px, 9vw, 132px); }
  .sec-head { max-width: 30ch; }
  .sec-kicker { font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--coral-strong); display: inline-flex; align-items: center; gap: 8px; }
  html[lang="ar"] .sec-kicker { font-family: var(--ar); text-transform: none; letter-spacing: 0; }
  .sec-kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
  h2.sec-title { margin: 16px 0 0; font-size: clamp(30px, 4vw, 50px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.04; }
  .sec-lede { margin-top: 16px; max-width: 56ch; font-size: clamp(16px, 1.4vw, 18px); color: var(--text-sub); line-height: 1.6; }

  /* ----- How it works ----- */
  .steps { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
  .step { position: relative; padding-top: 28px; border-top: 2px solid var(--text); }
  .step .num { position: absolute; top: -2px; inset-inline-start: 0; width: 36px; height: 4px; background: var(--coral); }
  .step .idx { font-family: var(--mono); font-size: 13px; color: var(--text-mut); }
  .step h3 { margin: 14px 0 8px; font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
  .step p { margin: 0; color: var(--text-sub); font-size: 15.5px; line-height: 1.6; max-width: 32ch; }
  .step .pips { display: flex; gap: 6px; margin-top: 18px; }
  .pip { width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid var(--n-300); }
  .pip.on { background: var(--text); border-color: var(--text); }
  .pip.win { background: var(--coral); border-color: var(--coral); }
  .pip.gold { background: var(--gold); border-color: var(--gold); }

  /* ----- Value bento — gapless ----- */
  .bento { margin-top: clamp(40px, 5vw, 60px); display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-flow: dense; gap: 14px; }
  .tile { background: var(--surface); border: 1px solid var(--n-200); border-radius: var(--r-3); padding: 26px; display: flex; flex-direction: column; box-shadow: var(--e1); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
  .tile:hover { transform: translateY(-3px); box-shadow: var(--e2); }
  .tile.span3 { grid-column: span 3; }
  .tile.span2 { grid-column: span 2; }
  .tile .tlabel { font-family: var(--mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-faint); }
  html[lang="ar"] .tile .tlabel { font-family: var(--ar); text-transform: none; letter-spacing: 0; }
  .tile h3 { margin: 10px 0 8px; font-size: clamp(19px, 1.7vw, 23px); font-weight: 600; letter-spacing: -0.02em; }
  .tile p { margin: 0; color: var(--text-sub); font-size: 15px; line-height: 1.55; }
  .tile.feature { background: var(--ink); color: var(--card-fg); border-color: var(--ink-line); position: relative; overflow: hidden; padding: 0; min-height: 320px; }
  .tile.feature .ftext { padding: 26px; position: relative; z-index: 2; }
  .tile.feature h3 { color: var(--card-fg); }
  .tile.feature p { color: var(--card-mut); max-width: 30ch; }
  .tile.feature .fimg { position: absolute; inset-block: 0; inset-inline-end: -8%; width: 55%; background-size: cover; background-position: top center; -webkit-mask-image: linear-gradient(to left, #000 62%, transparent); mask-image: linear-gradient(to left, #000 62%, transparent); opacity: .92; }
  html[dir="rtl"] .tile.feature .fimg { -webkit-mask-image: linear-gradient(to right, #000 62%, transparent); mask-image: linear-gradient(to right, #000 62%, transparent); }
  .tile.gold { background: var(--bg-2); border-color: var(--n-200); }
  .tile.gold .tlabel { color: var(--gold-text); }

  /* ----- Café lifestyle band ----- */
  .band { position: relative; min-height: clamp(320px, 42vw, 460px); border-radius: clamp(18px, 2.5vw, 26px); overflow: hidden; display: flex; align-items: flex-end; }
  .band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,26,0.82) 0%, rgba(10,15,26,0.32) 45%, rgba(10,15,26,0.15) 100%); }
  .band .band-copy { position: relative; z-index: 2; padding: clamp(28px, 4vw, 52px); color: var(--card-fg); max-width: 36ch; }
  .band .band-copy .q { font-size: clamp(22px, 3vw, 36px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.18; }
  .band .band-copy .src { margin-top: 14px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .03em; color: rgba(250,250,247,0.7); }
  html[lang="ar"] .band .band-copy .src { font-family: var(--ar); letter-spacing: 0; }

  /* ----- App showcase — phones ----- */
  .show-grid { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); align-items: end; }
  .phone { margin-inline: auto; width: 100%; max-width: 252px; }
  .phone .frame { position: relative; border-radius: 34px; padding: 9px; background: var(--ink); border: 1px solid var(--ink-line); box-shadow: var(--e-card); }
  .phone .frame::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 64px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.18); z-index: 3; }
  .phone .frame img { border-radius: 26px; width: 100%; aspect-ratio: 1320 / 2868; object-fit: cover; }
  .phone .cap { margin-top: 16px; text-align: center; }
  .phone .cap .t { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
  .phone .cap .s { font-size: 13px; color: var(--text-mut); margin-top: 2px; }
  .phone.lift { transform: translateY(-22px); }

  /* ----- For merchants ----- */
  .merch { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; background: var(--ink); color: var(--card-fg); border-radius: clamp(20px, 3vw, 30px); padding: clamp(36px, 5vw, 72px); position: relative; overflow: hidden; }
  .merch::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 80% at 110% 0%, rgba(224,98,63,0.16), transparent 55%); pointer-events: none; }
  .merch .sec-kicker { color: var(--coral); }
  .merch h2 { color: var(--card-fg); }
  .merch p { color: var(--card-mut); max-width: 46ch; margin: 16px 0 0; font-size: clamp(16px,1.4vw,18px); line-height: 1.6; }
  .merch .mlist { margin: 22px 0 30px; padding: 0; list-style: none; display: grid; gap: 12px; }
  .merch .mlist li { position: relative; padding-inline-start: 26px; color: var(--card-fg); opacity: .9; font-size: 15.5px; }
  .merch .mlist li::before { content: ""; position: absolute; inset-inline-start: 0; top: 7px; width: 11px; height: 11px; border-radius: 50%; background: var(--coral); }
  .merch .mphone { position: relative; z-index: 2; }

  /* ----- Final CTA ----- */
  .final { text-align: center; }
  .final h2 { font-size: clamp(34px, 5.5vw, 76px); font-weight: 500; letter-spacing: -0.035em; line-height: 0.98; margin: 0 auto; max-width: 16ch; }
  .final .final-ar { display: block; font-family: var(--ar); font-size: clamp(22px, 3vw, 40px); color: var(--text-mut); margin-top: 16px; }
  html[lang="ar"] .final .final-ar { display: none; }
  .final .cta-row { justify-content: center; }

  /* ----- Footer ----- */
  footer { border-top: 1px solid var(--n-200); padding-block: clamp(40px, 5vw, 64px); }
  .foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
  .foot-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -0.015em; }
  .foot-brand .ar { color: var(--text-mut); font-family: var(--ar); font-weight: 500; }
  .foot-col h4 { margin: 0 0 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-faint); font-weight: 500; }
  html[lang="ar"] .foot-col h4 { font-family: var(--ar); text-transform: none; letter-spacing: 0; }
  .foot-col a, .foot-col span { display: block; color: var(--text-sub); font-size: 14.5px; text-decoration: none; margin-bottom: 9px; }
  .foot-col a { transition: color .15s var(--ease); }
  .foot-col a:hover { color: var(--coral-strong); }
  .foot-base { margin-top: clamp(32px, 4vw, 48px); padding-top: 24px; border-top: 1px solid var(--n-200); display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; color: var(--text-faint); font-size: 13px; }
  .foot-base .mono { letter-spacing: .02em; }

  /* ================================================================
     Responsive
     ================================================================ */
  @media (max-width: 940px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .stampcard-stage { order: 2; }
    .merch { grid-template-columns: 1fr; gap: 40px; }
    .merch .mphone { max-width: 300px; }
    .show-grid { grid-template-columns: 1fr; gap: 48px; max-width: 320px; margin-inline: auto; }
    .phone.lift { transform: none; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .tile.span3 { grid-column: span 2; }
    .tile.span2 { grid-column: span 1; }
    .tile.feature { grid-column: span 2; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 620px) {
    .nav .brand .ar { display: none; }
    .nav .merchants .label { display: none; }
    .steps { grid-template-columns: 1fr; gap: 28px; }
    .bento { grid-template-columns: 1fr; }
    .tile.span3, .tile.span2, .tile.feature { grid-column: span 1; }
    .tile.feature .fimg { width: 46%; opacity: .55; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }

/* --- Utilities externalised from inline style="" attributes ---
   (needed so the CSP can use style-src 'self' with NO 'unsafe-inline'). --- */
.fimg-home { background-image: url('/assets/app-home.jpg'); }
.tile-tagline { margin-top: auto; padding-top: 20px; font-family: var(--ar); font-size: 26px; color: var(--text-mut); direction: rtl; }
/* Scoped as .btn-ghost.ghost-cta (specificity 0,2,0) so it beats the hero-oriented
   .btn-ghost / .btn-ghost:hover by SPECIFICITY, not source order — order-independent,
   and faithfully reproduces the old inline override (which beat both). */
.btn-ghost.ghost-cta { color: var(--text); border-color: var(--n-300); }
.btn-ghost.ghost-cta:hover { border-color: var(--n-300); }
.foot-tagline { margin: 14px 0 0; max-width: 30ch; color: var(--text-mut); font-size: 14.5px; }
