/* ─── Reset ────────────────────────────────────────── */
        *, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; }
        html { line-height: 1.5; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
        body { margin: 0; line-height: inherit; }
        img, svg { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        button, input, select, textarea { font-family: inherit; font-size: 100%; margin: 0; padding: 0; }
        button { cursor: pointer; background: transparent; border: none; }

        /* ─── Design Tokens ─────────────────────────────────── */
        :root {
            /* ── Light pastel glassmorphism (frosted cards, soft blob bg) ── */
            --bg-primary:     #e3e8f8;
            --bg-secondary:   #dae1f4;
            --bg-card:        rgba(255,255,255,0.5);
            --bg-card-hover:  rgba(255,255,255,0.64);
            --text-primary:   #1b1b29;
            --text-secondary: #575768;
            /* 4.6:1 on --bg-primary (WCAG AA); the old #9091a6 was ~2.5:1 */
            --text-muted:     #6d6e82;
            --border-color:   rgba(255,255,255,0.75);
            --border-hover:   rgba(255,255,255,0.95);
            --accent:         #ff6a2b;
            --accent-glow:    rgba(255,106,43,0.28);
            --accent-hover:   #ec5518;
            --accent-light:   rgba(255,106,43,0.1);
            --blue:           #5b8def;
            --blue-glow:      rgba(91,141,239,0.22);
            --green:          #16a34a;
            --green-glow:     rgba(22,163,74,0.2);
            --purple:         #9b6dff;
            --purple-glow:    rgba(155,109,255,0.24);
            --yellow:         #f5a623;
            --nav-h:          68px;
            --radius-sm:      12px;
            --radius-md:      16px;
            --radius-lg:      20px;
            --radius-xl:      26px;
            --shadow-sm:      0 2px 8px rgba(80,80,140,0.06);
            --shadow-md:      0 8px 24px rgba(80,80,140,0.1);
            --shadow-lg:      0 16px 44px rgba(80,80,140,0.13);
            --shadow-xl:      0 24px 60px rgba(80,80,140,0.16);
        }

        /* ─── Base ──────────────────────────────────────────── */
        body {
            font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ─── Background Orbs ───────────────────────────────── */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(130px);
            z-index: 0;
            pointer-events: none;
        }
        .blob-1 { width:640px;height:640px;background:radial-gradient(circle,rgba(255,95,31,0.04) 0%,transparent 70%);top:-22%;right:-14%; }
        .blob-2 { width:720px;height:720px;background:radial-gradient(circle,rgba(124,58,237,0.03) 0%,transparent 70%);top:30%;left:-22%; }
        .blob-3 { display:none; }
        @media(max-width:768px){
            .blob{filter:blur(70px);}
            .blob-1{width:260px;height:260px;opacity:0.5;}
            .blob-2{display:none;}
        }

        /* ─── Navigation ────────────────────────────────────── */
        .site-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            height: var(--nav-h);
            background: rgba(245,245,249,0.85);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(0,0,0,0.07);
            transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .site-nav.scrolled {
            background: rgba(245,245,249,0.97);
            border-bottom-color: rgba(0,0,0,0.1);
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        }
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        /* Logo */
        .nav-logo {
            display: flex;
            align-items: flex-end;
            gap: 0;
            flex-shrink: 0;
            text-decoration: none;
        }
        .nav-logo-badge {
            position: relative;
            padding: 0 13px;
            height: 38px;
            background: linear-gradient(135deg, #ff6a2b, #e54f12);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(255,95,31,0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .nav-logo:hover .nav-logo-badge {
            transform: scale(1.02);
            box-shadow: 0 4px 14px rgba(255,95,31,0.28);
        }
        .nav-logo-badge span {
            font-size: 15px;
            font-weight: 900;
            color: #fff;
            letter-spacing: 0.04em;
        }
        .nav-logo-dot {
            position: absolute;
            right: -5px;
            bottom: 5px;
            width: 11px;
            height: 11px;
            background: #fff;
            border-radius: 50%;
            border: 3px solid var(--bg-primary);
        }
        .nav-logo-wordmark {
            padding-left: 10px;
            font-size: 19px;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--text-primary);
            padding-bottom: 1px;
        }

        /* Desktop links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .nav-link {
            padding: 7px 13px;
            border-radius: 10px;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: color 0.15s ease, background 0.15s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--text-primary);
            background: rgba(0,0,0,0.05);
        }
        .nav-link.active {
            color: var(--text-primary);
            background: rgba(0,0,0,0.07);
            font-weight: 700;
        }
        .nav-link.active-accent {
            color: var(--accent);
            background: var(--accent-light);
        }

        /* CTA button */
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 16px var(--accent-glow);
            transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
            white-space: nowrap;
        }
        .nav-cta:hover {
            background: var(--accent-hover);
            box-shadow: 0 6px 24px var(--accent-glow);
            transform: translateY(-1px);
            color: #fff;
        }

        /* Mobile burger */
        .nav-burger {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.15s;
        }
        .nav-burger:hover { background: rgba(0,0,0,0.09); }

        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            top: calc(var(--nav-h) + 8px);
            left: 12px;
            right: 12px;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 12px;
            z-index: 45;
            box-shadow: var(--shadow-xl);
            opacity: 0;
            transform: translateY(-8px) scale(0.98);
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.23,1,0.32,1);
        }
        .mobile-menu.open {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 14px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.15s ease;
        }
        .mobile-nav-link:hover {
            background: rgba(0,0,0,0.04);
            color: var(--text-primary);
        }
        .mobile-nav-link.active {
            background: rgba(0,0,0,0.05);
            color: var(--text-primary);
        }
        .mobile-nav-link.accent {
            color: var(--accent);
            font-weight: 700;
        }
        .mobile-nav-divider {
            height: 1px;
            background: var(--border-color);
            margin: 6px 0;
        }

        /* ─── Scroll Progress ───────────────────────────────── */
        #progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: var(--accent);
            z-index: 60;
            width: 0%;
            transition: width 0.12s linear;
        }

        /* ─── Cards (Light Mode) ─────────────────────────────── */
        .glass-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s ease;
            will-change: transform;
            position: relative;
            overflow: hidden;
        }
        .glass-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        @media(max-width:768px){
            .glass-card { box-shadow: var(--shadow-sm); }
            .glass-card:hover { transform:none; box-shadow: var(--shadow-sm); }
        }

        /* ─── Typography ────────────────────────────────────── */
        .text-gradient {
            background: linear-gradient(135deg, #ff5f1f 0%, #e8460a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .text-gradient-blue {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .text-gradient-purple {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Keep old alias */

        /* Section labels */
        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .eyebrow-orange { background:rgba(255,95,31,0.08);border:1px solid rgba(255,95,31,0.18);color:#d94e12; }
        .eyebrow-blue   { background:rgba(37,99,235,0.08);border:1px solid rgba(37,99,235,0.18);color:#1d4ed8; }
        .eyebrow-purple { background:rgba(124,58,237,0.08);border:1px solid rgba(124,58,237,0.18);color:#6d28d9; }
        .eyebrow-green  { background:rgba(22,163,74,0.08);border:1px solid rgba(22,163,74,0.18);color:#15803d; }

        .section-title {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.05;
            color: var(--text-primary);
        }

        .section-body {
            font-size: clamp(15px, 2vw, 18px);
            color: var(--text-secondary);
            line-height: 1.75;
            font-weight: 400;
        }

        /* ─── CTA Buttons ───────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 100px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.23,1,0.32,1);
            border: none;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-lg  { padding: 15px 36px; font-size: 15px; }
        .btn-md  { padding: 11px 24px; font-size: 13px; }
        .btn-sm  { padding: 8px  18px; font-size: 12px; }
        .btn-xl  { padding: 18px 48px; font-size: 17px; }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 2px 8px var(--accent-glow);
            font-weight: 700;
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            box-shadow: 0 4px 16px var(--accent-glow);
            transform: translateY(-1px);
            color: #fff;
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }
        .btn-outline:hover {
            background: rgba(0,0,0,0.04);
            border-color: var(--border-hover);
            transform: translateY(-1px);
        }

        .btn-ghost {
            background: rgba(0,0,0,0.04);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }
        .btn-ghost:hover {
            background: rgba(0,0,0,0.07);
            border-color: var(--border-hover);
        }

        /* Legacy aliases */
        .cta-button         { background:var(--accent);color:#fff;font-weight:700;transition:all 0.25s cubic-bezier(0.23,1,0.32,1);box-shadow:0 2px 8px var(--accent-glow);border:none;display:inline-flex;align-items:center;justify-content:center;gap:8px; }
        .cta-button:hover   { background:var(--accent-hover);box-shadow:0 4px 16px var(--accent-glow);transform:translateY(-1px);color:#fff; }
        .cta-button-outline { background:transparent;color:var(--text-primary);border:1px solid var(--border-color);font-weight:700;transition:all 0.25s ease;display:inline-flex;align-items:center;justify-content:center;gap:8px; }
        .cta-button-outline:hover { background:rgba(0,0,0,0.04);border-color:var(--border-hover);transform:translateY(-1px); }

        /* ─── Feature Badge / Chip ──────────────────────────── */
        .feature-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255,95,31,0.08);
            border: 1px solid rgba(255,95,31,0.18);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            color: #d94e12;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 16px;
            border-radius: 12px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }
        .chip:hover { border-color: var(--border-hover); background: #fff; box-shadow: var(--shadow-md); }

        /* ─── Stat Items ────────────────────────────────────── */
        .stat-item {
            text-align: center;
            padding: 24px 20px;
        }
        .stat-number {
            font-size: clamp(36px,5vw,52px);
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1;
            color: var(--text-primary);
        }
        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 6px;
            letter-spacing: 0.02em;
        }

        /* ─── Timeline ──────────────────────────────────────── */
        .timeline-container { position: relative; }
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent), rgba(168,85,247,0.5), transparent);
        }
        .timeline-item {
            position: relative;
            padding-left: 64px;
            margin-bottom: 32px;
        }
        .timeline-dot {
            position: absolute;
            left: 12px;
            top: 20px;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            z-index: 2;
            border: 2px solid var(--bg-primary);
        }

        /* ─── How It Works Steps ────────────────────────────── */
        .step-connector {
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, var(--border-color), transparent);
        }

        /* ─── Animations ────────────────────────────────────── */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.95); }
            to   { opacity: 1; transform: scale(1); }
        }
        @keyframes pulse-glow {
            0%,100% { box-shadow: 0 0 0 0 var(--accent-glow); }
            50%      { box-shadow: 0 0 0 8px rgba(255,95,31,0); }
        }
        @keyframes float {
            0%,100% { transform: translateY(0); }
            50%      { transform: translateY(-10px); }
        }
        @keyframes shimmer {
            0%   { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        @keyframes countUp {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.6s ease-out, transform 0.65s cubic-bezier(0.23,1,0.32,1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.96);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.23,1,0.32,1);
        }
        .reveal-scale.visible { opacity: 1; transform: scale(1); }

        /* Stagger delays */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        /* ─── Divider Gradient ──────────────────────────────── */
        .gradient-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
        }

        /* ─── Glow Ring ─────────────────────────────────────── */
        .glow-ring {
            position: relative;
        }
        .glow-ring::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            background: linear-gradient(135deg, var(--accent), transparent, var(--purple));
            z-index: -1;
            opacity: 0.3;
        }

        /* ─── Input / Form ──────────────────────────────────── */
        .form-input {
            width: 100%;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 14px 18px;
            font-size: 14px;
            font-family: inherit;
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
            box-shadow: var(--shadow-sm);
        }
        .form-input::placeholder { color: var(--text-muted); }
        .form-input:focus {
            border-color: var(--accent);
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(255,95,31,0.12);
        }
        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 8px;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .input-icon-wrap {
            position: relative;
        }
        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
            pointer-events: none;
        }
        .input-icon-wrap .form-input { padding-left: 44px; }

        /* ─── Scrollbar ─────────────────────────────────────── */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--bg-secondary); }
        ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

        /* ─── Popup ─────────────────────────────────────────── */
        .mfa-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.72);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            animation: fadeInScale 0.3s ease;
            cursor: pointer;
        }
        .mfa-popup-container {
            position: relative;
            max-width: 480px;
            width: 100%;
            padding: 40px;
            animation: fadeInUp 0.35s cubic-bezier(0.16,1,0.3,1);
            cursor: default;
        }
        .mfa-popup-close {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.9);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 16px;
            z-index: 101;
            box-shadow: var(--shadow-md);
        }
        .mfa-popup-close:hover { background: #fff; transform: rotate(90deg); box-shadow: var(--shadow-lg); }

        /* ─── Utilities ─────────────────────────────────────── */
        .ultra-bold { font-weight: 900; }
        .tracking-tight { letter-spacing: -0.03em; }
        .text-muted-custom { color: var(--text-muted); }
        .text-secondary-custom { color: var(--text-secondary); }

        /* ─── Responsive helpers ────────────────────────────── */
        @media(min-width:768px) {
            .hide-desktop { display: none !important; }
        }
        @media(max-width:767px) {
            .hide-mobile { display: none !important; }
        }

        /* ─── Accessibility: visible keyboard focus (was: outline:none everywhere) ─── */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible,
        [tabindex]:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Skip-to-content link (visually hidden until focused) */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 1000;
            background: var(--accent);
            color: #fff;
            padding: 10px 18px;
            border-radius: 0 0 10px 0;
            font-weight: 700;
            font-size: 13px;
        }
        .skip-link:focus { left: 0; }

        /* Keep long blog/post HTML from overflowing on mobile */
        .post-content img { max-width: 100%; height: auto; }
        .post-content pre { overflow-x: auto; }
        .post-content { overflow-wrap: break-word; word-wrap: break-word; }

        /* Respect users who prefer reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ══════════════════════════════════════════════════════════
           LIGHT PASTEL GLASSMORPHISM — MFA
           Soft lavender base, floating pastel blobs, frosted-glass cards.
           ══════════════════════════════════════════════════════════ */
        body {
            background-color: var(--bg-primary);
            background-image:
                radial-gradient(780px 640px at 82% 2%,  rgba(150,220,242,0.6),  transparent 62%),
                radial-gradient(740px 660px at 94% 32%, rgba(165,195,255,0.5),  transparent 60%),
                radial-gradient(820px 700px at 4% 8%,   rgba(196,181,253,0.58), transparent 60%),
                radial-gradient(700px 700px at -6% 48%, rgba(170,186,246,0.55), transparent 62%),
                radial-gradient(780px 740px at 50% 108%,rgba(190,175,250,0.46), transparent 62%);
            background-attachment: fixed;
        }

        /* Soft cool blobs (visible through frosted glass) */
        .blob { filter: blur(90px) !important; }
        .blob-1 { background: radial-gradient(circle, rgba(150,214,240,0.6) 0%, transparent 70%) !important; opacity:1 !important; }
        .blob-2 { background: radial-gradient(circle, rgba(178,182,250,0.6) 0%, transparent 70%) !important; opacity:1 !important; }
        .blob-3 { display:block !important; width:520px;height:520px;background: radial-gradient(circle, rgba(196,181,253,0.5) 0%, transparent 70%) !important; bottom:-10%; right:8%; top:auto; }

        /* Frosted navigation */
        .site-nav {
            background: rgba(255,255,255,0.55) !important;
            border-bottom: 1px solid rgba(255,255,255,0.6) !important;
            backdrop-filter: blur(22px) saturate(1.4);
            -webkit-backdrop-filter: blur(22px) saturate(1.4);
        }
        .site-nav.scrolled {
            background: rgba(255,255,255,0.72) !important;
            border-bottom-color: rgba(255,255,255,0.8) !important;
            box-shadow: 0 8px 30px rgba(80,80,140,0.1) !important;
        }
        .nav-link:hover   { color: var(--text-primary); background: rgba(255,255,255,0.6); }
        .nav-link.active  { color: var(--text-primary); background: rgba(255,255,255,0.8); box-shadow: var(--shadow-sm); }
        .nav-burger       { background: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.7); }
        .nav-burger:hover { background: rgba(255,255,255,0.85); }

        /* Frosted mobile menu */
        .mobile-menu {
            background: rgba(255,255,255,0.8) !important;
            border: 1px solid rgba(255,255,255,0.7) !important;
            backdrop-filter: blur(30px) saturate(1.5);
            -webkit-backdrop-filter: blur(30px) saturate(1.5);
        }
        .mobile-nav-link:hover  { background: rgba(255,255,255,0.7); color: var(--text-primary); }
        .mobile-nav-link.active { background: rgba(255,255,255,0.85); color: var(--text-primary); }

        /* Frosted glass cards */
        .glass-card {
            background: var(--bg-card) !important;
            border: 1px solid rgba(255,255,255,0.7) !important;
            backdrop-filter: blur(22px) saturate(1.4);
            -webkit-backdrop-filter: blur(22px) saturate(1.4);
            box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.6);
        }
        .glass-card:hover {
            background: var(--bg-card-hover) !important;
            border-color: rgba(255,255,255,0.9) !important;
            box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.7);
        }

        /* Chips — frosted pills */
        .chip {
            background: rgba(255,255,255,0.6) !important;
            border: 1px solid rgba(255,255,255,0.7) !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-sm);
        }
        .chip:hover { background: rgba(255,255,255,0.85) !important; }

        /* Buttons — outline/ghost frosted */
        .btn-outline        { background: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
        .btn-outline:hover  { background: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.9); }
        .btn-ghost          { background: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.7); }
        .btn-ghost:hover    { background: rgba(255,255,255,0.75); }
        .cta-button-outline { background: rgba(255,255,255,0.5); }
        .cta-button-outline:hover { background: rgba(255,255,255,0.75); }

        /* Eyebrows — soft pastel fills */
        .eyebrow-orange { background:rgba(255,106,43,0.1);  border-color:rgba(255,106,43,0.22); color:#d9531b; }
        .eyebrow-blue   { background:rgba(91,141,239,0.1);  border-color:rgba(91,141,239,0.22); color:#3f6fd8; }
        .eyebrow-purple { background:rgba(155,109,255,0.12);border-color:rgba(155,109,255,0.24);color:#7b4de0; }
        .eyebrow-green  { background:rgba(22,163,74,0.1);   border-color:rgba(22,163,74,0.22);  color:#15803d; }
        .feature-badge  { background:rgba(255,106,43,0.1);  border-color:rgba(255,106,43,0.22); color:#d9531b; }

        /* Pastel multi-stop gradient for hero accents */
        .text-gradient {
            background: linear-gradient(115deg, #ff9a5a 0%, #ff6fb0 38%, #a072f5 70%, #5b9bf0 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .text-gradient-vibrant { background: linear-gradient(115deg, #ff9a5a 0%, #ff6fb0 38%, #a072f5 70%, #5b9bf0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .text-gradient-purple  { background:linear-gradient(135deg,#a072f5 0%,#7b4de0 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
        .text-gradient-blue    { background:linear-gradient(135deg,#5b9bf0 0%,#3f6fd8 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }

        /* Reusable pastel gradient surface (hero panels / tiles) */
        .pastel-gradient { background: linear-gradient(135deg, #ffcf9e 0%, #ff9ec4 40%, #c39bf7 72%, #9ec2ff 100%); }

        .section-divider, hr { border-color: rgba(0,0,0,0.06); }

        /* ── Tailwind utility remap: frosted-glass surfaces ── */
        .bg-white { background: var(--bg-card) !important; border: 1px solid rgba(255,255,255,0.7); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); box-shadow: var(--shadow-md); }
        .bg-white\/95, .bg-white\/90, .bg-white\/80 { background: rgba(255,255,255,0.82) !important; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
        .bg-white\/60, .bg-white\/50 { background: rgba(255,255,255,0.55) !important; }
        .bg-white\/10, .bg-white\/5 { background: rgba(255,255,255,0.45) !important; }
        .bg-gray-50, .bg-gray-100, .bg-slate-50, .bg-slate-100 { background: rgba(255,255,255,0.5) !important; }
        .text-white { color: #ffffff !important; }   /* stays white on colored buttons/links/spans */
        .text-black { color: var(--text-primary) !important; }
        .text-gray-900, .text-gray-800, .text-slate-900, .text-slate-800 { color: var(--text-primary) !important; }
        .text-gray-700, .text-gray-600, .text-slate-700, .text-slate-600 { color: var(--text-secondary) !important; }
        .text-gray-500, .text-gray-400, .text-slate-500, .text-slate-400 { color: var(--text-muted) !important; }
        .border-gray-100, .border-gray-200, .border-slate-100, .border-slate-200 { border-color: rgba(0,0,0,0.06) !important; }

        /* text-white used as body text / labels / inputs on light glass → dark (buttons keep white) */
        h1.text-white, h2.text-white, h3.text-white, h4.text-white, h5.text-white, h6.text-white,
        p.text-white, li.text-white, strong.text-white, b.text-white, em.text-white, u.text-white,
        label.text-white, input.text-white, textarea.text-white, select.text-white,
        td.text-white, th.text-white, dt.text-white, dd.text-white, blockquote.text-white,
        figcaption.text-white, small.text-white { color: var(--text-primary) !important; }
        .text-white\/90, .text-white\/80, .text-white\/70, .text-white\/60 { color: var(--text-secondary) !important; }
        .text-white\/50, .text-white\/40, .text-white\/30, .text-white\/20, .text-white\/10 { color: var(--text-muted) !important; }
        /* faint white borders/fills on light glass → subtle dark */
        .border-white\/5, .border-white\/10, .border-white\/20 { border-color: rgba(0,0,0,0.09) !important; }

        /* ══════════════════════════════════════════════════════════
           SLOWLY-MOVING BLENDED LIGHT COLORS
           The pastel orbs drift slowly so the colored light shifts
           beneath the grainy frosted-glass cards.
           ══════════════════════════════════════════════════════════ */
        .blob-1 { animation: drift-a 26s ease-in-out infinite; }
        .blob-2 { animation: drift-b 32s ease-in-out infinite; }
        .blob-3 { animation: drift-c 29s ease-in-out infinite; }
        @keyframes drift-a {
            0%,100% { transform: translate(0,0) scale(1); }
            33%     { transform: translate(70px,50px) scale(1.12); }
            66%     { transform: translate(-40px,80px) scale(0.95); }
        }
        @keyframes drift-b {
            0%,100% { transform: translate(0,0) scale(1); }
            50%     { transform: translate(-80px,60px) scale(1.15); }
        }
        @keyframes drift-c {
            0%,100% { transform: translate(0,0) scale(1); }
            40%     { transform: translate(60px,-50px) scale(1.1); }
            75%     { transform: translate(-30px,-20px) scale(0.92); }
        }

        /* ── Grainy frosted-glass text cards ──
           A fine noise texture is baked into the card surface (behind
           the text) so moving colours read as grainy glass. */
        .glass-card, .product-card-wrap, .modal-content, .stat-item,
        .payment-method-card {
            position: relative;
        }
        .glass-card::after, .product-card-wrap::after, .modal-content::after {
            content: '';
            position: absolute; inset: 0;
            border-radius: inherit;
            pointer-events: none;
            z-index: 3;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
            background-size: 180px 180px;
            opacity: 0.68;
            mix-blend-mode: soft-light;
        }
        /* Make the glass more translucent so the drifting colours glow through */
        .glass-card {
            background: rgba(255,255,255,0.5) !important;
            backdrop-filter: blur(26px) saturate(1.7) !important;
            -webkit-backdrop-filter: blur(26px) saturate(1.7) !important;
        }
        .glass-card:hover { background: rgba(255,255,255,0.62) !important; }

        @media (prefers-reduced-motion: reduce) {
            .blob-1, .blob-2, .blob-3 { animation: none; }
        }

        /* ─── Light-theme semantic classes ─────────────────────
           Replacements for the dark-theme Tailwind utilities
           (text-white/NN, bg-white/NN, …) that pages still carried
           after the light redesign. The purged tailwind.min.css has
           no light text utilities compiled in, so these live here. */
        .text-ink        { color: var(--text-primary); }
        .text-ink-soft   { color: var(--text-secondary); }
        .text-ink-muted  { color: var(--text-muted); }
        .text-ghost      { color: rgba(27,27,41,0.14); }            /* decorative numerals/labels */
        .surface-chip    { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
        .surface-chip-hover:hover { background: rgba(0,0,0,0.07); }
        .surface-input   { background: rgba(255,255,255,0.65); border-color: rgba(0,0,0,0.08); color: var(--text-primary); }
        .surface-input::placeholder { color: var(--text-muted); }
        .btn-ink         { background: var(--text-primary); color: #fff; }
        .btn-ink:hover   { background: #000; color: #fff; }
        .divider-soft    { border-color: rgba(27,27,41,0.08); }
        .group:hover .copy-icon { color: var(--text-primary); }

/* ============================================================
   CANVA PRO / KANWA PRO — country landing pages (cp-*)
   Namespaced helpers so the SEO landing pages share one look
   built from the same design tokens as the rest of the site.
   ============================================================ */
.cp-hero-chips { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:28px; }
.cp-num {
    flex-shrink:0; width:48px; height:48px; border-radius:14px;
    background:linear-gradient(135deg,var(--accent),#fb923c);
    color:#fff; font-weight:900; font-size:16px;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 24px rgba(255,95,31,0.28);
}
.cp-method-head { display:flex; align-items:center; gap:16px; margin-bottom:18px; }
.cp-method-head h3 { font-size:clamp(19px,2.6vw,24px); font-weight:800; letter-spacing:-0.02em; margin:0; line-height:1.2; }
.cp-lead { font-size:15px; color:var(--text-secondary); line-height:1.75; margin:0 0 20px; }
.cp-steps { list-style:none; counter-reset:cp; margin:0 0 20px; padding:0; display:flex; flex-direction:column; gap:12px; }
.cp-steps li { counter-increment:cp; position:relative; padding-left:44px; font-size:15px; color:var(--text-secondary); line-height:1.65; }
.cp-steps li::before {
    content:counter(cp); position:absolute; left:0; top:-2px;
    width:28px; height:28px; border-radius:9px;
    background:var(--accent-light); color:var(--accent);
    border:1px solid rgba(255,95,31,0.22);
    font-size:13px; font-weight:800;
    display:flex; align-items:center; justify-content:center;
}
.cp-note {
    display:flex; gap:10px; align-items:flex-start;
    padding:14px 16px; border-radius:14px;
    background:rgba(96,165,250,0.08); border:1px solid rgba(96,165,250,0.18);
    font-size:13.5px; color:var(--text-secondary); line-height:1.6;
}
.cp-note i { color:#3b82f6; margin-top:2px; flex-shrink:0; }
.cp-compare { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.cp-compare li { display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--text-secondary); line-height:1.6; }
.cp-compare li i { color:#22c55e; margin-top:4px; flex-shrink:0; }
.cp-faq { border-bottom:1px solid var(--border-color); }
.cp-faq:last-child { border-bottom:none; }
.cp-faq summary {
    list-style:none; cursor:pointer; padding:18px 12px;
    font-size:16px; font-weight:700; color:var(--text-primary);
    display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.cp-faq summary::-webkit-details-marker { display:none; }
.cp-faq summary::after { content:"\f067"; font-family:"Font Awesome 6 Free"; font-weight:900; font-size:13px; color:var(--accent); transition:transform 0.2s; flex-shrink:0; }
.cp-faq[open] summary::after { transform:rotate(45deg); }
.cp-faq .cp-faq-body { padding:0 12px 20px; font-size:14.5px; color:var(--text-secondary); line-height:1.7; }
.cp-cta-link { text-decoration:none; display:inline-block; }
.cp-cta-link:hover h2 { opacity:0.85; }
@media(max-width:640px){
    .cp-method-head { gap:12px; }
    .cp-num { width:42px; height:42px; font-size:15px; }
}
