  :root {
    /* Exact NerdWallet palette (sampled from nerdwallet.com) */
    --bg:        #ffffff;
    --bg-2:      #f7f7f7;          /* neutral-lightest */
    --card:      #ffffff;
    --ink:       #3d4045;          /* text primary */
    --ink-2:     #64666a;          /* text secondary */
    --ink-3:     #8a8c92;
    --line:      #e3e4e6;
    --line-2:    #eeeff1;

    /* NerdWallet greens (exact) */
    --primary:      #008254;       /* green-default */
    --primary-2:    #006642;       /* green-dark (hover/active) */
    --primary-deep: #006642;
    --primary-soft: #effcf8;       /* green-extra-light */

    --lime:      #a8ea4c;          /* NerdWallet lime accent */
    --lime-2:    #8fd439;
    --lime-soft: #e3faf2;          /* green-lightest */

    --accent:    oklch(70% 0.14 35);
    --accent-soft: oklch(96% 0.03 50);

    --gold:      oklch(80% 0.13 85);
    --mint:      oklch(78% 0.11 165);
    --lilac:     oklch(80% 0.09 290);

    --shadow-sm: 0 1px 2px rgba(20,30,50,.04), 0 1px 1px rgba(20,30,50,.03);
    --shadow:    0 6px 20px -8px rgba(20,30,50,.12), 0 2px 6px rgba(20,30,50,.04);
    --shadow-lg: 0 30px 60px -30px rgba(20,30,50,.25), 0 8px 24px -8px rgba(20,30,50,.08);

    --r-sm: 12px;
    --r:    18px;
    --r-lg: 28px;
    --r-xl: 36px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; overflow-x: hidden; }
  body {
    font-family: 'Assistant', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    direction: rtl;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 17px;
  }

  h1,h2,h3,h4 { font-family: 'Rubik', system-ui, sans-serif; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
  h1 { font-size: clamp(36px, 9vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; text-wrap: balance; }
  h2 { font-size: clamp(28px, 4.8vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.022em; text-wrap: balance; }
  h3 { font-size: clamp(18px, 2.4vw, 22px); font-weight: 700; line-height: 1.3; letter-spacing: -0.012em; }
  p  { margin: 0; color: var(--ink-2); text-wrap: pretty; }

  a { color: inherit; }

  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  /* ——— layout ——— */
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
  section { padding: 96px 0; }
  @media (max-width: 880px) {
    section { padding: 64px 0; }
    .wrap { padding: 0 20px; }
  }
  @media (max-width: 480px) {
    section { padding: 48px 0; }
    .wrap { padding: 0 16px; }
  }

  /* ——— nav ——— */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: saturate(180%) blur(14px);
    background: color-mix(in oklab, var(--bg) 82%, transparent);
    border-bottom: 1px solid var(--line-2);
  }
  .nav-inner {
    display: flex; align-items: center; gap: 28px;
    height: 72px;
  }
  @media (max-width: 480px) {
    .nav-inner { height: 60px; gap: 12px; }
  }
  .logo {
    font-family: 'Rubik'; font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 10px;
  }
  .logo-mark {
    width: 32px; height: 32px; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: grid; place-items: center; color: white; font-weight: 800; font-size: 16px;
  }
  .nav-links { display: flex; gap: 28px; font-weight: 500; font-size: 15px; color: var(--ink-2); }
  .nav-links a { text-decoration: none; transition: color .15s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-spacer { flex: 1; }
  .nav-cta {
    background: var(--lime); color: var(--primary-deep);
    padding: 11px 20px; border-radius: 8px;
    font-weight: 700; font-size: 14px; text-decoration: none;
    transition: transform .15s, background .15s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--lime-2); transform: translateY(-1px); }
  @media (max-width: 480px) {
    .nav-cta { padding: 9px 14px; font-size: 13px; }
    .logo { font-size: 17px; gap: 8px; }
    .logo-mark { width: 28px; height: 28px; border-radius: 8px; font-size: 14px; }
  }
  @media (max-width: 820px) { .nav-links { display: none; } }

  /* ——— buttons ——— */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 24px; border-radius: 10px;
    font-weight: 700; font-size: 16px;
    transition: transform .15s, box-shadow .15s, background .15s;
    text-decoration: none;
    min-height: 48px;
  }
  @media (max-width: 480px) { .btn { padding: 13px 20px; font-size: 15px; } }
  .btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 6px 16px -6px rgba(0,130,84,.4);
  }
  .btn-primary:hover { transform: translateY(-2px); background: var(--primary-2); }
  .btn-ghost { color: var(--ink); border: 1.5px solid var(--line); background: white; }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-accent {
    background: var(--lime); color: var(--primary-deep);
    box-shadow: 0 6px 16px -6px rgba(168,234,76,.4);
  }
  .btn-accent:hover { transform: translateY(-2px); background: var(--lime-2); }

  /* ——— pill / chip ——— */
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 1px solid var(--line);
    padding: 7px 14px; border-radius: 100px;
    font-size: 13px; font-weight: 500; color: var(--ink-2);
  }
  .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

  .badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 12px; border-radius: 100px;
    background: white; border: 1px solid var(--line);
    font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  }

  /* ——— cards ——— */
  .card {
    background: var(--card); border: 1px solid var(--line-2);
    border-radius: var(--r-lg); padding: 28px;
    box-shadow: var(--shadow-sm);
  }

  /* striped placeholder for imagery */
  .ph {
    border-radius: var(--r); overflow: hidden; position: relative;
    background:
      repeating-linear-gradient(135deg,
        color-mix(in oklab, var(--ink) 8%, transparent) 0 1px,
        transparent 1px 12px),
      color-mix(in oklab, var(--ink) 4%, transparent);
    display: grid; place-items: center;
    color: color-mix(in oklab, var(--ink) 55%, transparent);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  }

  /* fade-in helper */
  .fade-in { animation: fadeIn .35s ease both; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

  /* shake */
  @keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
  .shake { animation: shake .25s; }

  /* App mount */
  #root { isolation: isolate; }

  /* utility */
  .muted { color: var(--ink-3); }
  .small { font-size: 14px; }
  .xsmall { font-size: 12px; }
  .grid { display: grid; }
  .flex { display: flex; }
  .center { display: grid; place-items: center; }

  /* ——— motion ——— */
  :root {
    /* elastic / spring easings (Lemonade vibe) */
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --ease-elastic: cubic-bezier(.68, -0.55, .27, 1.55);
    --ease-smooth: cubic-bezier(.2, .7, .2, 1);
  }

  .reveal {
    opacity: 0;
    transform: translateY(var(--ry, 28px)) scale(.94);
    transition: opacity .7s var(--ease-spring) var(--rd, 0ms),
                transform .85s var(--ease-spring) var(--rd, 0ms);
    will-change: opacity, transform;
  }
  .reveal.is-on { opacity: 1; transform: none; }

  /* word-by-word hero reveal */
  @keyframes pop-in {
    0%   { opacity: 0; transform: translateY(28px) scale(.85); }
    60%  { opacity: 1; transform: translateY(-3px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-copy > * { animation: pop-in .85s var(--ease-spring) both; }
  .hero-copy > *:nth-child(1) { animation-delay: 0ms; }
  .hero-copy > *:nth-child(2) { animation-delay: 100ms; }
  .hero-copy > *:nth-child(3) { animation-delay: 200ms; }
  .hero-copy > *:nth-child(4) { animation-delay: 300ms; }
  .hero-copy > *:nth-child(5) { animation-delay: 400ms; }
  /* don't double-animate h1 — its word spans handle their own entrance */
  .hero-copy h1 { animation: none; opacity: 1; }

  .word { display: inline-block; opacity: 0; animation: pop-in .7s var(--ease-spring) both; padding-inline-end: .28em; }

  .hero-form {
    animation: pop-in 1s var(--ease-spring) 200ms both;
    transform-origin: top center;
  }

  /* sticker treatment — cards with subtle tilt, straighten on hover */
  .sticker {
    transform: rotate(var(--tilt, 0deg));
    transition: transform .5s var(--ease-spring), box-shadow .35s ease;
    will-change: transform;
  }
  .sticker:hover {
    transform: rotate(0deg) translateY(-4px) scale(1.015);
    box-shadow: 0 24px 48px -20px rgba(20,30,50,.22);
  }

  /* magnetic / bouncy CTA */
  .btn, .nav-cta, .feat-cta, .goal-cta {
    transition: transform .35s var(--ease-spring), background .2s ease, box-shadow .25s ease, color .2s ease;
  }
  .btn:hover, .nav-cta:hover, .feat-cta:hover { transform: translateY(-2px) scale(1.03); }
  .btn:active, .nav-cta:active, .feat-cta:active { transform: translateY(0) scale(.97); transition-duration: .12s; }

  /* glyph wobble on feat-row hover */
  @keyframes wobble {
    0% { transform: rotate(0); }
    20% { transform: rotate(-3deg); }
    40% { transform: rotate(3deg); }
    60% { transform: rotate(-2deg); }
    80% { transform: rotate(1deg); }
    100% { transform: rotate(0); }
  }
  .feat-row:hover .glyph { animation: wobble .8s var(--ease-spring); }

  /* hero entrance for non hero-copy elements (kept for reveal) */

  /* gentle floating glyph parts (kept) */
  @keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
  @keyframes float-y-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
  @keyframes pulse-soft { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .7; transform: scale(1.08); } }
  @keyframes draw-line {
    from { stroke-dashoffset: 500; }
    to   { stroke-dashoffset: 0; }
  }

  /* drifting background blobs */
  @keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(20px, -30px) rotate(8deg) scale(1.05); }
    66% { transform: translate(-15px, 25px) rotate(-6deg) scale(.95); }
  }
  .bg-blob {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(40px); opacity: .55;
    animation: drift 18s ease-in-out infinite;
    will-change: transform;
  }

  /* number pop-in for big stat */
  @keyframes num-pop {
    0% { opacity: 0; transform: scale(.4) rotate(-8deg); }
    60% { opacity: 1; transform: scale(1.08) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
  }
  .reveal.is-on .goal-stat-n { animation: num-pop .9s var(--ease-spring) calc(var(--rd, 0ms) + 200ms) both; transform-origin: right center; }

  /* glyph element animations */
  .glyph .g-bar { transform-box: fill-box; animation: float-y-soft 4s ease-in-out infinite; }
  .glyph .g-bar-0 { animation-delay: 0s; }
  .glyph .g-bar-1 { animation-delay: .2s; }
  .glyph .g-bar-2 { animation-delay: .4s; }
  .glyph .g-bar-3 { animation-delay: .6s; }
  .glyph .g-bar-4 { animation-delay: .8s; }
  .glyph .g-wallet { transform-box: fill-box; animation: float-y 4.5s ease-in-out infinite; transform-origin: center; }
  .glyph .g-spark { animation: draw-line 2.4s ease-out both; animation-delay: .2s; }
  .glyph .g-dot { transform-box: fill-box; transform-origin: center; animation: pulse-soft 2.2s ease-in-out infinite; animation-delay: 2.4s; }
  .glyph .g-calc { transform-box: fill-box; animation: float-y 5s ease-in-out infinite; transform-origin: center; }
  .glyph .g-shield { transform-box: fill-box; animation: float-y 5s ease-in-out infinite; transform-origin: center; }
  .glyph .g-tag { transform-box: fill-box; animation: float-y-soft 3.6s ease-in-out infinite; transform-origin: center; }
  .glyph .g-tag-1 { animation-delay: 0s; }
  .glyph .g-tag-2 { animation-delay: .8s; }
  .glyph .g-tag-3 { animation-delay: 1.4s; }
  .glyph .g-tag-4 { animation-delay: 2s; }
  .glyph .g-doc { transform-box: fill-box; animation: float-y-soft 5s ease-in-out infinite; transform-origin: center; }
  .glyph .g-bubble { transform-box: fill-box; animation: float-y 4s ease-in-out infinite; transform-origin: center; }
  .glyph .g-bubble .g-dot-1,
  .glyph .g-bubble .g-dot-2,
  .glyph .g-bubble .g-dot-3 {
    transform-box: fill-box; transform-origin: center;
    animation: pulse-soft 1.4s ease-in-out infinite;
  }
  .glyph .g-bubble .g-dot-1 { animation-delay: 0s; }
  .glyph .g-bubble .g-dot-2 { animation-delay: .2s; }
  .glyph .g-bubble .g-dot-3 { animation-delay: .4s; }

  /* form option hover wiggle */
  @keyframes nudge { 0% { transform: translateX(0); } 50% { transform: translateX(-3px); } 100% { transform: translateX(0); } }
  .opt:hover { animation: nudge .3s var(--ease-spring); }

  /* ——— Floating Widgets: WhatsApp + Accessibility ——— */
  .wa-fab, .acc-fab {
    position: fixed; bottom: 22px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center;
    box-shadow: 0 10px 24px -8px rgba(20,30,50,.3), 0 4px 8px rgba(20,30,50,.12);
    cursor: pointer; border: none;
    transition: transform .3s var(--ease-spring), box-shadow .3s ease;
    will-change: transform;
  }
  .wa-fab:hover, .acc-fab:hover { transform: translateY(-3px) scale(1.06); }
  .wa-fab:active, .acc-fab:active { transform: translateY(0) scale(.95); transition-duration: .15s; }

  .wa-fab {
    inset-inline-start: 22px;
    background: #25D366;
    text-decoration: none;
  }
  .wa-fab::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; background: #25D366;
    opacity: .35; z-index: -1;
    animation: wa-ping 2.5s ease-out infinite;
  }
  @keyframes wa-ping {
    0% { transform: scale(.85); opacity: .5; }
    100% { transform: scale(1.45); opacity: 0; }
  }
  .wa-bubble {
    position: absolute; inset-inline-start: 68px; top: 50%;
    transform: translateY(-50%);
    background: var(--ink); color: white;
    padding: 9px 14px; border-radius: 100px;
    font-size: 13px; font-weight: 600; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s var(--ease-spring);
  }
  .wa-fab:hover .wa-bubble { opacity: 1; transform: translateY(-50%) translateX(4px); }
  @media (max-width: 480px) { .wa-bubble { display: none; } }

  .acc-fab {
    inset-inline-end: 22px;
    background: #1657c8;
  }

  @media (max-width: 480px) {
    .wa-fab, .acc-fab { width: 50px; height: 50px; bottom: 16px; }
    .wa-fab { inset-inline-start: 16px; }
    .acc-fab { inset-inline-end: 16px; }
  }

  /* — Accessibility panel — */
  .acc-backdrop {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(15, 20, 35, .35);
    backdrop-filter: blur(2px);
    animation: fadeIn .2s ease both;
  }
  .acc-panel {
    position: fixed; top: 0; bottom: 0;
    inset-inline-end: 0;
    width: 360px; max-width: 92vw;
    background: white; z-index: 100;
    display: flex; flex-direction: column;
    box-shadow: -20px 0 60px -20px rgba(20,30,50,.3);
    transform: translateX(110%);
    transition: transform .45s var(--ease-spring);
  }
  [dir="rtl"] .acc-panel { transform: translateX(-110%); }
  .acc-panel.is-open { transform: translateX(0); }

  .acc-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--line-2);
  }
  .acc-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-2); color: var(--ink);
    font-size: 24px; font-weight: 300; line-height: 1;
    border: none; cursor: pointer; flex: none;
    transition: background .15s;
  }
  .acc-close:hover { background: var(--line); }

  .acc-body { overflow-y: auto; padding: 18px 20px 8px; flex: 1; }
  .acc-sec { padding: 16px 0; border-bottom: 1px solid var(--line-2); }
  .acc-sec:last-child { border-bottom: none; }
  .acc-title { font-family: 'Rubik'; font-size: 12.5px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }

  .acc-pills { display: flex; gap: 6px; flex-wrap: wrap; }
  .acc-pill {
    flex: 1; min-width: 56px;
    background: white; border: 1.5px solid var(--line);
    border-radius: 14px; padding: 10px 6px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 600; color: var(--ink-2);
    cursor: pointer; transition: all .2s var(--ease-spring);
  }
  .acc-pill:hover { border-color: #1657c8; transform: translateY(-1px); }
  .acc-pill.on { background: #1657c8; color: white; border-color: #1657c8; }
  .acc-pill-a { font-family: 'Rubik'; font-weight: 800; line-height: 1; }

  .acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .acc-tile {
    background: white; border: 1.5px solid var(--line);
    border-radius: 14px; padding: 12px 8px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    cursor: pointer; transition: all .2s var(--ease-spring);
  }
  .acc-tile:hover { border-color: #1657c8; transform: translateY(-1px); }
  .acc-tile.on { border-color: #1657c8; box-shadow: 0 0 0 3px rgba(22,87,200,.15); }
  .acc-tile-label { font-size: 11px; font-weight: 600; color: var(--ink); text-align: center; line-height: 1.3; }

  .acc-toggles { display: grid; gap: 8px; }
  .acc-toggle {
    background: white; border: 1.5px solid var(--line);
    border-radius: 12px; padding: 12px 14px;
    display: flex; align-items: center; gap: 12px;
    cursor: pointer; transition: all .2s ease;
    text-align: start;
  }
  .acc-toggle:hover { border-color: #1657c8; }
  .acc-toggle.on { background: rgba(22,87,200,.06); border-color: #1657c8; }
  .acc-toggle-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--bg-2); display: grid; place-items: center;
    font-size: 16px; flex: none;
  }
  .acc-toggle.on .acc-toggle-icon { background: #1657c8; color: white; }
  .acc-toggle-text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
  .acc-toggle-label { font-weight: 600; font-size: 14px; color: var(--ink); }
  .acc-toggle-sub { color: var(--ink-3); }
  .acc-toggle-switch {
    width: 36px; height: 22px; border-radius: 100px;
    background: var(--line); position: relative; flex: none;
    transition: background .2s;
  }
  .acc-toggle.on .acc-toggle-switch { background: #1657c8; }
  .acc-toggle-knob {
    position: absolute; top: 2px;
    inset-inline-start: 2px;
    width: 18px; height: 18px; border-radius: 50%; background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    transition: transform .25s var(--ease-spring);
  }
  .acc-toggle.on .acc-toggle-knob { transform: translateX(-14px); }
  [dir="ltr"] .acc-toggle.on .acc-toggle-knob { transform: translateX(14px); }

  .acc-reset {
    width: 100%; padding: 12px;
    background: var(--ink); color: white;
    border: none; border-radius: 12px;
    font-weight: 600; font-size: 14px;
    cursor: pointer; transition: background .15s;
  }
  .acc-reset:hover { background: #1657c8; }
  .acc-statement {
    display: block; text-align: center; margin-top: 12px;
    font-size: 13px; color: var(--ink-2); text-decoration: none; font-weight: 500;
  }
  .acc-statement:hover { color: #1657c8; }

  .acc-foot {
    padding: 14px 24px;
    background: var(--bg-2);
    border-top: 1px solid var(--line-2);
    line-height: 1.55;
  }
  .acc-foot a { color: #1657c8; text-decoration: underline; }

  /* — Accessibility CSS adjustments (applied via body classes) — */
  body.acc-contrast { background: #000 !important; }
  body.acc-contrast,
  body.acc-contrast * {
    background-color: transparent !important;
    color: #ffe600 !important;
    border-color: #ffe600 !important;
  }
  body.acc-contrast .wa-fab,
  body.acc-contrast .acc-fab,
  body.acc-contrast .acc-panel,
  body.acc-contrast .acc-panel * { background-color: #000 !important; color: #ffe600 !important; border-color: #ffe600 !important; }
  body.acc-contrast a { text-decoration: underline !important; }
  body.acc-contrast img, body.acc-contrast svg { filter: invert(1) brightness(1.4) !important; }

  body.acc-invert { filter: invert(1) hue-rotate(180deg); }
  body.acc-invert img, body.acc-invert svg { filter: invert(1) hue-rotate(180deg); }

  body.acc-gray { filter: grayscale(1); }
  body.acc-invert.acc-gray { filter: invert(1) hue-rotate(180deg) grayscale(1); }

  body.acc-links a {
    text-decoration: underline !important;
    background: #ffe600 !important;
    color: #000 !important;
    padding: 2px 4px !important;
    border-radius: 4px !important;
  }
  body.acc-headings h1,
  body.acc-headings h2,
  body.acc-headings h3,
  body.acc-headings h4 {
    background: linear-gradient(transparent 60%, rgba(255, 230, 0, .55) 60%);
    padding: 0 4px;
  }

  body.acc-no-anim, body.acc-no-anim * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  body.acc-no-anim .marquee-track { animation-play-state: paused !important; }

  body.acc-readable {
    font-family: 'Assistant', Verdana, Tahoma, sans-serif !important;
  }
  body.acc-readable * {
    letter-spacing: .03em !important;
    line-height: 1.75 !important;
    word-spacing: .12em !important;
  }

  body.acc-cursor, body.acc-cursor * {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M4 4 L4 32 L12 24 L17 36 L21 34 L16 22 L26 22 Z' fill='%231657c8' stroke='white' stroke-width='2.5' stroke-linejoin='round'/></svg>") 4 4, auto !important;
  }

  /* reduce motion */
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-copy > *, .hero-form, .sticker, .word { animation: none; opacity: 1; transform: none; }
    .glyph *, .bg-blob, .feat-row:hover .glyph { animation: none !important; }
    .reveal.is-on .goal-stat-n { animation: none; }
  }
