/* Page-scoped — avoids fighting global Tahoe rules */
        .page-wif {
            --wif-primary: #1a73e8;
            --wif-primary-dim: rgba(26, 115, 232, 0.22);
            --wif-text: #eef2ff;
            --wif-muted: #c0c8d6;
            --wif-faint: rgba(255, 255, 255, 0.5);
            --wif-line: rgba(255, 255, 255, 0.12);
            --wif-glass: rgba(22, 26, 34, 0.75);
            --wif-radius: 16px;
            --wif-font: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        .page-wif * { box-sizing: border-box; }
        .page-wif {
            margin: 0;
            min-height: 100vh;
            font-family: var(--wif-font);
            color: var(--wif-text);
            background:
                radial-gradient(1200px 700px at 14% -8%, #0f2d4a 0%, transparent 48%),
                radial-gradient(1000px 700px at 88% 12%, #10314e 0%, transparent 52%),
                linear-gradient(160deg, #000 0%, #02050a 52%, #040a12 100%);
            -webkit-font-smoothing: antialiased;
        }

        /* Icons: single-stroke line icons */
        .wif-ico {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            stroke: var(--wif-primary);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .wif-ico--lg { width: 40px; height: 40px; }
        .wif-ico-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--wif-primary-dim);
            border: 1px solid rgba(26, 115, 232, 0.35);
        }
        .wif-ico-wrap--sm { width: 44px; height: 44px; border-radius: 12px; }
        .wif-ico-wrap .wif-ico { stroke: #7ab8ff; }

        /* Header */
        .page-wif .header {
            position: sticky;
            top: 0;
            z-index: 200;
            border-bottom: 1px solid var(--wif-line);
            background: rgba(9, 23, 40, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }
        .page-wif .header-top {
            background: transparent !important;
            color: rgba(238, 242, 255, 0.78) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            padding: 5px 12px;
            font-size: 12px;
            text-align: center;
        }
        .page-wif .header-main .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .page-wif .header-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
            min-height: 56px;
        }
        .page-wif .logo {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 18px;
            font-weight: 500;
            color: var(--wif-primary);
            text-decoration: none;
        }
        .page-wif .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--wif-text);
            padding: 8px;
            border-radius: 10px;
            cursor: pointer;
        }
        .page-wif .nav-toggle svg { width: 24px; height: 24px; fill: currentColor; }
        .page-wif .nav-menu {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 0.25rem 0.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .page-wif .nav-menu a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.45rem 0.65rem;
            border-radius: 999px;
            transition: background 0.15s ease, color 0.15s ease;
        }
        .page-wif .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }
        .page-wif .nav-menu a.active {
            background: rgba(26, 115, 232, 0.25);
            color: #fff;
        }
        .page-wif .nav-menu .cta-button {
            background: var(--wif-primary);
            color: #fff !important;
            font-weight: 600;
            padding: 0.5rem 1rem;
        }
        .page-wif .nav-menu .cta-button:hover { background: #1557b0; }

        @media (max-width: 1024px) {
            .page-wif .nav-toggle { display: flex; align-items: center; justify-content: center; }
            .page-wif .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                padding: 0.75rem 0 1rem;
                background: rgba(12, 18, 28, 0.97);
                border-bottom: 1px solid var(--wif-line);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
            }
            .page-wif .nav-menu.active { display: flex; }
            .page-wif .nav-menu a {
                border-radius: 0;
                padding: 14px 1.25rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .page-wif .nav-menu .cta-button {
                margin: 0.5rem 1rem 0;
                text-align: center;
                border-radius: 999px;
            }
        }

        /* Main layout */
        .wif-wrap {
            max-width: 1100px;
            margin: 0 auto;
            padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 4vw, 1.5rem) 3rem;
        }

        /* Hero */
        .wif-hero {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: clamp(2rem, 5vw, 3rem);
        }
        @media (min-width: 900px) {
            .wif-hero {
                grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
                align-items: center;
            }
        }
        .wif-hero__copy .wif-hero__title {
            margin: 0 0 1rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        .wif-hero__title-main {
            display: block;
            font-size: clamp(1.65rem, 4.2vw, 2.35rem);
            font-weight: 700;
        }
        .wif-hero__title-sub {
            display: block;
            margin-top: 0.4rem;
            font-size: clamp(1.05rem, 2.2vw, 1.3rem);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.25;
        }
        .wif-trust-badges {
            margin: 0;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.55;
        }
        .wif-hero__copy .wif-lead {
            font-size: clamp(1rem, 2.2vw, 1.125rem);
            color: var(--wif-muted);
            line-height: 1.65;
            margin: 0 0 1rem;
        }
        .wif-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #93c5fd;
            background: rgba(26, 115, 232, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.35);
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            margin-bottom: 1rem;
        }
        .wif-hero__art {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            padding: 1.5rem;
            border-radius: var(--wif-radius);
            background: linear-gradient(145deg, rgba(26, 115, 232, 0.12), rgba(22, 26, 34, 0.6));
            border: 1px solid var(--wif-line);
        }
        .wif-hero__art svg.wif-hero-svg {
            width: min(100%, 280px);
            height: auto;
            stroke: rgba(147, 197, 253, 0.9);
            fill: none;
            stroke-width: 1.25;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .wif-hero-cam__floor {
            fill: rgba(26, 115, 232, 0.12);
            stroke: none;
        }
        .wif-hero-cam {
            transform-origin: 100px 100px;
            animation: wif-cam-float 5s ease-in-out infinite;
        }
        .wif-hero-cam__glass {
            fill: rgba(96, 165, 250, 0.18);
            stroke: rgba(186, 230, 253, 0.75);
            animation: wif-cam-lens 3.2s ease-in-out infinite;
        }
        .wif-hero-cam__glow-fill {
            animation: wif-cam-glow 3.2s ease-in-out infinite;
        }
        .wif-hero-cam__pulse-ring {
            stroke: rgba(96, 165, 250, 0.45);
            stroke-width: 1;
            animation: wif-cam-pulse 3.2s ease-in-out infinite;
        }
        .wif-hero-cam__ring-outer,
        .wif-hero-cam__ring-mid {
            animation: wif-cam-stroke 4s ease-in-out infinite;
        }
        .wif-hero-cam__ring-mid {
            animation-delay: 0.4s;
        }
        @keyframes wif-cam-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        @keyframes wif-cam-lens {
            0%, 100% { fill: rgba(96, 165, 250, 0.12); stroke-opacity: 0.65; }
            50% { fill: rgba(96, 165, 250, 0.32); stroke-opacity: 1; }
        }
        @keyframes wif-cam-glow {
            0%, 100% { opacity: 0.55; }
            50% { opacity: 1; }
        }
        @keyframes wif-cam-pulse {
            0%, 100% { stroke-opacity: 0.22; }
            50% { stroke-opacity: 0.72; }
        }
        @keyframes wif-cam-stroke {
            0%, 100% { stroke-opacity: 0.55; }
            50% { stroke-opacity: 1; }
        }
        @media (prefers-reduced-motion: reduce) {
            .wif-hero-cam,
            .wif-hero-cam__glass,
            .wif-hero-cam__glow-fill,
            .wif-hero-cam__pulse-ring,
            .wif-hero-cam__ring-outer,
            .wif-hero-cam__ring-mid {
                animation: none !important;
            }
            .wif-hero-cam__glass {
                fill: rgba(96, 165, 250, 0.2);
                stroke-opacity: 0.85;
            }
            .wif-hero-cam__glow-fill { opacity: 0.75; }
            .wif-hero-cam__pulse-ring { stroke-opacity: 0.35; }
        }

        /* Icon strip */
        .wif-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem 1.25rem;
            padding: 1rem 0 0;
            border-top: 1px solid var(--wif-line);
            margin-top: 1.25rem;
        }
        .wif-strip__item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.78);
        }
        .wif-strip__item > span { font-weight: 500; letter-spacing: 0.01em; }
        .wif-strip__item svg {
            width: 20px;
            height: 20px;
            stroke: var(--wif-primary);
            fill: none;
            stroke-width: 1.5;
        }

        /* Sections */
        .wif-section {
            margin-bottom: clamp(2rem, 5vw, 3rem);
        }
        .wif-section__title {
            font-size: clamp(1.25rem, 2.8vw, 1.5rem);
            font-weight: 600;
            margin: 0 0 1rem;
            letter-spacing: -0.02em;
        }
        .wif-panel {
            background: var(--wif-glass);
            border: 1px solid var(--wif-line);
            border-radius: var(--wif-radius);
            padding: clamp(1.25rem, 3vw, 1.75rem);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
        }
        .wif-prose p {
            margin: 0 0 1rem;
            color: var(--wif-muted);
            line-height: 1.65;
            font-size: 0.98rem;
        }
        .wif-prose p:last-child { margin-bottom: 0; }
        .wif-prose strong { color: rgba(255, 255, 255, 0.95); font-weight: 600; }

        /* Compare grid */
        .wif-grid {
            display: grid;
            gap: 0.75rem;
        }
        @media (min-width: 640px) {
            .wif-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 900px) {
            .wif-grid--5 { grid-template-columns: repeat(5, 1fr); }
            .wif-grid--6 { grid-template-columns: repeat(3, 1fr); }
        }
        @media (min-width: 640px) and (max-width: 899px) {
            .wif-grid--5 { grid-template-columns: repeat(2, 1fr); }
            .wif-grid--6 { grid-template-columns: repeat(2, 1fr); }
        }
        .wif-grid--4 { grid-template-columns: 1fr; }
        @media (min-width: 640px) {
            .wif-grid--4 { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1000px) {
            .wif-grid--4 { grid-template-columns: repeat(4, 1fr); }
        }
        .wif-section-intro {
            color: var(--wif-muted);
            font-size: 0.98rem;
            line-height: 1.65;
            margin: -0.25rem 0 1.25rem;
            max-width: 52rem;
        }
        .wif-card {
            padding: 1rem 1.1rem;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.06);
            height: 100%;
        }
        .wif-card h3 {
            font-size: 1rem;
            margin: 0 0 0.5rem;
            font-weight: 600;
            color: #fff;
        }
        .wif-card p {
            margin: 0;
            font-size: 0.88rem;
            color: var(--wif-muted);
            line-height: 1.55;
        }
        .wif-faq {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .wif-faq details {
            border: 1px solid var(--wif-line);
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.18);
            padding: 0.65rem 1rem;
        }
        .wif-faq summary {
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            list-style: none;
            color: rgba(255, 255, 255, 0.95);
        }
        .wif-faq summary::-webkit-details-marker { display: none; }
        .wif-faq details[open] summary { margin-bottom: 0.5rem; }
        .wif-faq details p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--wif-muted);
            line-height: 1.55;
        }
        .wif-point {
            display: flex;
            gap: 0.85rem;
            align-items: flex-start;
            padding: 0.9rem 1rem;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.06);
            min-height: 100%;
        }
        .wif-point p {
            margin: 0;
            font-size: 0.88rem;
            color: var(--wif-muted);
            line-height: 1.5;
        }
        .wif-point strong { color: #fff; display: block; margin-bottom: 0.25rem; font-size: 0.92rem; }

        /* Steps */
        .wif-steps {
            display: grid;
            gap: 1rem;
        }
        @media (min-width: 768px) {
            .wif-steps { grid-template-columns: repeat(3, 1fr); }
        }
        .wif-step {
            padding: 1.25rem 1.1rem;
            border-radius: 14px;
            background: rgba(0, 0, 0, 0.22);
            border: 1px solid var(--wif-line);
            height: 100%;
        }
        .wif-step__num {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--wif-primary);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        .wif-step h3 {
            font-size: 1.05rem;
            margin: 0 0 0.6rem;
            font-weight: 600;
        }
        .wif-step p {
            font-size: 0.88rem;
            color: var(--wif-muted);
            line-height: 1.55;
            margin: 0 0 0.65rem;
        }
        .wif-step p:last-child { margin-bottom: 0; }
        .wif-step__head {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        /* Split band */
        .wif-split {
            display: grid;
            gap: 1rem;
        }
        @media (min-width: 720px) {
            .wif-split { grid-template-columns: 1fr 1fr; }
        }
        .wif-mini {
            padding: 1rem 1.1rem;
            border-radius: 12px;
            border: 1px solid var(--wif-line);
            background: rgba(0, 0, 0, 0.18);
        }
        .wif-mini h3 {
            font-size: 0.95rem;
            margin: 0 0 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .wif-mini p { margin: 0; font-size: 0.86rem; color: var(--wif-muted); line-height: 1.55; }

        .wif-list {
            margin: 0;
            padding-left: 1.2rem;
            color: var(--wif-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .wif-list li { margin-bottom: 0.5rem; }

        /* CTA */
        .wif-cta {
            text-align: center;
            padding: clamp(1.75rem, 4vw, 2.5rem);
            border-radius: var(--wif-radius);
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.2), rgba(22, 26, 34, 0.85));
            border: 1px solid rgba(26, 115, 232, 0.35);
        }
        .wif-cta p { margin: 0 0 1rem; color: var(--wif-muted); font-size: 0.98rem; }
        .wif-cta__btns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem 1rem;
            align-items: center;
        }
        .wif-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            padding: 0.75rem 1.35rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        .wif-btn--primary {
            background: var(--wif-primary);
            color: #fff;
            border: none;
            box-shadow: 0 8px 24px rgba(26, 115, 232, 0.35);
        }
        .wif-btn--primary:hover { background: #1557b0; transform: translateY(-1px); }
        .wif-btn--ghost {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: 1px solid var(--wif-line);
        }
        .wif-btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

        /* Footer — match landing.html (dark, same grid + bottom bar) */
        .page-wif .footer {
            border-top: 1px solid var(--wif-line);
            margin-top: 3rem;
            padding: 2.5rem 0 0;
            background: rgba(0, 0, 0, 0.28);
            color: rgba(255, 255, 255, 0.92);
        }
        .page-wif .footer .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
        .page-wif .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .page-wif .footer-section h3 {
            color: #fff;
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0 0 1rem;
        }
        .page-wif .footer-section p {
            color: rgba(255, 255, 255, 0.86);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 0.5rem;
        }
        .page-wif .footer-section ul { list-style: none; padding: 0; margin: 0; }
        .page-wif .footer-section ul li { margin-bottom: 0.5rem; }
        .page-wif .footer-section ul li a {
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.15s ease;
        }
        .page-wif .footer-section ul li a:hover { color: #fff; }
        .page-wif .footer-bottom {
            border-top: 1px solid var(--wif-line);
            padding: 1.5rem 0;
        }
        .page-wif .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .page-wif .footer-left p {
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            margin: 0 0 0.25rem;
            line-height: 1.4;
        }
        .page-wif .footer-left p:last-child { margin-bottom: 0; }
        .page-wif .footer-left p .heart { color: #e74c3c; font-weight: bold; }
        .page-wif .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .page-wif .footer-links a {
            color: rgba(255, 255, 255, 0.88);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.15s ease;
        }
        .page-wif .footer-links a:hover { color: #fff; }
        .page-wif .social-links { display: flex; gap: 1rem; margin-top: 1rem; }
        .page-wif .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: rgba(255, 255, 255, 0.92);
            transition: background 0.15s ease, transform 0.15s ease;
        }
        .page-wif .social-link:hover {
            background: var(--wif-primary);
            color: #fff;
            transform: translateY(-2px);
        }
        .page-wif .social-link svg { width: 20px; height: 20px; fill: currentColor; }
        @media (max-width: 768px) {
            .page-wif .footer-bottom-content { flex-direction: column; text-align: center; }
        }
