﻿
        /* Landing page background (scoped) */
        body.landing-page {
            background: var(--bg, #080808);
        }

        .lp-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .lp-orb {
            position: absolute;
            border-radius: 50%;
        }

        /* Soft indigo orb - upper right */
        .lp-orb-a {
            width: 1100px;
            height: 1100px;
            top: -500px;
            right: -300px;
            background: radial-gradient(circle at center,
                    rgba(99, 102, 241, 0.14) 0%,
                    rgba(99, 102, 241, 0.04) 40%,
                    transparent 65%);
        }

        /* Deep indigo orb - lower left */
        .lp-orb-b {
            width: 900px;
            height: 900px;
            bottom: -350px;
            left: -250px;
            background: radial-gradient(circle at center,
                    rgba(79, 70, 229, 0.1) 0%,
                    rgba(67, 56, 202, 0.03) 45%,
                    transparent 68%);
        }

        /* Hero spacer to clear floating nav */
        .hero-spacer {
            height: 70px;
        }

        /* - Orbit system - */
        .hero-orbit-wrap {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            pointer-events: none;
            z-index: 0;
        }

        /* Central glow */
        .hero-orbit-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.025) 50%, transparent 70%);
        }

        /* Readability veil - sits between orbits and text */
        .hero-text-veil {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.75) 35%, rgba(9, 9, 11, 0.35) 60%, transparent 80%);
            z-index: 1;
            pointer-events: none;
        }

        /* Orbit ring base */
        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            border: 1px solid rgba(99, 102, 241, 0.06);
        }

        .orbit-ring-1 {
            width: 360px;
            height: 360px;
            margin-left: -180px;
            margin-top: -180px;
            animation: orbit-spin 55s linear infinite;
        }

        .orbit-ring-2 {
            width: 540px;
            height: 540px;
            margin-left: -270px;
            margin-top: -270px;
            animation: orbit-spin 75s linear infinite reverse;
        }

        .orbit-ring-3 {
            width: 720px;
            height: 720px;
            margin-left: -360px;
            margin-top: -360px;
            animation: orbit-spin 95s linear infinite;
        }

        @keyframes orbit-spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Coin on ring - counter-rotates to stay upright */
        .orbit-coin {
            position: absolute;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(14, 14, 18, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(99, 102, 241, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .orbit-coin img {
            width: 22px;
            height: 22px;
            object-fit: contain;
        }

        /* Position coins at edges of their elliptical ring */
        /* Ring 1 coins */
        .orbit-ring-1 .oc-1 {
            top: -18px;
            left: 50%;
            margin-left: -18px;
        }

        .orbit-ring-1 .oc-2 {
            bottom: -18px;
            left: 50%;
            margin-left: -18px;
        }

        .orbit-ring-1 .oc-3 {
            top: 50%;
            left: -18px;
            margin-top: -18px;
        }

        /* Ring 2 coins */
        .orbit-ring-2 .oc-1 {
            top: -18px;
            left: 50%;
            margin-left: -18px;
        }

        .orbit-ring-2 .oc-2 {
            bottom: -18px;
            left: 50%;
            margin-left: -18px;
        }

        .orbit-ring-2 .oc-3 {
            top: 50%;
            right: -18px;
            margin-top: -18px;
        }

        /* Ring 3 coins */
        .orbit-ring-3 .oc-1 {
            top: -18px;
            left: 50%;
            margin-left: -18px;
        }

        .orbit-ring-3 .oc-2 {
            bottom: -18px;
            left: 50%;
            margin-left: -18px;
        }

        .orbit-ring-3 .oc-3 {
            top: 50%;
            left: -18px;
            margin-top: -18px;
        }

        /* Counter-rotate to keep coins upright */
        .orbit-ring-1 .orbit-coin {
            animation: orbit-unspin 55s linear infinite;
        }

        .orbit-ring-2 .orbit-coin {
            animation: orbit-unspin 75s linear infinite reverse;
        }

        .orbit-ring-3 .orbit-coin {
            animation: orbit-unspin 95s linear infinite;
        }

        @keyframes orbit-unspin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }

        /* Orbit ring faint dashes */
        .orbit-ring::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 50%;
            border: 1px dashed rgba(99, 102, 241, 0.04);
        }

        /* - Announcement pill - */
        .hero-announce-pill {
            display: inline-flex;
            align-items: center;
            gap: 0;
            border-radius: 9999px;
            background: rgba(10, 10, 14, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.09);
            overflow: hidden;
            text-decoration: none;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: border-color 0.2s ease, background 0.2s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
        }

        .hero-announce-pill:hover {
            border-color: rgba(255, 255, 255, 0.16);
            background: rgba(14, 14, 20, 0.85);
        }

        .hap-text {
            color: var(--gray-400);
            font-size: 0.775rem;
            font-weight: 400;
            padding: 0.5rem 1rem;
            line-height: 1;
            letter-spacing: 0.005em;
        }

        .hap-arrow {
            color: var(--gray-600);
            font-size: 0.95rem;
            padding-right: 0.75rem;
            line-height: 1;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .hero-announce-pill:hover .hap-arrow {
            transform: translateX(2px);
            color: var(--gray-400);
        }

        /* - Hero text highlights - */
        .hero-hl {
            color: var(--white);
            font-weight: 800;
        }

        .hero-hl-gradient {
            background: linear-gradient(120deg, #c7d2fe 0%, #818cf8 55%, #6366f1 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* - Hero CTA buttons - */
        .hero-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.75rem 1.85rem;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 9999px;
            background: var(--accent);
            border: 1px solid rgba(99, 102, 241, 0.4);
            color: var(--white);
            text-decoration: none;
            transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        .hero-cta-primary:hover {
            background: var(--accent-hover);
            color: var(--white);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18), 0 6px 20px rgba(99, 102, 241, 0.25);
            transform: translateY(-1px);
        }

        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.75rem 1.85rem;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 9999px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-300);
            text-decoration: none;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .hero-cta-secondary:hover {
            border-color: rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.04);
            color: var(--white);
        }

        /* Responsive orbit */
        @media (max-width: 991.98px) {
            .hero-orbit-wrap {
                width: 600px;
                height: 600px;
            }

            .hero-text-veil {
                width: 400px;
                height: 400px;
            }

            .orbit-ring-1 {
                width: 280px;
                height: 280px;
                margin-left: -140px;
                margin-top: -140px;
            }

            .orbit-ring-2 {
                width: 420px;
                height: 420px;
                margin-left: -210px;
                margin-top: -210px;
            }

            .orbit-ring-3 {
                width: 560px;
                height: 560px;
                margin-left: -280px;
                margin-top: -280px;
            }

            .orbit-coin {
                width: 30px;
                height: 30px;
            }

            .orbit-coin img {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-orbit-wrap {
                width: 400px;
                height: 400px;
            }

            .hero-text-veil {
                width: 280px;
                height: 280px;
            }

            .orbit-ring-1 {
                width: 200px;
                height: 200px;
                margin-left: -100px;
                margin-top: -100px;
            }

            .orbit-ring-2 {
                width: 300px;
                height: 300px;
                margin-left: -150px;
                margin-top: -150px;
            }

            .orbit-ring-3 {
                width: 380px;
                height: 380px;
                margin-left: -190px;
                margin-top: -190px;
            }

            .orbit-coin {
                width: 26px;
                height: 26px;
            }

            .orbit-coin img {
                width: 15px;
                height: 15px;
            }
        }

        /* Reduce motion */
        @media (prefers-reduced-motion: reduce) {

            .orbit-ring,
            .orbit-coin {
                animation: none !important;
            }
        }

        /* - Stats Strip - */
        .stats-strip { padding: 72px 0; }
        .stats-strip-inner {
            display: flex; align-items: stretch;
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            background: rgba(255,255,255,0.02);
            overflow: hidden;
        }
        .stat-item {
            flex: 1; display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            padding: 2.25rem 1.5rem; text-align: center; gap: 0.4rem;
            position: relative;
        }
        .stat-item + .stat-item::before {
            content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
            width: 1px; background: rgba(255,255,255,0.06);
        }
        .stat-num {
            font-size: clamp(2.1rem, 4vw, 2.8rem);
            font-weight: 800; letter-spacing: -0.05em; line-height: 1;
            background: linear-gradient(130deg, #e0e7ff 0%, #a5b4fc 50%, #6366f1 100%);
            -webkit-background-clip: text; background-clip: text; color: transparent;
        }
        .stat-num sup {
            font-size: 0.42em; vertical-align: super; letter-spacing: 0;
            font-weight: 700;
        }
        .stat-label {
            font-size: 0.78rem; color: var(--gray-500);
            font-weight: 400; max-width: 120px; line-height: 1.4;
        }
        @media (max-width: 767.98px) {
            .stats-strip-inner { flex-wrap: wrap; border-radius: 16px; }
            .stat-item { flex-basis: 50%; }
            .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
            .stat-item:nth-child(3)::before { display: none; }
            .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
        }

        /* - How It Works - */
        .hiw-track {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
        }
        /* Connector line that runs through the number circles */
        .hiw-track::before {
            content: '';
            position: absolute;
            top: 27px; /* half of .hiw-num (56px / 2 - 1) */
            left: calc(100% / 6);
            right: calc(100% / 6);
            height: 1px;
            background: linear-gradient(to right,
                transparent 0%,
                rgba(99,102,241,0.3) 15%,
                rgba(99,102,241,0.3) 85%,
                transparent 100%
            );
            z-index: 0;
        }
        .hiw-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }
        .hiw-num {
            width: 56px; height: 56px; border-radius: 50%;
            background: var(--bg);
            border: 1px solid rgba(99,102,241,0.35);
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
            color: var(--accent-text); margin-bottom: 1.5rem;
            /* masks the connector line so the circle sits on top cleanly */
            box-shadow: 0 0 0 5px var(--bg);
        }
        .hiw-icon {
            width: 48px; height: 48px; border-radius: 12px;
            background: rgba(99,102,241,0.08);
            border: 1px solid rgba(99,102,241,0.16);
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.25rem; color: var(--accent-text); margin-bottom: 1.25rem;
        }
        .hiw-step h4 {
            font-size: 1rem; font-weight: 700; color: var(--gray-100); margin-bottom: 0.6rem;
        }
        .hiw-step p {
            font-size: 0.875rem; color: var(--gray-500); line-height: 1.75; margin: 0;
        }
        @media (max-width: 767.98px) {
            .hiw-track { grid-template-columns: 1fr; gap: 3rem; }
            .hiw-track::before { display: none; }
            .hiw-step { padding: 0; }
        }

        /* - Bento Grid (Features) - */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .bento-cell {
            border-radius: 16px;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 1.75rem;
            transition: border-color 0.2s ease, background 0.2s ease;
            overflow: hidden;
        }
        .bento-cell:hover {
            border-color: rgba(99,102,241,0.22);
            background: rgba(99,102,241,0.04);
        }
        .bento-cell-wide { grid-column: span 2; }
        .bento-cell-full { grid-column: 1 / -1; }
        .bento-cell-accent {
            background: rgba(99,102,241,0.07);
            border-color: rgba(99,102,241,0.18);
        }
        /* Image cell - replaced by HTML dashboard mockup */
        .bento-img-cell {
            padding: 0; position: relative; overflow: hidden;
            background: rgba(9,9,11,0.9);
            display: flex; flex-direction: column;
        }
        .bento-img-cell .db-mock-wrap {
            flex: 1; overflow: hidden; min-height: 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .bento-img-cell .db-mock-info {
            padding: 1.25rem 1.75rem;
            display: flex; align-items: flex-start; gap: 0.85rem;
                background: #0e0e11;
        }
        .bento-img-cell .db-mock-info-text h3 {
            font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem;
        }
        .bento-img-cell .db-mock-info-text p {
            font-size: 0.82rem; color: var(--gray-400); line-height: 1.6; margin: 0;
        }
        /* dashboard mockup inside bento-img-cell */
        .db-mock {
            width: 100%; height: 100%;
            display: flex; flex-direction: row;
            font-size: 0; /* reset inline-block gaps */
            user-select: none;
        }
        /* sidebar */
        .db-sidebar {
            width: 120px; flex-shrink: 0;
            background: rgba(255,255,255,0.018);
            border-right: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 0.7rem;
            display: flex; flex-direction: column; gap: 0.25rem;
        }
        .db-logo {
            display: flex; align-items: center; gap: 0.4rem;
            padding: 0 0.3rem 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 0.4rem;
        }
        .db-logo-mark {
            width: 20px; height: 20px; border-radius: 6px;
            background: var(--accent); display: flex; align-items: center; justify-content: center;
            font-size: 0.6rem; color: #fff;
        }
        .db-logo-text { font-size: 0.65rem; font-weight: 700; color: var(--gray-200); }
        .db-nav-item {
            display: flex; align-items: center; gap: 0.38rem;
            font-size: 0.62rem; color: var(--gray-500); font-weight: 500;
            padding: 0.3rem 0.45rem; border-radius: 6px;
        }
        .db-nav-item i { font-size: 0.72rem; }
        .db-nav-item.active { background: rgba(99,102,241,0.12); color: var(--accent-text); }
        /* main content */
        .db-main { flex: 1; padding: 1rem 1.1rem; overflow: hidden; }
        .db-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
        .db-header-title { font-size: 0.75rem; font-weight: 700; color: var(--gray-100); }
        .db-header-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: fmw-pulse 2.5s ease-in-out infinite; }
        /* stat cards row */
        .db-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.4rem; margin-bottom: 0.75rem; }
        .db-stat {
            border-radius: 7px; padding: 0.45rem 0.5rem;
            background: rgba(255,255,255,0.028); border: 1px solid rgba(255,255,255,0.055);
        }
        .db-stat-label { font-size: 0.52rem; color: var(--gray-600); margin-bottom: 0.2rem; }
        .db-stat-val { font-size: 0.72rem; font-weight: 700; color: var(--gray-100); letter-spacing: -0.02em; }
        .db-stat-featured { background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.22); }
        .db-stat-featured .db-stat-val { color: var(--accent-text); }
        /* chart stub */
        .db-chart {
            height: 52px; border-radius: 7px; overflow: hidden;
            background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
            position: relative; margin-bottom: 0.75rem;
        }
        .db-chart svg { width: 100%; height: 100%; }
        /* transactions list */
        .db-tx-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; }
        .db-tx-title { font-size: 0.6rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.07em; }
        .db-tx-link { font-size: 0.56rem; color: var(--accent-text); }
        .db-tx-row {
            display: flex; align-items: center; gap: 0.45rem;
            padding: 0.32rem 0; border-bottom: 1px solid rgba(255,255,255,0.03);
        }
        .db-tx-row:last-child { border-bottom: none; }
        .db-tx-coin { width: 14px; height: 14px; object-fit: contain; }
        .db-tx-id { font-size: 0.58rem; color: var(--gray-400); font-family: monospace; flex: 1; }
        .db-tx-amt { font-size: 0.6rem; font-weight: 600; color: var(--gray-200); margin-left: auto; }
        .db-tx-badge {
            font-size: 0.5rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
            border-radius: 9999px; padding: 0.12rem 0.4rem;
        }
        .db-tx-badge-ok { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
        .db-tx-badge-pend { background: rgba(250,204,21,0.08); color: #facc15; border: 1px solid rgba(250,204,21,0.18); }
        /* animated incoming row */
        .db-tx-row-new {
            animation: db-row-in 8s ease-in-out infinite;
        }
        @keyframes db-row-in {
            0%, 8%   { opacity: 0; transform: translateX(-6px); }
            16%, 80% { opacity: 1; transform: translateX(0); }
            88%, 100% { opacity: 0; transform: translateX(0); }
        }
        .bento-img-overlay {
            position: absolute; bottom: 0; left: 0; z-index: 2;
            padding: 1.75rem;
        }
        .bento-icon {
            width: 40px; height: 40px; border-radius: 10px;
            background: rgba(99,102,241,0.1);
            border: 1px solid rgba(99,102,241,0.18);
            display: inline-flex; align-items: center; justify-content: center;
            margin-bottom: 1rem; font-size: 1rem; color: var(--accent-text);
        }
        .bento-cell h3 { font-size: 0.95rem; font-weight: 700; color: var(--gray-100); margin-bottom: 0.5rem; }
        .bento-cell p { font-size: 0.84rem; color: var(--gray-500); line-height: 1.68; margin: 0; }

        /* - Feature Mockups - */
        .feat-mockup {
            background: rgba(9,9,11,0.65);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.25rem;
            user-select: none;
        }
        .feat-mockup-bar {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 7px 10px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            background: rgba(255,255,255,0.02);
        }
        .fmb-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
        .fmb-dot-r { background: #ff5f57; }
        .fmb-dot-y { background: #febc2e; }
        .fmb-dot-g { background: #28c840; }
        .fmb-bar-title {
            font-size: 0.62rem; color: var(--gray-600); font-weight: 500;
            flex: 1; text-align: center; letter-spacing: 0.03em;
            padding-right: 21px; /* visually center past the 3 dots */
        }
        .feat-mockup-body { padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.65rem; }
        /* Withdrawal mockup */
        .fmw-amount-row { display: flex; align-items: center; gap: 0.5rem; }
        .fmw-coin-img { width: 22px; height: 22px; object-fit: contain; }
        .fmw-amt { font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: -0.03em; }
        .fmw-usd { font-size: 0.7rem; color: var(--gray-500); margin-left: auto; }
        .fmw-addr-row {
            display: flex; align-items: center; gap: 0.5rem;
            padding: 0.38rem 0.65rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 7px;
        }
        .fmw-addr-label { font-size: 0.58rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; flex-shrink: 0; }
        .fmw-addr-val { font-size: 0.68rem; color: var(--gray-300); font-family: monospace; letter-spacing: 0.01em; }
        /* Progress bar */
        .fmw-progress-track { height: 2px; background: rgba(255,255,255,0.06); border-radius: 9999px; overflow: hidden; }
        .fmw-progress-fill {
            height: 100%; border-radius: 9999px;
            background: linear-gradient(to right, #4f46e5, #818cf8);
            animation: fmw-progress 9s ease-in-out infinite;
        }
        @keyframes fmw-progress {
            0%   { width: 0%;   opacity: 1; }
            55%  { width: 100%; opacity: 1; }
            65%  { width: 100%; opacity: 0; }
            66%  { width: 0%;   opacity: 0; }
            72%  { width: 0%;   opacity: 1; }
            100% { width: 0%;   opacity: 1; }
        }
        /* Status row: two overlapping states */
        .fmw-status-row { position: relative; min-height: 24px; display: flex; align-items: center; }
        .fmw-state {
            display: inline-flex; align-items: center; gap: 0.38rem;
            font-size: 0.7rem; font-weight: 600;
            border-radius: 9999px; padding: 0.2rem 0.6rem;
            position: absolute; left: 0; top: 0;
        }
        .fmw-state-proc {
            color: #facc15;
            background: rgba(250,204,21,0.07); border: 1px solid rgba(250,204,21,0.2);
            animation: fmw-proc-vis 9s ease-in-out infinite;
        }
        .fmw-state-done {
            color: #4ade80;
            background: rgba(74,222,128,0.07); border: 1px solid rgba(74,222,128,0.14);
            animation: fmw-done-vis 9s ease-in-out infinite;
        }
        @keyframes fmw-proc-vis {
            0%   { opacity: 1; }
            53%  { opacity: 1; }
            63%  { opacity: 0; }
            100% { opacity: 0; }
        }
        @keyframes fmw-done-vis {
            0%   { opacity: 0; }
            60%  { opacity: 0; }
            70%  { opacity: 1; }
            90%  { opacity: 1; }
            100% { opacity: 0; }
        }
        .fmw-spinner {
            width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
            border: 1.5px solid rgba(250,204,21,0.3);
            border-top-color: #facc15;
            animation: fmw-spin 0.7s linear infinite;
        }
        @keyframes fmw-spin { to { transform: rotate(360deg); } }
        .fmw-pulse {
            width: 6px; height: 6px; border-radius: 50%;
            background: #4ade80; flex-shrink: 0;
            animation: fmw-pulse 1.8s ease-in-out infinite;
        }
        @keyframes fmw-pulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.45); }
            55% { opacity: 0.9; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
        }
        .fmw-timing { font-size: 0.65rem; color: var(--gray-600); margin-left: auto; }

        /* Non-Custodial: settlement flow */
        .fmnc-flow { display: flex; flex-direction: column; gap: 0.35rem; }
        .fmnc-node {
            display: flex; align-items: center; gap: 0.55rem;
            padding: 0.45rem 0.6rem;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.055);
            border-radius: 8px;
        }
        .fmnc-node-icon {
            width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0;
            background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.15);
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 0.65rem; color: var(--accent-text);
        }
        .fmnc-node-text { font-size: 0.7rem; font-weight: 500; color: var(--gray-300); line-height: 1.2; }
        .fmnc-node-sub { font-size: 0.59rem; color: var(--gray-600); margin-top: 1px; }
        .fmnc-arrow { display: flex; justify-content: center; }
        .fmnc-arrow-line {
            width: 1px; height: 14px;
            background: rgba(99,102,241,0.12);
            position: relative; overflow: hidden;
        }
        .fmnc-arrow-line::after {
            content: ''; position: absolute;
            left: 0; top: -4px; width: 100%; height: 4px;
            background: #818cf8;
            animation: fmnc-travel 2.4s ease-in-out infinite;
        }
        @keyframes fmnc-travel {
            0%   { top: -4px; opacity: 0; }
            15%  { opacity: 1; }
            85%  { opacity: 1; }
            100% { top: 14px; opacity: 0; }
        }
        .fmnc-wallet-node { border-color: rgba(74,222,128,0.2); background: rgba(74,222,128,0.04); }
        .fmnc-wallet-node .fmnc-node-icon { background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.18); color: #4ade80; }
        .fmnc-direct-tag {
            margin-left: auto; flex-shrink: 0;
            display: inline-flex; align-items: center; gap: 0.28rem;
            font-size: 0.59rem; font-weight: 600; color: #4ade80;
            background: rgba(74,222,128,0.07); border: 1px solid rgba(74,222,128,0.15);
            border-radius: 9999px; padding: 0.15rem 0.5rem;
        }
        .fmnc-footer { display: flex; align-items: center; gap: 0.35rem; font-size: 0.61rem; color: var(--gray-600); }
        .fmnc-footer i { color: rgba(99,102,241,0.45); }

        /* Zero KYC: signup form */
        .fmkyc-field {
            display: flex; align-items: center; gap: 0.45rem;
            padding: 0.42rem 0.6rem;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
            border-radius: 7px; font-size: 0.68rem; color: var(--gray-500);
        }
        .fmkyc-field i { font-size: 0.7rem; color: var(--gray-600); flex-shrink: 0; }
        .fmkyc-btn {
            padding: 0.48rem 0.65rem;
            border-radius: 7px; font-size: 0.72rem; font-weight: 600;
            text-align: center; letter-spacing: 0.01em;
            position: relative; overflow: hidden;
            /* two states layered */
        }
        /* Default (idle) state */
        .fmkyc-btn-idle {
            background: var(--accent); color: #fff;
            animation: fmkyc-idle-vis 10s ease-in-out infinite;
        }
        .fmkyc-btn-idle::after {
            content: ''; position: absolute;
            top: 0; left: -70%; width: 50%; height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
            animation: fmkyc-shimmer 10s ease-in-out infinite;
        }
        @keyframes fmkyc-shimmer {
            0%          { left: -70%; }
            12%, 100%   { left: 120%; }
        }
        @keyframes fmkyc-idle-vis {
            0%, 55%  { opacity: 1; }
            65%, 100% { opacity: 0; }
        }
        /* Registered (success) state */
        .fmkyc-btn-ok {
            background: rgba(74,222,128,0.12); color: #4ade80;
            border: 1px solid rgba(74,222,128,0.28);
            animation: fmkyc-ok-vis 10s ease-in-out infinite;
        }
        @keyframes fmkyc-ok-vis {
            0%, 62%  { opacity: 0; }
            70%, 92% { opacity: 1; }
            100%     { opacity: 0; }
        }
        /* Checkbox animation */
        .fmkyc-cbrow { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.1rem; }
        .fmkyc-cb {
            width: 13px; height: 13px; border-radius: 3px; flex-shrink: 0;
            border: 1.5px solid rgba(255,255,255,0.15);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.5rem;
            animation: fmkyc-cb-anim 10s ease-in-out infinite;
        }
        @keyframes fmkyc-cb-anim {
            0%, 58%   { border-color: rgba(255,255,255,0.15); background: transparent; color: transparent; }
            66%, 100% { border-color: rgba(74,222,128,0.5); background: rgba(74,222,128,0.12); color: #4ade80; }
        }
        .fmkyc-cb-label { font-size: 0.62rem; color: var(--gray-500); }
        .fmkyc-checks { display: flex; flex-wrap: wrap; gap: 0.3rem 0.55rem; }
        .fmkyc-check { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.6rem; color: var(--gray-500); }
        .fmkyc-check i { color: #4ade80; font-size: 0.58rem; }

        /* 17+ Coins: asset grid */
        .fmcoins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.38rem; }
        @keyframes fmcoins-glow {
            0%, 100% { border-color: rgba(255,255,255,0.05); background: rgba(255,255,255,0.025); box-shadow: none; }
            12%      { border-color: rgba(99,102,241,0.5); background: rgba(99,102,241,0.14); box-shadow: 0 0 8px rgba(99,102,241,0.14); }
            30%      { border-color: rgba(255,255,255,0.05); background: rgba(255,255,255,0.025); box-shadow: none; }
        }
        .fmcoins-item {
            display: flex; align-items: center; gap: 0.32rem;
            padding: 0.38rem 0.45rem;
            background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05);
            border-radius: 7px;
            animation: fmcoins-glow 11s ease-in-out infinite;
        }
        .fmcoins-item:nth-child(1) { animation-delay: 0s; }
        .fmcoins-item:nth-child(2) { animation-delay: 1.22s; }
        .fmcoins-item:nth-child(3) { animation-delay: 2.44s; }
        .fmcoins-item:nth-child(4) { animation-delay: 3.67s; }
        .fmcoins-item:nth-child(5) { animation-delay: 4.89s; }
        .fmcoins-item:nth-child(6) { animation-delay: 6.11s; }
        .fmcoins-item:nth-child(7) { animation-delay: 7.33s; }
        .fmcoins-item:nth-child(8) { animation-delay: 8.56s; }
        .fmcoins-item:nth-child(9) { animation-delay: 9.78s; }
        .fmcoins-item img { width: 14px; height: 14px; object-fit: contain; }
        .fmcoins-item span { font-size: 0.59rem; font-weight: 600; color: var(--gray-300); }
        .fmcoins-more { text-align: center; margin-top: 0.35rem; font-size: 0.63rem; color: var(--accent-text); }

        /* - Coin Slider - */
        .coin-slider { display: flex; flex-direction: column; gap: 1.1rem; }
        .coin-track {
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }
        .coin-track-inner { display: flex; width: max-content; }
        /* pause on hover */
        .coin-track:hover .coin-track-inner { animation-play-state: paused; }
        .coin-pill {
            display: inline-flex; align-items: center; gap: 0.6rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 9999px;
            padding: 0.62rem 1.35rem 0.62rem 0.75rem;
            white-space: nowrap; flex-shrink: 0; margin-right: 0.8rem;
            transition: border-color 0.2s, background 0.2s;
        }
        .coin-pill:hover { border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.06); }
        .coin-pill img { width: 28px; height: 28px; object-fit: contain; }
        .coin-pill-name { font-size: 0.85rem; font-weight: 600; color: var(--gray-200); }
        .coin-pill-net {
            font-size: 0.65rem; font-weight: 500; color: var(--gray-600);
            background: rgba(255,255,255,0.06); border-radius: 4px;
            padding: 0.1rem 0.3rem; margin-left: 0.1rem;
        }
        .cs-l-1 { animation: cs-left 90s linear infinite; }
        .cs-r-2 { animation: cs-right 72s linear infinite; }
        .cs-l-3 { animation: cs-left 110s linear infinite; }
        @keyframes cs-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
        @keyframes cs-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
        @media (prefers-reduced-motion: reduce) { .cs-l-1, .cs-r-2, .cs-l-3 { animation: none !important; } }

        /* - Pricing Rework v2 - */
        /* plan cards */
        .prc-card {
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.025);
            padding: 2rem;
            display: flex; flex-direction: column;
            height: 100%;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .prc-card:hover { border-color: rgba(99,102,241,0.25); box-shadow: 0 0 0 1px rgba(99,102,241,0.08); }
        .prc-card-featured {
            border-color: rgba(99,102,241,0.35);
            background: rgba(99,102,241,0.05);
            box-shadow: 0 0 0 1px rgba(99,102,241,0.1), 0 20px 50px rgba(0,0,0,0.25);
        }
        .prc-card-featured:hover { border-color: rgba(99,102,241,0.5); }
        .prc-plan-badge {
            display: inline-flex; align-items: center;
            font-size: 0.58rem; font-weight: 700; letter-spacing: 0.13em;
            text-transform: uppercase; color: var(--accent-text);
            background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
            border-radius: 9999px; padding: 0.2rem 0.65rem;
            margin-bottom: 1rem; width: fit-content;
        }
        .prc-plan-name {
            font-size: 1.2rem; font-weight: 700; color: var(--gray-100); margin-bottom: 0.35rem;
        }
        .prc-plan-desc {
            font-size: 0.84rem; color: var(--gray-500); margin-bottom: 1.25rem; line-height: 1.6;
            min-height: 3.5rem;
        }
        .prc-price {
            display: flex; align-items: baseline; gap: 0.25rem;
            padding: 1.1rem 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 1.25rem;
        }
        .prc-price-num {
            font-size: 3rem; font-weight: 800; line-height: 1;
            background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 55%, #6366f1 100%);
            -webkit-background-clip: text; background-clip: text; color: transparent;
        }
        .prc-price-label { font-size: 0.78rem; color: var(--gray-500); }
        .prc-feats { list-style: none; padding: 0; margin: 0 0 1.75rem; flex-grow: 1; }
        .prc-feats li {
            display: flex; align-items: flex-start; gap: 0.6rem;
            font-size: 0.86rem; color: var(--gray-400);
            padding: 0.42rem 0;
        }
        .prc-feats li i { color: var(--accent-text); flex-shrink: 0; margin-top: 0.12rem; font-size: 0.9rem; }
        .prc-feats li .prc-feat-muted { color: var(--gray-600); }
        /* trust strip */
        .pricing-trust {
            display: flex; align-items: center; justify-content: center;
            gap: 2rem; flex-wrap: wrap;
            margin-top: 2.5rem;
            padding-top: 1.75rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .pricing-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--gray-500); }
        .pricing-trust-item i { color: var(--accent-text); font-size: 0.9rem; }

        /* - Testimonials - */
        .testi-agg {
            display: flex; flex-wrap: wrap; align-items: center;
            justify-content: center; gap: 0.5rem 2rem;
            margin-bottom: 3.5rem;
        }
        .testi-agg-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--gray-500); }
        .testi-agg-item span { color: var(--gray-200); font-weight: 700; }
        .testi-agg-sep { color: var(--gray-700); }
        .testi-card {
            border-radius: 18px;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 1.75rem; height: 100%;
            display: flex; flex-direction: column; gap: 0.9rem;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .testi-card:hover { border-color: rgba(99,102,241,0.22); }
        .testi-card-featured { border-color: rgba(99,102,241,0.2); background: rgba(99,102,241,0.04); }
        .testi-qmark {
            font-size: 3.25rem; line-height: 1; font-family: Georgia, serif;
            background: linear-gradient(135deg, #6366f1, #a5b4fc);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; margin-bottom: -0.35rem;
        }
        .testi-quote { font-size: 0.91rem; color: var(--gray-300); line-height: 1.8; flex-grow: 1; }
        .testi-tag {
            display: inline-flex; align-items: center; gap: 0.3rem;
            font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
            text-transform: uppercase; padding: 0.2rem 0.65rem;
            border-radius: 20px; background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07); color: var(--gray-500);
            width: fit-content;
        }
        .testi-author {
            display: flex; align-items: center; gap: 0.75rem;
            padding-top: 0.9rem; border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: auto;
        }
        .testi-avatar {
            width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.74rem; font-weight: 700; color: #fff;
        }
        .testi-name { font-size: 0.84rem; font-weight: 600; color: var(--gray-100); line-height: 1.2; }
        .testi-role { font-size: 0.71rem; color: var(--gray-500); margin-top: 0.1rem; }

        /* - CTA - */
        .cta-wrap {
            border-radius: 24px;
            position: relative; overflow: hidden;
            padding: 96px 48px; text-align: center;
            border: 1px solid rgba(99,102,241,0.22);
            background: rgba(255,255,255,0.015);
        }
        /* Radial indigo gradient layer */
        .cta-wrap::before {
            content: ''; position: absolute; inset: 0; z-index: 0;
            background: radial-gradient(ellipse at 50% -10%, rgba(99,102,241,0.28) 0%, transparent 62%);
            pointer-events: none;
        }
        /* Photo texture layer */
        .cta-wrap::after {
            content: ''; position: absolute; inset: 0; z-index: 0;
            background-image: url('assets/images/cta-bg.jpg');
            background-size: cover; background-position: center;
            opacity: 0.08; pointer-events: none;
        }
        .cta-wrap > * { position: relative; z-index: 1; }

        /* - Developer Section - */
        .dev-step {
            display: flex; align-items: flex-start; gap: 1rem;
            padding: 0.9rem 0;
        }
        .dev-step-num {
            width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; font-weight: 700;
            background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
            color: var(--accent-text); margin-top: 0.05rem;
        }
        .dev-step-title { font-size: 0.92rem; font-weight: 600; color: var(--gray-100); margin-bottom: 0.2rem; }
        .dev-step-desc  { font-size: 0.81rem; color: var(--gray-500); line-height: 1.6; }
        .dev-ctas { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 2.25rem; }
        /* code editor */
        .dev-editor {
            border-radius: 14px 14px 0 0; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.08);
            background: #0d0d0f;
        }
        .dev-editor-tabs {
            display: flex; align-items: center;
            background: rgba(255,255,255,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.07);
            padding: 0 1rem;
        }
        .dev-tab {
            font-size: 0.75rem; font-weight: 500; color: var(--gray-600);
            padding: 0.65rem 0.9rem; cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: color 0.15s, border-color 0.15s;
            user-select: none;
        }
        .dev-tab.active { color: var(--gray-100); border-bottom-color: var(--accent); }
        .dev-tab:hover:not(.active) { color: var(--gray-300); }
        .dev-tab-dots { display: flex; gap: 5px; margin-right: auto; padding: 0.65rem 0; }
        .dev-tab-dot { width: 10px; height: 10px; border-radius: 50%; }
        .dev-code-body { padding: 1.25rem 1.5rem; overflow-x: auto; }
        .dev-code-pane { display: none; }
        .dev-code-pane.active { display: block; }
        .dev-code-body pre { margin: 0; font-size: 0.78rem; line-height: 1.7;
            font-family: 'Fira Code', 'Cascadia Code', Consolas, monospace; }
        .dev-resp {
            background: #0a0a0c;
            border: 1px solid rgba(255,255,255,0.08); border-top: none;
            border-radius: 0 0 14px 14px;
            padding: 1rem 1.5rem;
            margin-top: 0;
        }
        .dev-resp-label {
            font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
            text-transform: uppercase; color: var(--gray-600); margin-bottom: 0.55rem;
            display: flex; align-items: center; gap: 0.4rem;
        }
        .dev-resp-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; display: inline-block; }
        .dev-resp pre { margin: 0; font-size: 0.75rem; line-height: 1.65;
            font-family: 'Fira Code', 'Cascadia Code', Consolas, monospace;
            color: var(--gray-500); }
        /* stat strip */
        .dev-stats {
            display: flex; align-items: stretch; justify-content: center;
            gap: 0; flex-wrap: wrap;
            margin-top: 3.5rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
        }
        .dev-stat {
            flex: 1; min-width: 160px;
            text-align: center; padding: 0.5rem 1rem;
            border-right: 1px solid rgba(255,255,255,0.05);
        }
        .dev-stat:last-child { border-right: none; }
        .dev-stat-val { font-size: 1.35rem; font-weight: 800; color: var(--gray-100); letter-spacing: -0.03em; margin-bottom: 0.2rem; }
        .dev-stat-val span { color: var(--accent-text); }
        .dev-stat-lbl { font-size: 0.73rem; color: var(--gray-600); }

        /* Section breakpoints */
        @media (max-width: 991.98px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .bento-cell-wide { grid-column: span 2; }
            .bento-cell-full { grid-column: 1 / -1; }
        }
        @media (max-width: 767.98px) {
            .bento-grid { grid-template-columns: 1fr; }
            .bento-cell-wide, .bento-cell-full { grid-column: span 1; }
            .cta-wrap { padding: 56px 24px; }
        }

