
    /* =====================================================================
       Scoped premium styles (namespace: .ezn-)
       ===================================================================== */

    /* Hide sitewide chrome we don't want on this page:
       - the SEO breadcrumb partial rendered by layouts.public
       - the layout's #content-box fallback (empty card-header + Edit Page btn)
       - the share icons row that layouts.public appends for post/page types
       - the .ezc blog-comments (Discussion) livewire block                    */
    .seo-breadcrumbs { display: none !important; }
    body:has(.ezn-page) #content-box,
    body:has(.ezn-page) .social-share,
    body:has(.ezn-page) .ezc,
    body:has(.ezn-page) [class*="blog-comments"] { display: none !important; }
    /* Fallback for browsers without :has() — the JS pass at the bottom of
       this view removes each block by id/class as a belt-and-braces measure. */

    /* Force a clean white background across the sitewide wrappers ONLY on
       this page. `main.css` paints a soft grey on .page-content site-wide;
       overriding it locally keeps every other page untouched.               */
    body:has(.ezn-page),
    body:has(.ezn-page) .page-wrapper,
    body:has(.ezn-page) .page-content,
    body:has(.ezn-page) .container,
    body:has(.ezn-page) .card,
    body:has(.ezn-page) .card-body { background: #ffffff !important; }

    .ezn-page {
        --ezn-primary:      #3680ED;
        --ezn-primary-600:  #2060C0;
        --ezn-primary-tint: #EAF2FD;
        --ezn-primary-tint2:#F4F8FE;
        --ezn-grad:         linear-gradient(135deg, #60A4F5 0%, #3680ED 55%, #2060C0 100%);
        --ezn-ring:         rgba(54, 128, 237, .18);

        --ezn-ink:          #0f172a;
        --ezn-body:         #475569;
        --ezn-muted:        #64748b;
        --ezn-line:         #eef2f6;
        --ezn-line-strong:  #e2e8f0;

        --ezn-red-bg:       #EAF2FD;  --ezn-red-fg:    #3680ED;
        --ezn-violet-bg:    #EEE6FF;  --ezn-violet-fg: #4C2FBE;
        --ezn-green-bg:     #E6FCF3;  --ezn-green-fg:  #0CA678;
        --ezn-amber-bg:     #fef9c3;  --ezn-amber-fg:  #ca8a04;

        --ezn-shadow:       0 30px 60px -30px rgba(15, 23, 42, .18);
        --ezn-shadow-red:   0 24px 44px -20px rgba(54, 128, 237, .38);
        --ezn-radius-lg:    28px;
        --ezn-radius-xs:    10px;

        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
        color: var(--ezn-body);
        line-height: 1.55;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .ezn-page * { box-sizing: border-box; }
    .ezn-page a { text-decoration: none; }
    .ezn-page img { max-width: 100%; height: auto; }

    .ezn-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* Hero */
    .ezn-hero { padding: 40px 0 56px; }
    .ezn-hero__grid {
        display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px;
    }
    .ezn-badge {
        display: inline-flex; align-items: center; gap: 8px;
        background: var(--ezn-primary-tint); color: var(--ezn-primary);
        border: 1px solid var(--ezn-primary-tint2);
        padding: 8px 16px; border-radius: 999px;
        font-weight: 700; font-size: 13px; letter-spacing: .02em;
        margin-bottom: 20px;
    }
    .ezn-hero__title {
        color: var(--ezn-ink);
        font-size: clamp(38px, 5.4vw, 62px);
        line-height: 1.05; font-weight: 800; letter-spacing: -.02em;
        margin: 0 0 20px;
    }
    .ezn-text-accent { color: var(--ezn-primary); }
    .ezn-hero__sub {
        color: var(--ezn-body); font-size: 17px; line-height: 1.65;
        max-width: 520px; margin: 0 0 32px;
    }

    .ezn-perks {
        list-style: none; padding: 0; margin: 0;
        display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    }
    .ezn-perk {
        background: #fff; border: 1px solid var(--ezn-line);
        border-radius: 18px; padding: 18px 12px; text-align: center;
        box-shadow: 0 2px 4px rgba(15, 23, 42, .04);
        transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .ezn-perk:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 32px -18px rgba(54, 128, 237, .28);
        border-color: var(--ezn-primary-tint2);
    }
    .ezn-perk__ico {
        display: inline-flex; align-items: center; justify-content: center;
        width: 42px; height: 42px; border-radius: 12px;
        background: var(--ezn-primary-tint); color: var(--ezn-primary);
        margin-bottom: 10px; font-size: 17px;
    }
    .ezn-perk__txt { display: block; font-weight: 700; color: var(--ezn-ink); font-size: 13px; line-height: 1.35; }

    .ezn-hero__img-wrap { display: flex; align-items: center; justify-content: center; }
    .ezn-hero__img {
        width: 100%; max-height: 520px; object-fit: contain;
        /* No filter, no float animation — render the illustration flat. */
    }

    @media (max-width: 960px) {
        .ezn-hero__grid { grid-template-columns: 1fr; gap: 40px; }
        .ezn-hero__img-wrap { order: -1; }
        .ezn-hero__img { max-height: 380px; }
        .ezn-hero__sub { max-width: none; }
    }
    @media (max-width: 520px) { .ezn-perks { grid-template-columns: repeat(2, 1fr); } }

    /* Subscribe card */
    .ezn-main { padding: 0 24px 60px; }
    /* Give the card an outer wrapper so we can host the animated glow WITHOUT
       clipping the envelope icon that pokes above the top edge. */
    .ezn-sub-wrap {
        max-width: 760px; margin: 40px auto 20px;
        position: relative; padding-top: 32px;
    }
    .ezn-sub {
        background: #fff; border: 1px solid var(--ezn-line);
        border-radius: var(--ezn-radius-lg);
        padding: 56px 44px 40px;
        box-shadow: var(--ezn-shadow);
        position: relative;
        z-index: 1;
    }
    /* Effect 1 — animated gradient ring drawn as a border via mask (kept inside
       the card so it stays a hairline; no overflow:hidden needed on the card). */
    .ezn-sub::before {
        content: '';
        position: absolute; inset: 0;
        border-radius: inherit;
        padding: 2px;
        background: linear-gradient(135deg, #CFE0FA 0%, #3680ED 50%, #CFE0FA 100%);
        background-size: 200% 200%;
        -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
                mask-composite: exclude;
        opacity: .55;
        animation: eznBorder 6s linear infinite;
        pointer-events: none;
    }
    /* Effect 2 — soft breathing halo behind the card, sits on the wrapper so
       it can extend beyond the card edges without any clipping. */
    .ezn-sub-wrap::after {
        content: '';
        position: absolute; left: 50%; top: 50%;
        width: 92%; height: 70%;
        transform: translate(-50%, -50%);
        border-radius: 40% 40% 60% 60% / 50%;
        background: radial-gradient(closest-side, rgba(54, 128, 237, .18), transparent 70%);
        filter: blur(30px);
        z-index: 0;
        animation: eznPulse 4.5s ease-in-out infinite;
        pointer-events: none;
    }
    @keyframes eznBorder { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
    @keyframes eznPulse  { 0%,100% { opacity: .55; transform: translate(-50%, -50%) scale(1); } 50% { opacity: .9; transform: translate(-50%, -50%) scale(1.06); } }

    .ezn-sub__ico {
        position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
        width: 64px; height: 64px; border-radius: 20px;
        background: var(--ezn-grad); color: #fff;
        display: inline-flex; align-items: center; justify-content: center;
        font-size: 24px; box-shadow: var(--ezn-shadow-red);
        animation: eznIcoPulse 3s ease-in-out infinite;
        z-index: 3;
    }
    @keyframes eznIcoPulse {
        0%, 100% { box-shadow: 0 24px 44px -20px rgba(54, 128, 237, .38), 0 0 0 0 rgba(54, 128, 237, .5); }
        50%      { box-shadow: 0 24px 44px -20px rgba(54, 128, 237, .38), 0 0 0 12px rgba(54, 128, 237, 0); }
    }
    .ezn-sub__title {
        text-align: center; color: var(--ezn-ink);
        font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.01em;
        margin: 0 0 10px;
    }
    .ezn-sub__title .ezn-count { color: var(--ezn-primary); }
    .ezn-sub__sub { text-align: center; color: var(--ezn-muted); font-size: 15px; margin: 0 0 28px; }

    .ezn-form { margin: 0; }
    .ezn-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
    .ezn-field { display: block; }
    .ezn-label { display: block; font-weight: 600; color: var(--ezn-ink); font-size: 14px; margin-bottom: 8px; }
    .ezn-input-wrap { position: relative; }
    .ezn-input-ico {
        position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
        color: var(--ezn-muted); pointer-events: none; font-size: 14px;
    }
    .ezn-input {
        width: 100%; height: 52px;
        padding: 0 16px 0 44px;
        border: 1px solid var(--ezn-line-strong);
        background: #fff; border-radius: var(--ezn-radius-xs);
        font: inherit; color: var(--ezn-ink);
        transition: border-color .2s, box-shadow .2s;
    }
    .ezn-input::placeholder { color: #94a3b8; }
    .ezn-input:focus {
        outline: none; border-color: var(--ezn-primary);
        box-shadow: 0 0 0 4px var(--ezn-ring);
    }
    .ezn-input.is-error { border-color: var(--ezn-primary); box-shadow: 0 0 0 4px rgba(54, 128, 237, .12); }
    .ezn-error { display: none; color: var(--ezn-primary); font-size: 13px; margin-top: 6px; font-weight: 500; }

    .ezn-btn {
        display: inline-flex; align-items: center; justify-content: center; gap: 8px;
        border: 0; border-radius: 12px;
        padding: 12px 20px;
        font-weight: 600; font-family: inherit; font-size: 15px;
        cursor: pointer; text-decoration: none;
        transition: transform .15s, box-shadow .2s;
        line-height: 1; position: relative; overflow: hidden;
    }
    .ezn-btn--primary {
        background: var(--ezn-grad); color: #fff;
        box-shadow: var(--ezn-shadow-red);
    }
    .ezn-btn--primary:hover {
        color: #fff; transform: translateY(-2px);
        box-shadow: 0 26px 44px -20px rgba(54, 128, 237, .5);
    }
    .ezn-btn--block { width: 100%; height: 56px; font-size: 17px; padding: 0 24px; border-radius: var(--ezn-radius-xs); }
    .ezn-btn--ghost { background: transparent; color: var(--ezn-primary); border: 1px solid var(--ezn-primary); }
    .ezn-btn__spin {
        display: none; width: 18px; height: 18px;
        border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff;
        border-radius: 50%; animation: eznSpin .8s linear infinite;
    }
    .ezn-btn.is-loading .ezn-btn__lbl,
    .ezn-btn.is-loading .ezn-btn__arr { display: none; }
    .ezn-btn.is-loading .ezn-btn__spin { display: inline-block; }
    .ezn-btn.is-loading { cursor: progress; }
    @keyframes eznSpin { to { transform: rotate(360deg); } }
    .ezn-btn__arr { transition: transform .2s; }
    .ezn-btn:hover .ezn-btn__arr { transform: translateX(2px); }

    .ezn-fine {
        text-align: center; color: var(--ezn-muted); font-size: 13px;
        margin: 18px 0 0;
        display: flex; align-items: center; justify-content: center;
        gap: 6px; flex-wrap: wrap;
    }
    .ezn-fine i { color: var(--ezn-primary); }
    .ezn-fine a { color: var(--ezn-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

    @media (max-width: 640px) {
        .ezn-sub { padding: 46px 22px 28px; border-radius: 22px; }
        .ezn-form__row { grid-template-columns: 1fr; gap: 16px; }
        .ezn-btn--block { height: 52px; font-size: 16px; }
    }

    .ezn-success { text-align: center; padding: 20px 0 8px; color: var(--ezn-primary); }
    .ezn-success__ico { display: block; margin: 0 auto 12px; width: 64px; }
    .ezn-success h3 { margin: 8px 0 6px; color: var(--ezn-ink); font-size: 22px; font-weight: 800; }
    .ezn-success p { color: var(--ezn-muted); margin: 0 0 18px; }

    /* Why / Worth it */
    .ezn-why { padding: 80px 24px 40px; text-align: center; }
    .ezn-eyebrow {
        display: inline-block; color: var(--ezn-primary);
        font-size: 12px; font-weight: 800; letter-spacing: .22em;
        text-transform: uppercase; margin-bottom: 12px;
    }
    .ezn-h2 {
        color: var(--ezn-ink); font-size: clamp(28px, 3.6vw, 40px);
        font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em;
    }
    .ezn-h2-line { display: block; width: 56px; height: 4px; background: var(--ezn-primary); border-radius: 4px; margin: 14px auto 40px; }

    .ezn-worth { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
    .ezn-worth__card {
        background: #fff; border: 1px solid var(--ezn-line);
        border-radius: 20px; padding: 28px 20px 24px;
        box-shadow: 0 2px 4px rgba(15, 23, 42, .04);
        transition: transform .25s, box-shadow .25s;
    }
    .ezn-worth__card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -22px rgba(15, 23, 42, .2); }
    .ezn-worth__ico {
        display: inline-flex; align-items: center; justify-content: center;
        width: 56px; height: 56px; border-radius: 16px;
        font-size: 22px; margin-bottom: 16px;
    }
    .ezn-worth__card h3 { color: var(--ezn-ink); font-size: 17px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.005em; }
    .ezn-worth__card p { color: var(--ezn-muted); font-size: 14px; margin: 0; line-height: 1.6; }

    .ezn-tone--red    .ezn-worth__ico { background: var(--ezn-red-bg);    color: var(--ezn-red-fg); }
    .ezn-tone--violet .ezn-worth__ico { background: var(--ezn-violet-bg); color: var(--ezn-violet-fg); }
    .ezn-tone--green  .ezn-worth__ico { background: var(--ezn-green-bg);  color: var(--ezn-green-fg); }
    .ezn-tone--amber  .ezn-worth__ico { background: var(--ezn-amber-bg);  color: var(--ezn-amber-fg); }

    @media (max-width: 900px) { .ezn-worth { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .ezn-worth { grid-template-columns: 1fr; } }

    /* CTA */
    .ezn-cta-wrap { padding: 40px 24px 80px; }
    .ezn-cta {
        display: grid; grid-template-columns: 160px 1fr auto;
        align-items: center; gap: 32px;
        background:
            radial-gradient(60% 100% at 100% 0, rgba(54, 128, 237, .08), transparent 60%),
            linear-gradient(135deg, #EAF2FD 0%, #F4F8FE 100%);
        border: 1px solid var(--ezn-primary-tint2);
        border-radius: 24px; padding: 28px 36px;
        box-shadow: 0 24px 60px -30px rgba(54, 128, 237, .28);
    }
    .ezn-cta__art { display: flex; align-items: center; justify-content: center; }
    .ezn-cta__art svg { width: 130px; height: auto; }
    .ezn-cta__title { color: var(--ezn-ink); font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; margin: 0 0 6px; line-height: 1.25; letter-spacing: -.01em; }
    .ezn-cta__text { color: var(--ezn-muted); font-size: 15px; margin: 0; max-width: 620px; }
    .ezn-cta__btn { white-space: nowrap; padding: 14px 24px; font-size: 15px; }

    @media (max-width: 900px) {
        .ezn-cta { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; gap: 18px; }
        .ezn-cta__art svg { width: 110px; }
        .ezn-cta__text { margin-left: auto; margin-right: auto; }
        .ezn-cta__btn { justify-self: center; }
    }

    /* ══════════════════════════ TOASTS ══════════════════════════
       These are emitted by newsletter/assets/js/main.js as
       `.nl-toast` / `.nl-toast__icon` / `.nl-toast__body` / `.nl-toast__close`.
       The rules here used to be written against `.ezn-toast*`, a name nothing
       ever renders — so every message on this page appeared as naked black text
       with a default grey button. The selectors below are the ones main.js
       actually emits; the `.ezn-` twins are kept only so a future rename of the
       JS does not silently strip the styling again.

       The icon is drawn from a masked inline SVG rather than the Font Awesome
       glyph main.js asks for: it requests FA6 names (`fa-solid fa-circle-check`)
       and this build is FA Free 5.15.3, where those do not exist — so the <i>
       renders a blank box. Masking makes the icon independent of any icon font,
       and `content: none` kills the empty FA pseudo underneath. */
    .nl-toast-wrap,
    .ezn-toast-wrap {
        position: fixed;
        top: calc(var(--hd-h, 76px) + 16px);
        right: 20px;
        z-index: 2147483000;      /* above the sticky header and the mega panels */
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: min(380px, calc(100vw - 32px));
        pointer-events: none;      /* the page stays clickable between toasts */
    }

    .nl-toast,
    .ezn-toast {
        --nl-accent: var(--ezn-primary, #3680ED);
        --nl-tint:   rgba(54, 128, 237, .13);
        --nl-ico:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 11v5.4M12 7.7h.01'/%3E%3C/svg%3E");

        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 14px 14px 18px;
        border-radius: 18px;
        border: 1px solid var(--ezn-line, #ECECEC);
        background: rgba(255, 255, 255, .92);
        -webkit-backdrop-filter: blur(14px) saturate(140%);
        backdrop-filter: blur(14px) saturate(140%);
        box-shadow: 0 24px 48px -28px rgba(15, 23, 42, .55),
                    0 2px 8px -4px rgba(15, 23, 42, .18),
                    inset 0 1px 0 rgba(255, 255, 255, .7);
        color: var(--ezn-ink, #111);
        font-size: 14px;
        pointer-events: auto;
        /* Slides in from the right and settles. main.js removes `is-show` and
           deletes the node 400ms later, so nothing here may exceed that. */
        transform: translateX(26px) scale(.97);
        opacity: 0;
        transition: transform .34s cubic-bezier(.22, 1, .36, 1),
                    opacity .28s ease,
                    box-shadow .24s ease;
    }

    .nl-toast.is-show,
    .ezn-toast.is-show { transform: translateX(0) scale(1); opacity: 1; }

    /* Accent rail — the fastest read of "did that work?". */
    .nl-toast::before {
        content: '';
        position: absolute;
        top: 0; bottom: 0; left: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--nl-accent), color-mix(in srgb, var(--nl-accent) 55%, #fff));
        border-radius: 0 4px 4px 0;
    }

    /* Countdown to the 4.5s auto-dismiss, so the toast is not just gone. */
    .nl-toast::after {
        content: '';
        position: absolute;
        left: 0; bottom: 0;
        height: 2px;
        width: 100%;
        transform-origin: left center;
        background: var(--nl-accent);
        opacity: .32;
        animation: nl-toast-timer 4.5s linear forwards;
    }

    @keyframes nl-toast-timer { from { transform: scaleX(1); } to { transform: scaleX(0); } }

    .nl-toast__icon,
    .ezn-toast__ico {
        position: relative;
        flex: none;
        width: 34px; height: 34px;
        border-radius: 11px;
        background: var(--nl-tint);
        font-size: 0;            /* no glyph, no stray line-height */
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
    }

    .nl-toast__icon::before { content: none; }   /* kill the empty FA pseudo */

    .nl-toast__icon::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--nl-accent);
        -webkit-mask: var(--nl-ico) center / 19px 19px no-repeat;
        mask: var(--nl-ico) center / 19px 19px no-repeat;
    }

    .nl-toast__body,
    .ezn-toast__body {
        flex: 1 1 auto;
        min-width: 0;
        padding-top: 6px;
        line-height: 1.5;
        font-weight: 600;
        color: var(--ezn-ink, #111);
        overflow-wrap: break-word;   /* long messages wrap, never truncate */
    }

    .nl-toast__close,
    .ezn-toast__close {
        flex: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px; height: 28px;
        margin-top: 2px;
        padding: 0;
        border: 0;
        border-radius: 9px;
        background: transparent;
        color: var(--ezn-muted, #666);
        font-size: 19px;
        line-height: 1;
        cursor: pointer;
        transition: background-color .18s ease, color .18s ease, transform .18s ease;
    }

    /* Per-type accent + icon. Semantic, and the only thing that changes. */
    .nl-toast--success {
        --nl-accent: #0CA678;
        --nl-tint: rgba(12, 166, 120, .14);
        --nl-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8.4 12.3 2.5 2.5 4.7-5.1'/%3E%3C/svg%3E");
    }

    .nl-toast--error {
        --nl-accent: #E03131;
        --nl-tint: rgba(224, 49, 49, .13);
        --nl-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7.6v5.2M12 16.4h.01'/%3E%3C/svg%3E");
    }

    .nl-toast--warning {
        --nl-accent: #B45309;
        --nl-tint: rgba(245, 158, 11, .16);
        --nl-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.3 3.9 2.6 17.3A2 2 0 0 0 4.3 20h15.4a2 2 0 0 0 1.7-2.7L13.7 3.9a2 2 0 0 0-3.4 0Z'/%3E%3Cpath d='M12 9v4.2M12 16.8h.01'/%3E%3C/svg%3E");
    }

    @media (hover: hover) and (pointer: fine) {
        .nl-toast:hover {
            box-shadow: 0 30px 56px -28px rgba(15, 23, 42, .62),
                        0 2px 8px -4px rgba(15, 23, 42, .2),
                        inset 0 1px 0 rgba(255, 255, 255, .7);
        }
        /* Reading a long message should not race the timer. */
        .nl-toast:hover::after { animation-play-state: paused; }
        .nl-toast__close:hover { background: rgba(15, 23, 42, .07); color: var(--ezn-ink, #111); transform: scale(1.06); }
    }

    .nl-toast__close:focus-visible {
        outline: 3px solid rgba(54, 128, 237, .3);
        outline-offset: 2px;
    }

    body.theme-dark .nl-toast,
    body.theme-dark .ezn-toast {
        border-color: rgba(255, 255, 255, .12);
        background: rgba(26, 27, 32, .92);
        color: #F1F1F2;
        box-shadow: 0 26px 50px -26px rgba(0, 0, 0, .95),
                    inset 0 1px 0 rgba(255, 255, 255, .06);
    }

    body.theme-dark .nl-toast__body { color: #F1F1F2; }
    body.theme-dark .nl-toast__icon { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); }
    body.theme-dark .nl-toast__close { color: #A8ADB8; }
    body.theme-dark .nl-toast__close:hover { background: rgba(255, 255, 255, .1); color: #fff; }

    /* Phones: bottom of the screen, full width — top-right is the one corner a
       thumb cannot reach, and the header already owns it. */
    @media (max-width: 640px) {
        .nl-toast-wrap,
        .ezn-toast-wrap {
            top: auto;
            bottom: 16px;
            left: 12px;
            right: 12px;
            width: auto;
        }
        .nl-toast,
        .ezn-toast { transform: translateY(18px) scale(.98); }
        .nl-toast.is-show,
        .ezn-toast.is-show { transform: translateY(0) scale(1); }
    }

    @media (prefers-reduced-motion: reduce) {
        .ezn-page * { transition: none !important; animation: none !important; }
    }

    /* Dark mode — design.md §2.2 */
    body.theme-dark:has(.ezn-page),
    body.theme-dark:has(.ezn-page) .page-wrapper,
    body.theme-dark:has(.ezn-page) .page-content,
    body.theme-dark:has(.ezn-page) .container,
    body.theme-dark:has(.ezn-page) .card,
    body.theme-dark:has(.ezn-page) .card-body { background: #0F0F11 !important; }
    body.theme-dark .ezn-page {
        --ezn-ink: #F5F5F6;
        --ezn-body: #C9C9CE;
        --ezn-muted: #A0A0A6;
        --ezn-line: rgba(255,255,255,.08);
        --ezn-line-strong: rgba(255,255,255,.14);
        --ezn-primary-tint: rgba(54,128,237,.16);
        --ezn-primary-tint2: rgba(54,128,237,.10);
    }
    body.theme-dark .ezn-perk { background: #17171A; border-color: rgba(255,255,255,.08); }
    body.theme-dark .ezn-perk:hover { border-color: rgba(96,164,245,.28); }
    body.theme-dark .ezn-sub { background: #17171A; border-color: rgba(255,255,255,.08); }
    body.theme-dark .ezn-input { background: #1C1C1F; color: #F5F5F6; border-color: rgba(255,255,255,.14); }
    body.theme-dark .ezn-input::placeholder { color: #77777D; }
    body.theme-dark .ezn-toast { background: #17171A; color: #F5F5F6; border: 1px solid rgba(255,255,255,.08); }
    