    @import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Instrument+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

    :root {
        --bg: #050A16;
        --navy: #0A1428;
        --navy-2: #0E1C3A;
        --navy-3: #14264E;
        --white: #F7F5F0;
        --dim: rgba(247, 245, 240, 0.62);
        --dimmer: rgba(247, 245, 240, 0.38);
        --gold: #FFD700;
        --amber: #FFA928;
        --gold-deep: #B8860B;
        --green: #7CE38B;
        --blue-glow: rgba(41, 98, 255, 0.14);
        --glass: rgba(150, 180, 255, 0.05);
        --glass-2: rgba(150, 180, 255, 0.09);
        --stroke: rgba(170, 200, 255, 0.15);
        --stroke-soft: rgba(170, 200, 255, 0.08);
        --gold-stroke: rgba(255, 215, 0, 0.28);
        /* Google reference palette (used inside the white SERP sheet) */
        --g-blue: #4285F4;
        --g-red: #EA4335;
        --g-yellow: #FBBC05;
        --g-green: #34A853;
        --g-link: #1a0dab;
        --g-text: #202124;
        --g-sub: #4d5156;
        --g-grey: #70757a;
        --g-line: #ebecf0;
        --g-purple: #9B72CB;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Instrument Sans', sans-serif;
        background:
            radial-gradient(ellipse 120% 60% at 50% -10%, var(--navy-2), transparent 60%),
            radial-gradient(ellipse 80% 50% at 100% 110%, rgba(20, 38, 78, 0.6), transparent 65%),
            var(--bg);
        background-attachment: fixed;
        color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
        font-size: 17px;
    }

    ::selection {
        background: var(--gold);
        color: #000;
    }

    .disp {
        font-family: 'Bricolage Grotesque', sans-serif;
    }

    .mono {
        font-family: 'JetBrains Mono', monospace;
    }

    /* Backdrop */
    .bg-fx {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .bg-fx::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(170, 200, 255, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(170, 200, 255, 0.04) 1px, transparent 1px);
        background-size: 64px 64px;
        mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black, transparent 82%);
    }

    .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(110px);
    }

    .orb-1 {
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.14), transparent 70%);
        top: -260px;
        left: 50%;
        transform: translateX(-50%);
    }

    .orb-2 {
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, var(--blue-glow), transparent 70%);
        top: 90vh;
        left: -200px;
    }

    .orb-3 {
        width: 560px;
        height: 560px;
        background: radial-gradient(circle, rgba(41, 98, 255, 0.10), transparent 70%);
        top: 170vh;
        right: -200px;
    }

    main,
    header,
    footer,
    .mobile-sheet {
        position: relative;
        z-index: 1;
    }

    .hl {
        background: linear-gradient(100deg, var(--gold), var(--amber));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    /* ---------- Promo bar ---------- */
    .promo-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 120;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        padding: 0.55rem 3.2rem 0.55rem 1.2rem;
        background: linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968);
        background-size: 300% 100%;
        animation: gradShift 4s linear infinite alternate;
        color: #1a1400;
        font-family: 'Bricolage Grotesque', sans-serif;
        font-weight: 700;
        font-size: 0.86rem;
        text-align: center;
    }

    .promo-bar i {
        font-size: 0.82rem;
    }

    .promo-bar a {
        color: #1a1400;
        text-decoration: underline;
        text-underline-offset: 3px;
        font-weight: 800;
        white-space: nowrap;
    }

    .promo-bar a:hover {
        text-decoration-thickness: 2px;
    }

    .promo-close {
        position: absolute;
        right: 0.9rem;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.12);
        border: none;
        color: #1a1400;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 0.75rem;
        transition: background 0.15s ease;
    }

    .promo-close:hover {
        background: rgba(0, 0, 0, 0.24);
    }

    body.has-promo .nav-wrap {
        top: calc(14px + 40px);
    }

    body.has-promo .mobile-sheet {
        top: 110px;
    }

    @media (max-width: 600px) {
        .promo-bar {
            font-size: 0.76rem;
            padding: 0.5rem 2.8rem 0.5rem 0.9rem;
        }
    }

    /* ---------- Nav ---------- */
    .nav-wrap {
        position: fixed;
        top: 14px;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        justify-content: center;
        padding: 0 4%;
        transition: top 0.25s ease;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.4rem;
        background: rgba(8, 14, 30, 0.6);
        backdrop-filter: blur(24px) saturate(1.5);
        -webkit-backdrop-filter: blur(24px) saturate(1.5);
        border: 1px solid var(--stroke-soft);
        border-radius: 100px;
        padding: 0.65rem 0.7rem 0.65rem 1.4rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
        max-width: 980px;
        width: 100%;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        text-decoration: none;
        color: var(--white);
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 1.05rem;
    }

    .brand-logo {
        height: 38px;
        width: auto;
        display: block;
    }

    .brand-icon {
        width: 28px;
        height: 28px;
        border-radius: 30%;
        background: linear-gradient(135deg, var(--gold), var(--amber));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.5rem;
        font-weight: 800;
        color: #1a1400;
        box-shadow: 0 0 16px rgba(255, 215, 0, 0.5);
        font-family: 'Bricolage Grotesque';
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }

    .nav-links a {
        color: var(--dim);
        text-decoration: none;
        font-size: 0.96rem;
        font-weight: 500;
        padding: 0.6rem 1.05rem;
        border-radius: 100px;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-links a:hover {
        color: var(--gold);
        background: var(--glass);
    }

    .pill {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        position: relative;
        font-family: 'Bricolage Grotesque', sans-serif;
        font-weight: 800;
        font-size: 0.82rem;
        letter-spacing: 0.01em;
        text-decoration: none;
        padding: 0.72rem 1.55rem;
        border-radius: 16px;
        border: 2px solid transparent;
        background:
            linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968) padding-box,
            conic-gradient(from var(--angle), #fff, var(--gold), var(--gold-deep), var(--amber), #fff) border-box;
        background-size: 300% 100%, 100% 100%;
        animation: gradShift 3.5s linear infinite alternate, spin 3s linear infinite;
        color: #1a1400;
        cursor: pointer;
        box-shadow: 0 0 20px -2px rgba(255, 215, 0, 0.45), 0 4px 14px rgba(2, 6, 18, 0.55);
        transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    @keyframes gradShift {
        0% {
            background-position: 0% 50%, 0 0;
        }

        100% {
            background-position: 100% 50%, 0 0;
        }
    }

    .pill i {
        font-size: 0.85em;
        transition: transform 0.2s ease;
    }

    .pill:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
        box-shadow: 0 0 34px 0 rgba(255, 215, 0, 0.65), 0 6px 18px rgba(2, 6, 18, 0.55);
    }

    .pill:hover i {
        transform: translateX(4px);
    }

    .pill:active {
        transform: translateY(1px) scale(0.98);
    }

    .pill-ghost {
        background:
            linear-gradient(rgba(10, 18, 38, 0.92), rgba(10, 18, 38, 0.92)) padding-box,
            conic-gradient(from var(--angle), var(--gold), rgba(170, 200, 255, 0.55), var(--amber), var(--gold)) border-box;
        background-size: 100% 100%, 100% 100%;
        border: 1.5px solid transparent;
        animation: spin 4s linear infinite;
        color: var(--white);
        box-shadow: 0 4px 14px rgba(2, 6, 18, 0.5);
        text-shadow: none;
    }

    .pill-ghost:hover {
        color: var(--gold);
        filter: none;
        box-shadow: 0 0 24px -4px rgba(255, 215, 0, 0.4), 0 4px 14px rgba(2, 6, 18, 0.5);
    }

    .pill-big {
        font-size: 1rem;
        padding: 1.05rem 2.4rem;
    }

    .menu-btn {
        display: none;
        background: var(--glass-2);
        border: 1px solid var(--stroke);
        border-radius: 100px;
        color: var(--white);
        font-size: 0.84rem;
        font-weight: 600;
        padding: 0.5rem 1rem;
        cursor: pointer;
        font-family: 'Instrument Sans';
    }

    .mobile-sheet {
        display: none;
        position: fixed;
        top: 70px;
        left: 4%;
        right: 4%;
        z-index: 99;
        background: rgba(10, 18, 38, 0.94);
        backdrop-filter: blur(28px);
        border: 1px solid var(--stroke);
        border-radius: 24px;
        padding: 0.75rem;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    }

    .mobile-sheet.open {
        display: block;
    }

    .mobile-sheet a {
        display: block;
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        padding: 0.9rem 1rem;
        border-radius: 14px;
    }

    .mobile-sheet a:hover {
        background: var(--glass);
    }

    .mobile-sheet a:last-child {
        color: var(--gold);
    }

    /* App-launch animations (like tapping an icon on iOS) */
    .reveal {
        opacity: 0;
        transform: translateY(18px) scale(0.94);
        transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.34, 1.45, 0.64, 1);
    }

    .reveal.in {
        opacity: 1;
        transform: none;
    }

    .pop {
        opacity: 0;
        transform: scale(0.7);
        filter: blur(6px);
        transition: opacity 0.5s ease, filter 0.5s ease, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
        transform-origin: center 40%;
    }

    .pop.in {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    /* iOS-style touch feedback */
    .result:active,
    .review:active,
    .calc:active,
    .chip:active,
    .p-chip:active {
        transform: scale(0.985);
        transition-duration: 0.08s;
    }

    /* ---------- Hero ---------- */
    .hero {
        position: relative;
        padding: 10.5rem 5% 2rem;
        max-width: 1140px;
        margin: 0 auto;
    }

    .hero-bg {
        position: absolute;
        top: -120px;
        left: 50%;
        width: 100vw;
        height: 820px;
        transform: translateX(-50%);
        background-image: url('https://seoapp.io/assets/themes/theme_v1/images/dashboard-home.jpg');
        background-size: cover;
        background-position: center top;
        filter: blur(60px) brightness(0.32) saturate(1.35);
        z-index: -1;
        -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 34%, black 25%, transparent 72%);
        mask-image: radial-gradient(ellipse 70% 62% at 50% 34%, black 25%, transparent 72%);
        pointer-events: none;
    }

    /* ---------- White Google SERP sheet (stacked pages + aura behind it) ---------- */
    .sheet-stack {
        position: relative;
    }

    .sheet-stack::before {
        content: '';
        position: absolute;
        inset: -45px;
        border-radius: 60px;
        background: conic-gradient(from var(--angle), rgba(255, 215, 0, 0.35), rgba(66, 133, 244, 0.22), rgba(155, 114, 203, 0.22), rgba(255, 169, 40, 0.3), rgba(255, 215, 0, 0.35));
        animation: spin 9s linear infinite;
        filter: blur(72px);
        z-index: 0;
        pointer-events: none;
    }

    .serp-sheet {
        position: relative;
        z-index: 1;
        isolation: isolate;
        background: #fff;
        color: var(--g-text);
        border-radius: 30px;
        padding: 1.9rem clamp(1.1rem, 3vw, 2.1rem) 2.1rem;
        box-shadow: 0 50px 110px -35px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.07), 0 0 90px -30px rgba(255, 215, 0, 0.3);
    }

    .serp-sheet ::selection {
        background: var(--g-blue);
        color: #fff;
    }

    /* Google tab strip under the search bar */
    .serp-tabs {
        display: flex;
        gap: 0.15rem;
        align-items: stretch;
        margin-top: 1.2rem;
        border-bottom: 1px solid var(--g-line);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .serp-tabs::-webkit-scrollbar {
        display: none;
    }

    .serp-tab {
        font-family: 'Instrument Sans', sans-serif;
        font-weight: 500;
        font-size: 0.9rem;
        color: var(--g-grey);
        text-decoration: none;
        padding: 0.55rem 1rem 0.8rem;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
        transition: color 0.15s ease, border-color 0.15s ease;
    }

    .serp-tab:hover {
        color: var(--g-text);
    }

    .serp-tab.active {
        color: var(--g-blue);
        border-bottom-color: var(--g-blue);
        font-weight: 600;
    }

    .hero h1 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-weight: 800;
        font-size: clamp(2.2rem, 5.6vw, 4.6rem);
        letter-spacing: -0.02em;
        line-height: 1.06;
        max-width: 20ch;
        margin-bottom: 2.5rem;
    }

    .searchbar {
        position: relative;
        display: flex;
        align-items: center;
        gap: 1rem;
        background: #fff;
        border: 1px solid #dfe1e5;
        border-radius: 100px;
        padding: 1.15rem 1.7rem;
        font-size: clamp(1.05rem, 2.2vw, 1.25rem);
        box-shadow: 0 2px 8px rgba(32, 33, 36, 0.12);
        transition: box-shadow 0.25s ease;
    }

    .searchbar:hover,
    .searchbar:focus-within {
        box-shadow: 0 4px 16px rgba(32, 33, 36, 0.2);
    }

    /* Gemini glow: Google's four colors orbiting the bar while it "thinks" */
    .searchbar::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 100px;
        z-index: -1;
        background: conic-gradient(from var(--angle), var(--g-blue), var(--g-purple), var(--g-red), var(--g-yellow), var(--g-green), var(--g-blue));
        animation: spin 2.6s linear infinite;
        filter: blur(5px);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .searchbar.searching::before,
    .searchbar:focus-within::before {
        opacity: 1;
    }

    .searchbar .mag {
        flex-shrink: 0;
        font-size: 1.15rem;
        font-weight: 800;
        background: linear-gradient(120deg, var(--g-blue), var(--g-purple));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .search-input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: var(--g-text);
        font-family: 'Instrument Sans';
        font-size: inherit;
        caret-color: var(--g-blue);
        min-width: 0;
    }

    .search-input::placeholder {
        color: var(--g-text);
        opacity: 0.9;
    }

    .search-go {
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 0.72rem;
        background: linear-gradient(115deg, var(--g-blue), var(--g-purple), var(--g-blue));
        background-size: 250% 100%;
        animation: gradShift 3s linear infinite alternate;
        color: #fff;
        border: none;
        border-radius: 100px;
        padding: 0.6rem 1.3rem;
        cursor: pointer;
        flex-shrink: 0;
        box-shadow: 0 4px 14px -4px rgba(66, 133, 244, 0.55);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .search-go:hover {
        transform: scale(1.06);
        box-shadow: 0 8px 22px -4px rgba(66, 133, 244, 0.7);
    }

    .search-go:active {
        transform: scale(0.98);
    }

    .results-meta {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.78rem;
        color: var(--g-grey);
        margin: 1.4rem 0 1.5rem;
        padding-left: 0.4rem;
    }

    .results-meta b {
        color: var(--g-text);
    }

    /* ---------- AI Overview ---------- */
    .ai-overview {
        position: relative;
        background: linear-gradient(160deg, #f5f8ff, #fdf9ef 70%);
        border: 1px solid #d2e3fc;
        border-radius: 24px;
        padding: 1.6rem 1.8rem;
        margin-bottom: 1.4rem;
    }

    .ai-head {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 0.84rem;
        margin-bottom: 0.9rem;
        letter-spacing: 0.04em;
        background: linear-gradient(110deg, var(--g-blue), var(--g-purple), var(--g-red));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .ai-head i {
        -webkit-text-fill-color: var(--g-purple);
        color: var(--g-purple);
    }

    .ai-overview p {
        color: var(--g-sub);
        font-size: 1.02rem;
    }

    .ai-overview p b {
        color: var(--g-text);
    }

    .ai-note {
        margin-top: 1rem;
        padding-top: 0.9rem;
        border-top: 1px dashed #d2e3fc;
        font-size: 0.88rem;
        color: var(--g-grey);
    }

    .ai-note b {
        color: var(--gold-deep);
    }

    /* ---------- Results ---------- */
    .result {
        background: #fff;
        border: 1px solid var(--g-line);
        border-radius: 22px;
        padding: 1.6rem 1.8rem;
        margin-bottom: 1.1rem;
        position: relative;
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .result:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 34px -16px rgba(32, 33, 36, 0.35);
    }

    /* Stacked favicon + site name + breadcrumb, like Google's result header */
    .r-site {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.7rem;
    }

    .r-site .r-name {
        display: block;
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--g-text);
        line-height: 1.3;
    }

    .r-site .r-name .ad-tag {
        margin-left: 0.45rem;
    }

    .r-site .r-crumb {
        display: block;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.72rem;
        color: var(--g-sub);
        line-height: 1.35;
    }

    .fav-grey {
        background: #f1f3f4 !important;
        color: var(--g-grey) !important;
        box-shadow: none !important;
    }

    .fav {
        width: 28px;
        height: 28px;
        border-radius: 30%;
        background: linear-gradient(135deg, var(--gold), var(--amber));
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.45rem;
        font-weight: 800;
        color: #1a1400;
        font-family: 'Bricolage Grotesque';
        flex-shrink: 0;
        box-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
    }

    .result h3 a,
    .result h2 a {
        font-family: 'Bricolage Grotesque', sans-serif;
        color: var(--g-link);
        text-decoration: none;
        font-weight: 700;
        letter-spacing: -0.01em;
        transition: color 0.15s ease;
    }

    .result h3 a:hover,
    .result h2 a:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .result h3 {
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .result p {
        color: var(--g-sub);
        font-size: 0.98rem;
        margin-top: 0.55rem;
    }

    .result p b {
        color: var(--g-text);
        font-weight: 600;
    }

    /* #1 result */
    .number-one-wrap {
        position: relative;
        border-radius: 27px;
        padding: 1.5px;
        background: linear-gradient(var(--angle, 0deg), rgba(255, 215, 0, 0.95), rgba(255, 169, 40, 0.35), rgba(255, 255, 255, 0.25), rgba(255, 215, 0, 0.95));
        animation: spin 7s linear infinite;
        margin-bottom: 1.5rem;
        box-shadow: 0 6px 30px -8px rgba(184, 134, 11, 0.35);
    }

    @property --angle {
        syntax: '<angle>';
        initial-value: 0deg;
        inherits: false;
    }

    @keyframes spin {
        to {
            --angle: 360deg;
        }
    }

    .result.number-one {
        margin: 0;
        border: none;
        border-radius: 26px;
        background: #FFFDF4;
        padding: 2.3rem;
    }

    .result.number-one:hover {
        transform: none;
        box-shadow: none;
    }

    .rank-flag {
        position: absolute;
        top: -1.1rem;
        left: 1.7rem;
        background: linear-gradient(135deg, var(--gold), var(--amber));
        color: #1a1400;
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 0.74rem;
        padding: 0.4rem 1.1rem;
        border-radius: 100px;
        box-shadow: 0 0 24px rgba(255, 215, 0, 0.55);
        z-index: 2;
    }

    .number-one h2 {
        font-size: clamp(1.3rem, 3vw, 1.75rem);
        line-height: 1.25;
    }

    .number-one h2 a {
        background: linear-gradient(100deg, #B8860B, #E58E00);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .stars {
        color: var(--amber);
        font-size: 0.85rem;
    }

    .stars i {
        margin-right: 2px;
    }

    .number-one p {
        font-size: 1.05rem;
        margin-top: 0.7rem;
    }

    .r-stats {
        font-size: 0.82rem;
        color: var(--g-grey);
        margin-top: 0.6rem;
        font-family: 'JetBrains Mono', monospace;
    }

    .r-stats b {
        color: var(--g-text);
    }

    .sitelinks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem 2rem;
        margin-top: 1.4rem;
        padding-top: 1.3rem;
        border-top: 1px solid #f0e8cf;
    }

    .sitelinks a {
        color: var(--g-link);
        font-family: 'Instrument Sans';
        font-weight: 700;
        font-size: 0.98rem;
        text-decoration: none;
    }

    .sitelinks a:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .sitelinks small {
        display: block;
        color: var(--g-grey);
        font-weight: 400;
        font-size: 0.82rem;
    }

    .result.ad {
        opacity: 0.55;
        filter: saturate(0.4);
    }

    .result.ad:hover {
        opacity: 1;
        filter: none;
    }

    .ad-tag {
        display: inline-block;
        font-family: 'Instrument Sans', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--g-text);
        letter-spacing: 0.02em;
    }

    .result.ad h3 a {
        color: var(--g-link);
    }

    /* ---------- SERP image pack (app screenshots) ---------- */
    .img-pack {
        position: relative;
        margin-bottom: 1.1rem;
        background: #fff;
        border: 1px solid var(--g-line);
        border-radius: 22px;
        padding: 1.4rem 1.6rem 1.1rem;
    }

    .img-pack-head {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        font-family: 'Instrument Sans';
        font-weight: 700;
        font-size: 1rem;
        color: var(--g-text);
        margin-bottom: 0.85rem;
    }

    .img-pack-head>i {
        color: var(--g-blue);
        font-size: 0.95rem;
    }

    .img-pack-head a {
        color: var(--g-blue);
        font-size: 0.82rem;
        font-weight: 500;
        text-decoration: none;
        margin-left: auto;
    }

    .img-pack-head a:hover {
        text-decoration: underline;
    }

    .img-pack-head a i {
        font-size: 0.72rem;
    }

    .img-row {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(210px, 1fr);
        gap: 0.8rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: thin;
        scrollbar-color: #dadce0 transparent;
    }

    .img-row figure {
        margin: 0;
        min-width: 0;
    }

    .img-row .shot {
        aspect-ratio: 16 / 10;
        border-radius: 14px;
        border: 1px solid var(--g-line);
        overflow: hidden;
        background: #f1f3f4;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .img-row figure:hover .shot {
        transform: translateY(-3px);
        box-shadow: 0 12px 26px -12px rgba(32, 33, 36, 0.4);
    }

    .img-row img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    .img-row figcaption {
        font-family: 'JetBrains Mono';
        font-size: 0.72rem;
        color: var(--g-grey);
        margin-top: 0.5rem;
    }

    /* ---------- "We track this" annotations ---------- */
    .track-tag {
        position: absolute;
        top: -1.5rem;
        right: -3.4rem;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        border: 2.5px solid transparent;
        background:
            linear-gradient(160deg, #101B36, #050A16) padding-box,
            conic-gradient(from var(--angle), var(--gold), #fff, var(--amber), var(--gold-deep), var(--gold)) border-box;
        animation: spin 3s linear infinite;
        color: #fff;
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.02rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        padding: 0.85rem 1.6rem;
        border-radius: 100px;
        box-shadow: 0 18px 40px -12px rgba(5, 10, 22, 0.85), 0 0 34px -4px rgba(255, 215, 0, 0.65);
        opacity: 0;
        transform: translateY(16px) scale(0.55);
        transition: opacity 0.4s ease 0.55s, transform 0.7s cubic-bezier(0.34, 1.9, 0.64, 1) 0.55s;
        pointer-events: none;
        white-space: nowrap;
    }

    .track-tag i {
        color: var(--gold);
        font-size: 1.1rem;
    }

    .track-tag b {
        color: var(--gold);
        font-weight: 800;
        margin-left: 0.15rem;
    }

    .stage-item.in .track-tag {
        opacity: 1;
        transform: rotate(2deg);
    }

    .stage-item.ad-item .track-tag {
        animation-duration: 6s;
        box-shadow: 0 18px 40px -12px rgba(5, 10, 22, 0.85);
    }

    .stage-item.ad-item .track-tag i {
        color: var(--amber);
    }

    @media (max-width: 980px) {
        .track-tag {
            right: 0.9rem;
            font-size: 0.72rem;
            padding: 0.5rem 1rem;
            top: -1.05rem;
        }
    }

    @media (max-width: 520px) {
        .track-tag {
            font-size: 0.6rem;
            padding: 0.42rem 0.8rem;
            right: 0.7rem;
            top: -0.9rem;
            gap: 0.4rem;
        }
    }

    /* ---------- Full-bleed screenshot band (reused by calc etc.) ---------- */
    .band-wrap {
        position: relative;
        margin-top: 4.5rem;
        padding: 4.5rem 5%;
        overflow: hidden;
    }

    .band-bg {
        position: absolute;
        inset: -40px;
        background-size: cover;
        background-position: center;
        filter: blur(46px) brightness(0.22) saturate(1.2);
        z-index: 0;
    }

    .band-inner {
        position: relative;
        z-index: 1;
        max-width: 960px;
        margin: 0 auto;
    }

    /* ---------- Product tour ---------- */
    .tour-wrap {
        position: relative;
        margin-top: 4.5rem;
        padding: 4.5rem 5%;
        overflow: hidden;
    }

    .tour-bg {
        position: absolute;
        inset: -40px;
        background-image: url('https://seoapp.io/assets/themes/theme_v1/images/dashboard-home.jpg');
        background-size: cover;
        background-position: center;
        filter: blur(42px) brightness(0.24) saturate(1.2);
        z-index: 0;
    }

    .tour-inner {
        position: relative;
        z-index: 1;
        max-width: 1100px;
        margin: 0 auto;
    }

    .tour-tabs {
        display: flex;
        gap: 0.6rem;
        flex-wrap: wrap;
        margin-bottom: 1.75rem;
    }

    .t-tab {
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 0.88rem;
        border: 1px solid var(--stroke);
        border-radius: 100px;
        padding: 0.65rem 1.5rem;
        background: rgba(0, 0, 0, 0.35);
        color: var(--dim);
        cursor: pointer;
        transition: all 0.18s ease;
        backdrop-filter: blur(10px);
    }

    .t-tab.active,
    .t-tab:hover {
        background: linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968);
        background-size: 300% 100%;
        animation: gradShift 3.5s linear infinite alternate;
        color: #1a1400;
        border-color: transparent;
        box-shadow: 0 0 22px rgba(255, 215, 0, 0.4);
    }

    .tour-grid {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 2.5rem;
        align-items: center;
    }

    .tour-copy h3 {
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        letter-spacing: -0.02em;
        margin-bottom: 0.8rem;
    }

    .tour-copy p {
        color: var(--dim);
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }

    .tour-copy p b {
        color: var(--white);
    }

    .tour-step {
        font-family: 'JetBrains Mono';
        font-size: 0.74rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 0.8rem;
        text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
    }

    .tour-screen {
        position: relative;
        border-radius: 22px;
        border: 1px solid var(--gold-stroke);
        overflow: hidden;
        box-shadow: 0 40px 90px -28px rgba(0, 0, 0, 0.9), 0 0 60px -14px rgba(255, 215, 0, 0.28);
        background: var(--navy);
        aspect-ratio: 16 / 10;
    }

    .tour-screen img,
    .tour-screen iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
        border: 0;
        transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.34, 1.45, 0.64, 1);
    }

    .tour-screen .screen-bar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0.6rem 0.9rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent);
        z-index: 2;
    }

    .screen-bar i {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.28);
    }

    .screen-bar i:first-child {
        background: var(--gold);
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
    }

    .tour-actions {
        display: flex;
        gap: 0.9rem;
        align-items: center;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .watch-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 0.88rem;
        color: var(--white);
        background: var(--glass);
        border: 1px solid var(--stroke);
        border-radius: 100px;
        padding: 0.65rem 1.4rem;
        cursor: pointer;
        transition: all 0.18s ease;
        backdrop-filter: blur(10px);
    }

    .watch-btn:hover {
        color: var(--gold);
        border-color: var(--gold-stroke);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.22);
    }

    .watch-btn .tri,
    .watch-btn i {
        color: var(--gold);
        font-size: 0.72rem;
    }

    /* ---------- Meet the creators ---------- */
    .creators {
        max-width: 1100px;
        margin: 0 auto;
        padding: 4.5rem 5% 0;
    }

    .creators-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 2.25rem;
        align-items: stretch;
    }

    .founder-story {
        background: linear-gradient(160deg, rgba(255, 215, 0, 0.08), rgba(14, 28, 58, 0.5) 55%);
        backdrop-filter: blur(22px);
        border: 1px solid var(--gold-stroke);
        border-radius: 26px;
        padding: 2.25rem 2.25rem;
    }

    .src-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'JetBrains Mono';
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.1rem;
        text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
    }

    .founder-story h3 {
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: clamp(1.4rem, 2.8vw, 1.9rem);
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
    }

    .founder-story p {
        color: var(--dim);
        font-size: 1.03rem;
        margin-bottom: 0.9rem;
    }

    .founder-story p b {
        color: var(--white);
    }

    .founder-story .sig {
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        color: var(--gold);
        font-size: 1.02rem;
        margin-top: 1.4rem;
    }

    .founder-cards {
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
        justify-content: center;
    }

    .founder {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.1rem;
        background: var(--glass);
        backdrop-filter: blur(20px);
        border: 1px solid var(--gold-stroke);
        border-radius: 26px;
        padding: 2.2rem 1.8rem;
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .founder:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 40px -8px rgba(255, 215, 0, 0.3);
    }

    .founder-pic {
        width: min(265px, 70vw);
        height: min(265px, 70vw);
        border-radius: 50%;
        flex-shrink: 0;
        object-fit: cover;
        object-position: top;
        border: 3px solid var(--gold);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.4), 0 18px 40px -14px rgba(0, 0, 0, 0.8);
        background: linear-gradient(135deg, var(--gold), var(--amber));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        color: #1a1400;
        font-size: 2.6rem;
    }

    .founder h4 {
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: 1.7rem;
    }

    .founder .role {
        font-size: 0.88rem;
        color: var(--gold);
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-family: 'JetBrains Mono';
    }

    .founder p {
        font-size: 0.95rem;
        color: var(--dim);
        max-width: 34ch;
    }

    /* ---------- Search choreography ---------- */
    #resultsStage {
        position: relative;
    }

    .stage-item {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
        transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.5, 0.64, 1);
    }

    .stage-item.in {
        opacity: 1;
        transform: none;
    }

    .stage-item.ad-item.in {
        opacity: 0.45;
    }

    .stage-item.ad-item.in:hover {
        opacity: 0.95;
    }

    .skeleton {
        position: absolute;
        inset: 0;
        z-index: 5;
        display: none;
        flex-direction: column;
        gap: 1.15rem;
        pointer-events: none;
    }

    .skeleton.show {
        display: flex;
    }

    .sk-card {
        border-radius: 22px;
        border: 1px solid var(--g-line);
        background: #f8f9fa;
        overflow: hidden;
        position: relative;
    }

    .sk-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.9) 50%, transparent 70%);
        transform: translateX(-100%);
        animation: shimmer 1.1s ease infinite;
    }

    @keyframes shimmer {
        to {
            transform: translateX(100%);
        }
    }

    .sk-1 {
        height: 130px;
    }

    .sk-2 {
        height: 300px;
        border-color: #f0e8cf;
    }

    .sk-3 {
        height: 110px;
    }

    .sk-line {
        height: 12px;
        border-radius: 100px;
        background: #e8eaed;
        margin: 1.4rem 1.6rem 0;
    }

    .sk-line.short {
        width: 40%;
    }

    .live-line {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        font-family: 'JetBrains Mono';
        font-size: 0.74rem;
        color: var(--g-grey);
        margin: -0.7rem 0 1.4rem;
        padding-left: 0.4rem;
    }

    .live-line i {
        color: var(--g-green);
        font-size: 0.82rem;
    }

    .live-line b {
        color: var(--g-green);
        font-weight: 700;
    }

    /* ---------- Integrations strip ---------- */
    .integrations {
        text-align: center;
        padding: 3.25rem 5% 0;
        max-width: 960px;
        margin: 0 auto;
    }

    .integrations p {
        font-family: 'JetBrains Mono';
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--dimmer);
        margin-bottom: 1.2rem;
    }

    .int-row {
        display: flex;
        justify-content: center;
        gap: 0.7rem;
        flex-wrap: wrap;
    }

    .int-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Instrument Sans';
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--dim);
        background: var(--glass);
        border: 1px solid var(--stroke-soft);
        border-radius: 100px;
        padding: 0.6rem 1.3rem;
        backdrop-filter: blur(12px);
        transition: all 0.18s ease;
    }

    .int-chip:hover {
        color: var(--white);
        border-color: var(--gold-stroke);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
        transform: translateY(-2px);
    }

    .int-chip i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--amber));
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    }

    /* "More from the builder": positions #2-#5, also taken */
    .builds {
        max-width: 1100px;
        margin: 0 auto;
        padding: 4.5rem 5% 0;
        text-align: center;
    }

    .builds .serp-label {
        margin-bottom: 0.5rem;
    }

    .builds-kicker {
        font-family: 'JetBrains Mono';
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--dimmer);
        margin-bottom: 1rem;
    }

    .builds-sub {
        color: var(--dim);
        font-size: 1.02rem;
        margin-bottom: 2.6rem;
    }

    .builds-sub b {
        color: var(--gold);
    }

    .build-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.1rem;
    }

    @media (max-width: 980px) {
        .build-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 520px) {
        .build-grid {
            grid-template-columns: 1fr;
        }
    }

    .build-card {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        background: #fff;
        color: var(--g-text);
        border-radius: 22px;
        padding: 2rem 1.4rem 1.8rem;
        min-height: 255px;
        text-decoration: none;
        box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.85);
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    }

    /* giant ghosted logo bleeding through the card */
    .b-bg {
        position: absolute;
        inset: 0;
        border-radius: inherit;
        overflow: hidden;
        pointer-events: none;
    }

    .b-bg img {
        position: absolute;
        left: 50%;
        bottom: -10%;
        width: 200%;
        height: auto;
        max-width: none;
        opacity: 0.16;
        transform: translateX(-50%) rotate(-10deg);
        transform-origin: center;
        transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.34, 1.45, 0.64, 1);
    }

    .build-card:hover .b-bg img {
        opacity: 0.26;
        transform: translateX(-50%) rotate(-6deg) scale(1.08);
    }

    .build-card>*:not(.b-bg) {
        position: relative;
        z-index: 1;
    }

    .build-card:nth-child(odd) {
        transform: rotate(-1.4deg);
    }

    .build-card:nth-child(even) {
        transform: rotate(1.4deg);
    }

    .build-card:hover {
        transform: rotate(0deg) translateY(-8px) scale(1.03);
        box-shadow: 0 24px 52px -18px rgba(0, 0, 0, 0.9), 0 0 34px -6px rgba(255, 215, 0, 0.5);
    }

    .build-rank {
        position: absolute;
        top: -0.85rem;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--gold), var(--amber));
        color: #1a1400;
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: 0.76rem;
        padding: 0.32rem 0.95rem;
        border-radius: 100px;
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
        white-space: nowrap;
    }

    .build-card .b-logo {
        height: 80px;
        width: auto;
        max-width: 90%;
        object-fit: contain;
        display: block;
        margin-bottom: 0.55rem;
    }

    .build-card .b-name {
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: 1.05rem;
    }

    .build-card .b-desc {
        color: var(--g-sub);
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .build-card .b-crumb {
        font-family: 'JetBrains Mono';
        font-size: 0.68rem;
        color: var(--g-grey);
        margin-top: 0.3rem;
    }

    /* ---------- Sections ---------- */
    .serp-section {
        max-width: 960px;
        margin: 0 auto;
        padding: 4.5rem 5% 0;
    }

    /* SERP-style page break between major sections */
    .serp-break {
        display: flex;
        align-items: center;
        gap: 1.6rem;
        max-width: 1050px;
        margin: 6.5rem auto 0;
        padding: 0 5%;
    }

    @media (max-width: 600px) {
        .serp-break {
            gap: 0.8rem;
        }

        .serp-break span {
            font-size: 0.62rem;
            letter-spacing: 0.08em;
            padding: 0.6rem 1rem;
            gap: 0.45rem;
        }
    }

    .serp-break::before,
    .serp-break::after {
        content: '';
        flex: 1;
        height: 2px;
        border-radius: 100px;
    }

    .serp-break::before {
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.55));
        box-shadow: 0 0 14px rgba(255, 215, 0, 0.25);
    }

    .serp-break::after {
        background: linear-gradient(90deg, rgba(255, 215, 0, 0.55), transparent);
        box-shadow: 0 0 14px rgba(255, 215, 0, 0.25);
    }

    .serp-break span {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.86rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--dim);
        border: 2px solid transparent;
        background:
            linear-gradient(160deg, #101B36, #050A16) padding-box,
            conic-gradient(from var(--angle), var(--gold), rgba(170, 200, 255, 0.45), var(--amber), var(--gold)) border-box;
        animation: spin 5s linear infinite;
        border-radius: 100px;
        padding: 0.75rem 1.7rem;
        box-shadow: 0 0 30px -6px rgba(255, 215, 0, 0.45), 0 10px 26px -10px rgba(0, 0, 0, 0.7);
        white-space: nowrap;
    }

    .serp-break span b {
        color: var(--gold);
        font-weight: 700;
    }

    .serp-break i {
        color: var(--gold);
        font-size: 0.82rem;
    }

    .serp-label {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-weight: 700;
        font-size: clamp(1.5rem, 3.2vw, 2.2rem);
        letter-spacing: -0.015em;
        margin-bottom: 1.75rem;
    }

    /* Marquee */
    .marquee {
        margin-top: 4.5rem;
        padding: 1.2rem 0;
        overflow: hidden;
        white-space: nowrap;
        background: linear-gradient(90deg, rgba(14, 28, 58, 0.5), rgba(255, 215, 0, 0.05), rgba(14, 28, 58, 0.5));
        border-top: 1px solid var(--gold-stroke);
        border-bottom: 1px solid var(--gold-stroke);
    }

    .marquee-track {
        display: inline-block;
        animation: scrollm 26s linear infinite;
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 1.15rem;
        color: var(--dim);
    }

    .marquee-track span {
        margin: 0 1.9rem;
    }

    .marquee-track .g {
        color: var(--gold);
        text-shadow: 0 0 16px rgba(255, 215, 0, 0.55);
    }

    .marquee-track .g i {
        font-size: 0.7em;
        vertical-align: middle;
    }

    @keyframes scrollm {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* ---------- Calculator ---------- */
    .calc {
        background: var(--glass);
        backdrop-filter: blur(24px);
        border: 1px solid var(--gold-stroke);
        border-radius: 28px;
        padding: 2.5rem 2.25rem;
        box-shadow: 0 0 60px -18px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    }

    .calc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .calc h3 {
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .calc .sub {
        color: var(--dim);
        font-size: 0.98rem;
        margin-bottom: 2rem;
    }

    .calc label {
        font-family: 'JetBrains Mono';
        font-size: 0.76rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--dimmer);
        display: block;
        margin-bottom: 0.9rem;
    }

    .calc label b {
        color: var(--gold);
        font-size: 1rem;
    }

    input[type=range] {
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        height: 6px;
        border-radius: 100px;
        background: linear-gradient(90deg, var(--gold) var(--fill, 30%), rgba(255, 255, 255, 0.12) var(--fill, 30%));
        outline: none;
        cursor: pointer;
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--amber));
        border: 3px solid #0a0a0a;
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
        cursor: grab;
    }

    input[type=range]::-moz-range-thumb {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--gold);
        border: 3px solid #0a0a0a;
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
        cursor: grab;
    }

    .calc-out {
        text-align: center;
    }

    .calc-out .lbl {
        font-family: 'JetBrains Mono';
        font-size: 0.74rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--dimmer);
        margin-bottom: 0.4rem;
    }

    .calc-out .num {
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: clamp(2.6rem, 5.5vw, 4rem);
        line-height: 1;
        background: linear-gradient(120deg, var(--gold), var(--amber));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        filter: drop-shadow(0 0 24px rgba(255, 215, 0, 0.35));
    }

    .calc-out .per {
        font-size: 0.95rem;
        color: var(--dim);
        margin-top: 0.5rem;
    }

    .calc-out .fine {
        font-size: 0.72rem;
        color: var(--dimmer);
        margin-top: 1.1rem;
        font-family: 'JetBrains Mono';
    }

    /* ---------- PAA + knowledge panel ---------- */
    .kp-wrap {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 2.25rem;
        max-width: 1280px;
        margin: 0 auto;
        padding: 4.5rem 5% 0;
        align-items: start;
    }

    .paa {
        background: #fff;
        border-radius: 30px;
        padding: 1.9rem clamp(1.1rem, 3vw, 2.1rem);
        box-shadow: 0 50px 110px -35px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.07);
    }

    .paa .serp-label {
        color: var(--g-text);
        font-size: clamp(1.3rem, 2.6vw, 1.7rem);
        margin-bottom: 1rem;
    }

    .paa details {
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--g-line);
        border-radius: 0;
        margin-bottom: 0;
        overflow: hidden;
    }

    .paa details:last-of-type {
        border-bottom: none;
    }

    .paa summary {
        list-style: none;
        cursor: pointer;
        padding: 1.15rem 0.4rem;
        font-family: 'Instrument Sans';
        font-weight: 600;
        font-size: 1.08rem;
        color: var(--g-text);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: color 0.15s ease;
    }

    .paa summary:hover {
        color: var(--g-blue);
    }

    .paa summary::-webkit-details-marker {
        display: none;
    }

    .paa summary i {
        font-size: 0.9rem;
        color: var(--g-blue);
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .paa details[open] summary i {
        transform: rotate(180deg);
    }

    .paa details[open] summary {
        color: var(--g-blue);
    }

    .paa .ans {
        padding: 0 0.4rem 1.3rem;
        font-size: 1rem;
        color: var(--g-sub);
    }

    .paa .ans b {
        color: var(--g-text);
    }

    .taglist {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .taglist span {
        font-family: 'JetBrains Mono';
        font-size: 0.72rem;
        border: 1px solid var(--g-line);
        border-radius: 100px;
        padding: 0.3rem 0.8rem;
        background: #f8f9fa;
        color: var(--g-sub);
        transition: all 0.15s ease;
    }

    .taglist span:hover {
        border-color: var(--g-blue);
        color: var(--g-blue);
        background: #f0f5ff;
    }

    .kpanel {
        background: var(--glass);
        backdrop-filter: blur(24px) saturate(1.5);
        border: 1px solid var(--stroke);
        border-radius: 28px;
        overflow: hidden;
        position: sticky;
        top: 96px;
        box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .kp-band {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.20), rgba(14, 28, 58, 0.6));
        border-bottom: 1px solid var(--stroke-soft);
        padding: 1.5rem 1.6rem;
    }

    .kp-band .disp {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .kp-band span {
        font-size: 0.84rem;
        color: var(--dim);
    }

    .kp-body {
        padding: 1.25rem 1.6rem 1.6rem;
    }

    .kp-row {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.55rem 0;
        border-bottom: 1px solid var(--stroke-soft);
        font-size: 0.92rem;
    }

    .kp-row:last-of-type {
        border: none;
    }

    .kp-row span {
        color: var(--dimmer);
    }

    .kp-row b {
        text-align: right;
        color: var(--white);
    }

    .kp-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.55rem;
        margin-top: 1.1rem;
    }

    .kp-stat {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--stroke-soft);
        border-radius: 15px;
        padding: 0.8rem 0.4rem;
        text-align: center;
    }

    .kp-stat .disp {
        font-size: 1.05rem;
        font-weight: 700;
        background: linear-gradient(120deg, var(--gold), var(--amber));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .kp-stat small {
        font-size: 0.6rem;
        color: var(--dimmer);
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    /* ---------- Comparison (modern card grid) ---------- */
    .compare-head {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .compare-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1.15fr;
        gap: 0;
        align-items: stretch;
        background: var(--glass);
        backdrop-filter: blur(22px);
        border: 1px solid var(--stroke-soft);
        border-radius: 28px;
        overflow: hidden;
    }

    .cmp-col {
        display: flex;
        flex-direction: column;
    }

    /* header cells */
    .cmp-h {
        padding: 1.6rem 1.5rem;
        min-height: 108px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.35rem;
        border-bottom: 1px solid var(--stroke);
    }

    .cmp-h .lbl {
        font-family: 'JetBrains Mono';
        font-size: 0.7rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--dimmer);
    }

    .cmp-h .name {
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--dim);
    }

    .cmp-col.feature .cmp-h {
        background: transparent;
    }

    .cmp-col.them {
        background: rgba(255, 255, 255, 0.015);
    }

    .cmp-col.us {
        background: rgba(255, 215, 0, 0.06);
        box-shadow: inset 0 0 0 1.5px var(--gold-stroke);
        position: relative;
    }

    .cmp-col.us .cmp-h {
        background: linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968);
        background-size: 300% 100%;
        animation: gradShift 3.5s linear infinite alternate;
        align-items: flex-start;
    }

    .cmp-col.us .cmp-h img {
        height: 26px;
        width: auto;
    }

    .cmp-col.us .cmp-h .name-fallback {
        color: #1a1400;
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: 1.2rem;
    }

    .cmp-best {
        font-family: 'JetBrains Mono';
        font-size: 0.62rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #4a3800;
        font-weight: 700;
    }

    /* body cells */
    .cmp-cell {
        padding: 1.15rem 1.5rem;
        min-height: 68px;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        border-bottom: 1px solid var(--stroke-soft);
        font-size: 0.96rem;
    }

    .cmp-col:last-child .cmp-cell:last-child,
    .cmp-col .cmp-cell:last-child {
        border-bottom: none;
    }

    .cmp-col.feature .cmp-cell {
        color: var(--white);
        font-weight: 600;
        font-family: 'Bricolage Grotesque';
    }

    .cmp-col.them .cmp-cell {
        color: var(--dimmer);
    }

    .cmp-col.us .cmp-cell {
        color: var(--white);
        font-weight: 600;
    }

    .cmp-col.us .cmp-cell i {
        color: var(--green);
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .cmp-col.them .cmp-cell i {
        color: rgba(247, 245, 240, 0.28);
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    @media (max-width: 720px) {
        .compare-grid {
            grid-template-columns: 1fr;
        }

        .cmp-col.feature {
            display: none;
        }

        .cmp-col.them,
        .cmp-col.us {
            border-bottom: 1px solid var(--stroke);
        }

        .cmp-cell {
            justify-content: flex-start;
        }

        .cmp-cell::before {
            content: attr(data-label);
            font-family: 'JetBrains Mono';
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--dimmer);
            margin-right: auto;
            padding-right: 1rem;
        }

        .cmp-col.us .cmp-cell::before,
        .cmp-col.them .cmp-cell::before {
            flex: 1;
        }
    }

    /* ---------- Persona chips ---------- */
    .persona-chips {
        display: flex;
        gap: 0.6rem;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }

    .p-chip {
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 0.78rem;
        border: 1px solid var(--stroke);
        border-radius: 100px;
        padding: 0.65rem 1.4rem;
        background: var(--glass);
        color: var(--dim);
        cursor: pointer;
        transition: all 0.18s ease;
    }

    .p-chip.active,
    .p-chip:hover {
        background: linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968);
        background-size: 300% 100%;
        animation: gradShift 3.5s linear infinite alternate;
        color: #1a1400;
        border-color: transparent;
        box-shadow: 0 0 22px rgba(255, 215, 0, 0.35);
    }

    .persona-panel {
        background: var(--glass);
        backdrop-filter: blur(20px);
        border: 1px solid var(--gold-stroke);
        border-radius: 24px;
        padding: 2rem 2.1rem;
        display: none;
    }

    .persona-panel.active {
        display: block;
    }

    .persona-panel h3 {
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
    }

    .persona-panel p {
        color: var(--dim);
        font-size: 1.02rem;
        margin-bottom: 0.7rem;
    }

    .persona-panel p b {
        color: var(--white);
    }

    /* ---------- Reviews (Google review panel) ---------- */
    .reviews-sheet {
        background: #fff;
        border-radius: 30px;
        padding: 2rem clamp(1.1rem, 3vw, 2.2rem) 2.2rem;
        box-shadow: 0 50px 110px -35px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.07);
        color: var(--g-text);
    }

    .rev-summary {
        display: flex;
        align-items: center;
        gap: clamp(1.5rem, 5vw, 3.5rem);
        padding-bottom: 1.5rem;
        margin-bottom: 0.4rem;
        border-bottom: 1px solid var(--g-line);
        flex-wrap: wrap;
    }

    .rev-score {
        text-align: center;
    }

    .rev-agg-num {
        font-family: 'Instrument Sans', sans-serif;
        font-weight: 400;
        font-size: 3.6rem;
        line-height: 1;
        color: var(--g-text);
    }

    .rev-score .stars {
        display: block;
        margin: 0.35rem 0 0.25rem;
        font-size: 0.85rem;
    }

    .rev-score small {
        color: var(--g-grey);
        font-size: 0.82rem;
    }

    .rev-bars {
        flex: 1;
        min-width: 240px;
        max-width: 460px;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .rev-bar {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.8rem;
        color: var(--g-blue);
    }

    .rev-bar .bar {
        flex: 1;
        height: 9px;
        border-radius: 100px;
        background: #f1f3f4;
        overflow: hidden;
    }

    .rev-bar .fill {
        height: 100%;
        background: var(--amber);
        border-radius: 100px;
    }

    .rev-chips {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        padding: 1.1rem 0 0.3rem;
    }

    .rev-chips span {
        font-family: 'Instrument Sans';
        font-size: 0.84rem;
        font-weight: 500;
        border: 1px solid #dadce0;
        border-radius: 8px;
        padding: 0.32rem 0.85rem;
        color: var(--g-sub);
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .rev-chips span.on {
        background: #e8f0fe;
        border-color: #e8f0fe;
        color: #1967d2;
    }

    .rev-chips b {
        color: var(--g-grey);
        font-weight: 500;
    }

    .reviews {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    @media (max-width: 1100px) {
        .reviews {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 560px) {
        .reviews {
            grid-template-columns: 1fr;
        }
    }

    .review {
        background: #fff;
        border: 1px solid var(--g-line);
        border-radius: 16px;
        padding: 1.4rem 1.3rem;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .review:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px -16px rgba(32, 33, 36, 0.4);
    }

    .rev-who {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.65rem;
    }

    .rev-face {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--g-blue);
        color: #fff;
        font-family: 'Instrument Sans';
        font-weight: 600;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .review:nth-child(2) .rev-face {
        background: var(--g-green);
    }

    .review:nth-child(3) .rev-face {
        background: #7B1FA2;
    }

    .review:nth-child(4) .rev-face {
        background: var(--g-red);
    }

    .rev-who h4 {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--g-text);
        line-height: 1.35;
    }

    .rev-who span {
        font-size: 0.8rem;
        color: var(--g-grey);
    }

    .rev-meta {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 0.55rem;
    }

    .rev-meta .stars {
        font-size: 0.76rem;
    }

    .rev-meta small {
        color: var(--g-grey);
        font-size: 0.8rem;
    }

    .review p {
        font-size: 0.95rem;
        color: var(--g-sub);
        line-height: 1.6;
        max-width: 72ch;
    }

    .rev-helpful {
        display: flex;
        align-items: center;
        gap: 1.4rem;
        margin-top: 0.75rem;
        font-size: 0.82rem;
        color: var(--g-grey);
    }

    .rev-helpful i {
        margin-right: 0.35rem;
        font-size: 0.8rem;
    }

    /* ---------- Related + CTA ---------- */
    .related-sheet {
        background: #fff;
        border-radius: 30px;
        padding: 1.8rem clamp(1.1rem, 3vw, 2rem);
        box-shadow: 0 50px 110px -35px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.07);
    }

    .related-sheet .serp-label {
        color: var(--g-text);
        font-size: clamp(1.3rem, 2.6vw, 1.7rem);
        margin-bottom: 1.2rem;
    }

    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .chip {
        font-family: 'Instrument Sans';
        font-weight: 500;
        font-size: 0.94rem;
        border: none;
        border-radius: 100px;
        padding: 0.68rem 1.35rem;
        text-decoration: none;
        color: #1a73e8;
        background: #f1f3f4;
        transition: all 0.18s ease;
    }

    .chip:hover {
        background: #e8f0fe;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px -8px rgba(32, 33, 36, 0.35);
    }

    .chip i {
        color: var(--g-grey);
        margin-right: 0.35rem;
        font-size: 0.82em;
    }

    /* ---------- SEO content accordion ---------- */
    .seo-acc {
        max-width: 1050px;
        margin: 0 auto;
        padding: 4.5rem 5% 0;
    }

    .seo-acc details {
        background: var(--glass);
        backdrop-filter: blur(18px);
        border: 1px solid var(--stroke-soft);
        border-radius: 20px;
        margin-bottom: 0.8rem;
        overflow: hidden;
        transition: border-color 0.2s ease;
    }

    .seo-acc details:hover,
    .seo-acc details[open] {
        border-color: var(--gold-stroke);
    }

    .seo-acc summary {
        list-style: none;
        cursor: pointer;
        padding: 1.3rem 1.6rem;
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 1.12rem;
        color: var(--white);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: color 0.15s ease;
    }

    .seo-acc summary::-webkit-details-marker {
        display: none;
    }

    .seo-acc summary i {
        color: var(--gold);
        font-size: 0.9rem;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .seo-acc details[open] summary {
        color: var(--gold);
        border-bottom: 1px solid var(--stroke-soft);
    }

    .seo-acc details[open] summary i {
        transform: rotate(180deg);
    }

    .seo-acc .acc-body {
        padding: 1.3rem 1.6rem 1.5rem;
        color: var(--dim);
        font-size: 0.99rem;
    }

    .seo-acc .acc-body p {
        margin-bottom: 0.9rem;
    }

    .seo-acc .acc-body p:last-child {
        margin-bottom: 0;
    }

    .seo-acc .acc-body b {
        color: var(--white);
    }

    .seo-acc .acc-list {
        list-style: none;
        margin-top: 0.4rem;
    }

    .seo-acc .acc-list li {
        padding: 0.3rem 0;
        display: flex;
        align-items: baseline;
        gap: 0.6rem;
    }

    .seo-acc .acc-list i {
        color: var(--green);
        font-size: 0.8rem;
    }

    .seo-acc .acc-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--gold);
        font-weight: 700;
        text-decoration: none;
        margin-top: 0.4rem;
    }

    .seo-acc .acc-link:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .seo-acc .acc-link i {
        font-size: 0.78rem;
    }

    .cta {
        max-width: 940px;
        margin: 5.5rem auto 0;
        padding: 0 5% 7.5rem;
        text-align: center;
    }

    .cta h2 {
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: clamp(2.3rem, 6.5vw, 4.4rem);
        letter-spacing: -0.02em;
        line-height: 1.05;
        margin-bottom: 1.25rem;
    }

    .cta>p {
        font-size: 1.18rem;
        color: var(--dim);
        margin-bottom: 2.4rem;
    }

    .micro {
        display: block;
        font-family: 'JetBrains Mono';
        font-size: 0.74rem;
        color: var(--dimmer);
        margin-top: 1rem;
    }

    footer {
        border-top: 1px solid var(--stroke-soft);
        padding: 3.75rem 5% 2.5rem;
        background: linear-gradient(180deg, transparent, rgba(10, 20, 40, 0.7));
    }

    .foot-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr 0.9fr 0.9fr 1fr;
        gap: 2.25rem;
        padding-bottom: 2.5rem;
    }

    .foot-social {
        display: flex;
        gap: 0.6rem;
        margin-top: 1.1rem;
    }

    .foot-col .foot-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        padding: 0;
        color: #fff;
        font-size: 1.15rem;
        line-height: 1;
        text-decoration: none;
        border: none;
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .foot-col .foot-social a svg {
        display: block;
        margin: 0 auto;
    }

    .foot-col .foot-social a.s-fb {
        background: #1877F2;
    }

    .foot-col .foot-social a.s-x {
        background: #16181c;
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .foot-col .foot-social a:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
        color: #fff;
    }

    .foot-legal a {
        color: var(--dimmer);
        text-decoration: none;
    }

    .foot-legal a:hover {
        color: var(--gold);
    }

    .foot-col h5 {
        font-family: 'JetBrains Mono';
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1rem;
    }

    .foot-col a {
        display: block;
        color: var(--dim);
        text-decoration: none;
        font-size: 0.9rem;
        padding: 0.25rem 0;
    }

    .foot-col a:hover {
        color: var(--gold);
    }

    .foot-brand p {
        font-size: 0.9rem;
        color: var(--dim);
        max-width: 270px;
        margin-top: 0.85rem;
    }

    .foot-base {
        max-width: 1120px;
        margin: 0 auto;
        border-top: 1px solid var(--stroke-soft);
        padding-top: 1.8rem;
        font-size: 0.78rem;
        color: var(--dimmer);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible,
    input:focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: 3px;
        border-radius: 6px;
    }

    /* Scroll progress */
    .progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 0%;
        background: linear-gradient(90deg, var(--gold), var(--amber));
        box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
        z-index: 200;
    }

    /* Cursor spotlight on glass cards */
    .spot {
        position: relative;
    }

    .spot::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 215, 0, 0.12), transparent 65%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .spot:hover::after {
        opacity: 1;
    }

    /* Hero word stagger */
    .w {
        display: inline-block;
        opacity: 0;
        transform: translateY(0.6em) rotate(2deg);
        animation: wordIn 0.7s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
    }

    @keyframes wordIn {
        to {
            opacity: 1;
            transform: none;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }

        .reveal,
        .pop,
        .stage-item {
            opacity: 1;
            transform: none;
            filter: none;
        }

        .stage-item.ad-item {
            opacity: 0.45;
        }

        .sk-card::after {
            animation: none;
        }

        .w {
            opacity: 1;
            transform: none;
            animation: none;
        }

        .spot::after {
            display: none;
        }
    }

    @media (max-width: 980px) {
        .kp-wrap {
            grid-template-columns: 1fr;
        }

        .tour-grid {
            grid-template-columns: 1fr;
            gap: 1.75rem;
        }

        .creators-grid {
            grid-template-columns: 1fr;
        }

        .kpanel {
            position: static;
        }

        .calc-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .foot-inner {
            grid-template-columns: 1fr 1fr;
        }

        .foot-brand {
            grid-column: 1 / -1;
        }

        .compare {
            overflow-x: auto;
        }

        .compare table {
            min-width: 560px;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .menu-btn {
            display: block;
        }

        .brand-logo {
            height: 30px;
        }

        .sitelinks {
            grid-template-columns: 1fr;
        }

        .search-go {
            display: none;
        }
    }