/* ═══════════════════════════════════════════════════
   Utility classes extracted from inline style=""
   ═══════════════════════════════════════════════════ */

/* Section padding utility */
.lp-section { padding: 96px 0; }

/* Hero section */
.hero-section {
    padding: 90px 0 104px;
    text-align: center;
    position: relative;
}
.hero-container {
    max-width: 780px;
    position: relative;
    z-index: 2;
}
.hero-h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.85rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.4rem;
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 510px;
    margin: 0 auto 2.75rem;
    letter-spacing: 0.005em;
}

/* Developer section */
.dev-intro-p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 420px;
}
.dev-section-title { margin: 0 0 1rem; }
.dev-code-tag {
    font-size: 0.76rem;
    color: var(--accent-text);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}
.dev-tab-dot-r { background: #ff5f57; }
.dev-tab-dot-y { background: #febc2e; }
.dev-tab-dot-g { background: #28c840; }

/* Bento 1% accent bar */
.bento-accent-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
}
.bento-accent-bar-icon { flex-shrink: 0; margin: 0; width: 48px; height: 48px; }
.bento-accent-bar-body { flex: 1; }
.bento-accent-bar-num-wrap { flex-shrink: 0; text-align: right; }
.bento-accent-bar-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    background: linear-gradient(130deg, #e0e7ff, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.bento-accent-bar-sub {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
}

/* Bento icon inline (no outer margin) */
.bento-icon-inline { margin: 0; flex-shrink: 0; }

/* ── Coins section ── */
.lp-coins-section { padding: 72px 0; overflow: hidden; }
.coins-section-title { font-size: clamp(1.5rem, 3vw, 2rem) !important; margin-bottom: 0 !important; }

/* ── Pricing section ── */
.lp-pricing-section { padding: 96px 0 72px; }

/* ── Bento accent-bar inner rules ── */
.bento-accent-bar-body h3 { margin-bottom: 0.3rem; }
.bento-accent-bar-body p  { margin: 0; }

/* ── CTA section ── */
.cta-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--white);
}
.cta-sub {
    color: var(--gray-400);
    font-size: 0.95rem;
    max-width: 460px;
    margin: 0 auto 2.25rem;
    line-height: 1.75;
}
