:root{
--bg: #20242b;
        --bg-soft: #282d35;
        --panel: rgba(255,255,255,0.058);
        --line: rgba(214,225,239,0.18);
        --text: #f4f7fb;
        --muted: #aeb8c6;
        --blue: #00aeef;
        --cyan: #72d7ff;
        --pink: #ef5f95;
        --violet: #8f7cff;
        --green: #7fe0bd;
        --paper: #f5f8fc;
        --shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.products-catalog *,
.recommendations-page *{
box-sizing: border-box;
        letter-spacing: 0;
}

html{
scroll-behavior: smooth;
}

.products-catalog{
margin: 0;
        font-family: "Inter", "Segoe UI", Arial, sans-serif;
        color: var(--text);
        background:
                radial-gradient(circle at 86% 10%, rgba(239,95,149,0.22), transparent 30%),
                radial-gradient(circle at 10% 22%, rgba(0,174,239,0.18), transparent 32%),
                linear-gradient(180deg, #20242b 0%, #20242b 44%, #252a32 100%);
        overflow-x: hidden;
}

.products-catalog::before{
content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background-image:
                linear-gradient(rgba(214,225,239,0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(214,225,239,0.035) 1px, transparent 1px);
        background-size: 64px 64px;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,0.82), transparent 86%);
}

.products-catalog a,
.recommendations-page a{
color: inherit;
        text-decoration: none;
}

.products-catalog button,
body.searchpilot-page button,
body.searchpilot-page input,
body.searchpilot-page textarea{
font: inherit;
}

.products-catalog.page{
position: relative;
        z-index: 1;
}

.products-catalog .container,
.recommendations-page .container{
width: 100%;
        max-width: 1820px;
        margin: 0 auto;
        padding-left: 40px;
        padding-right: 40px;
}

.products-catalog .outline-btn,
.products-catalog .primary-btn,
.recommendations-page .primary-btn,
.recommendations-page .outline-btn{
min-height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 28px;
        border-radius: 999px;
        font-weight: 900;
        border: 2px solid transparent;
        cursor: pointer;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.products-catalog .outline-btn,
.recommendations-page .outline-btn{
color: #fff;
        background:
                linear-gradient(var(--bg), var(--bg)) padding-box,
                linear-gradient(135deg, var(--cyan), var(--pink)) border-box;
}

.products-catalog .primary-btn,
.recommendations-page .primary-btn{
color: #10141b;
        background: linear-gradient(135deg, var(--cyan), var(--pink) 70%, var(--violet));
        box-shadow: 0 18px 44px rgba(0,174,239,0.24);
}

.products-catalog .outline-btn:hover,
.products-catalog .primary-btn:hover,
.recommendations-page .outline-btn:hover,
.recommendations-page .primary-btn:hover{
transform: translateY(-2px);
        box-shadow: 0 18px 52px rgba(239,95,149,0.24);
}

.products-catalog .hero{
display: grid;
        grid-template-columns: minmax(0, 900px);
        gap: 58px;
        align-items: center;
        padding: 64px 40px 86px;
}

.products-catalog .eyebrow,
.recommendations-page .eyebrow{
display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--cyan);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 22px;
}

.products-catalog .eyebrow::before,
.recommendations-page .eyebrow::before{
content: "";
        width: 38px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.products-catalog h1{
margin: 0;
        max-width: 800px;
        color: #fff;
        font-size: clamp(48px, 7vw, 86px);
        line-height: 0.95;
        font-weight: 950;
}

.products-catalog .gradient-text,
.recommendations-page .gradient-text{
display: inline-block;
        background: linear-gradient(110deg, #ef5f95 0%, #c783ff 48%, #72d7ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
}

.products-catalog .hero-copy{
max-width: 720px;
        margin: 26px 0 0;
        color: #fff;
        font-size: clamp(18px, 2vw, 23px);
        line-height: 1.45;
        font-weight: 800;
}

.products-catalog .hero-note{
max-width: 680px;
        margin: 16px 0 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.65;
}

.products-catalog .hero-actions,
.recommendations-page .hero-actions{
display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 34px;
}

.products-catalog .section,
.recommendations-page .section{
padding: 32px 0;
}

.products-catalog .section-head,
.recommendations-page .section-head{
display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 30px;
        margin-bottom: 34px;
}

.products-catalog .section-kicker,
.recommendations-page .section-kicker{
color: var(--cyan);
        font-size: 14px;
        font-weight: 950;
        text-transform: uppercase;
}

.products-catalog h2,
.recommendations-page h2{
margin: 10px 0 0;
        max-width: 810px;
        color: #fff;
        font-size: clamp(34px, 4.6vw, 58px);
        line-height: 1.02;
        font-weight: 950;
}

.products-catalog .section-lead{
max-width: 410px;
        color: var(--muted);
        line-height: 1.6;
        font-size: 16px;
}

.products-catalog .product-grid{
display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
}

.products-catalog .product-card{
position: relative;
        min-height: 410px;
        display: flex;
        flex-direction: column;
        padding: 26px;
        border-radius: 32px;
        background: rgba(255,255,255,0.058);
        border: 1px solid var(--line);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
        overflow: hidden;
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.products-catalog .product-card:hover{
transform: translateY(-3px);
        border-color: rgba(114,215,255,0.42);
        background: rgba(255,255,255,0.08);
}

.products-catalog .product-card.is-hidden{
display: none;
}

.products-catalog .product-card.featured{
background:
                radial-gradient(circle at 92% 12%, rgba(0,174,239,0.22), transparent 28%),
                linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.045));
        border-color: rgba(114,215,255,0.4);
}

.products-catalog .product-top{
display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 24px;
}

.products-catalog .product-icon{
width: 58px;
        height: 58px;
        display: grid;
        place-items: center;
        border-radius: 19px;
        color: #10141b;
        background: linear-gradient(135deg, var(--cyan), var(--pink));
        font-size: 23px;
        box-shadow: 0 18px 38px rgba(0,174,239,0.18);
}

.products-catalog .status{
padding: 8px 10px;
        border-radius: 999px;
        color: #d6e1ef;
        background: rgba(214,225,239,0.09);
        border: 1px solid rgba(214,225,239,0.12);
        font-size: 11px;
        font-weight: 950;
        text-transform: uppercase;
}

.products-catalog .status.ready{
color: #151b23;
        background: var(--green);
        border-color: transparent;
}

.products-catalog .status.pilot{
color: #151b23;
        background: var(--cyan);
        border-color: transparent;
}

.products-catalog .product-card h3{
margin: 0;
        color: #fff;
        font-size: 30px;
        line-height: 1.04;
}

.products-catalog .product-subtitle{
margin: 10px 0 0;
        color: var(--cyan);
        font-size: 13px;
        font-weight: 950;
        text-transform: uppercase;
}

.products-catalog .product-card p{
margin: 18px 0 0;
        color: var(--muted);
        line-height: 1.55;
}

.products-catalog .product-list{
display: grid;
        gap: 10px;
        margin: 22px 0 0;
        padding: 0;
        list-style: none;
        color: #d6e1ef;
        font-size: 14px;
        line-height: 1.35;
}

.products-catalog .product-list li{
display: flex;
        gap: 10px;
}

.products-catalog .product-list i{
margin-top: 3px;
        color: var(--green);
}

.products-catalog .product-footer{
display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        margin-top: auto;
        padding-top: 24px;
}

.products-catalog .text-link{
display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        font-weight: 950;
}

.products-catalog .text-link i,
body.searchpilot-page .read-link i{
color: var(--pink);
}

.products-catalog .mini-btn{
min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 16px;
        border-radius: 999px;
        color: #10141b;
        background: linear-gradient(135deg, var(--cyan), var(--pink));
        font-weight: 950;
}

.products-catalog .comparison{
border-radius: 36px;
        padding: 34px;
        background:
                radial-gradient(circle at 92% 18%, rgba(0,174,239,0.18), transparent 28%),
                linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
        border: 1px solid var(--line);
}

.products-catalog .matrix{
display: grid;
        grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
        gap: 1px;
        overflow: hidden;
        border-radius: 24px;
        border: 1px solid rgba(214,225,239,0.12);
        background: rgba(214,225,239,0.12);
}

.products-catalog .matrix div{
min-height: 62px;
        display: flex;
        align-items: center;
        padding: 14px;
        color: #d6e1ef;
        background: rgba(32,36,43,0.92);
        font-weight: 800;
}

.products-catalog .matrix .head{
color: #fff;
        background: rgba(255,255,255,0.075);
        font-weight: 950;
}

.products-catalog .matrix i{
color: var(--green);
}

.products-catalog .cta,
body.searchpilot-page .cta,
.recommendations-page .cta{
padding: 86px 40px 110px;
}

.products-catalog .faq-grid,
.recommendations-page .faq-grid{
display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
}

.products-catalog .faq-item{
        padding: 26px;
        border-radius: 30px;
        background: rgba(255,255,255,0.058);
        border: 1px solid var(--line);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.products-catalog .faq-item h3{
margin: 0;
        color: #fff;
        font-size: 21px;
        line-height: 1.2;
}

.products-catalog .faq-item p{
margin: 12px 0 0;
        color: var(--muted);
        line-height: 1.6;
}

.products-catalog .cta-box{
display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
        gap: 34px;
        align-items: center;
        padding: 42px;
        border-radius: 40px;
        background:
                radial-gradient(circle at 90% 12%, rgba(239,95,149,0.28), transparent 28%),
                linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
        border: 1px solid var(--line);
}

.products-catalog .cta-box h2,
body.searchpilot-page .cta-box h2{
margin: 0;
}

.products-catalog .cta-actions,
.recommendations-page .cta-actions{
display: grid;
        gap: 12px;
}

:root{
--bg: #20242b;
            --bg-soft: #282d35;
            --panel: rgba(255, 255, 255, 0.055);
            --line: rgba(214, 225, 239, 0.18);
            --text: #f4f7fb;
            --muted: #aeb8c6;
            --blue: #00aeef;
            --cyan: #72d7ff;
            --pink: #ef5f95;
            --violet: #8f7cff;
            --green: #7fe0bd;
            --paper: #f5f8fc;
            --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

body.searchpilot-page *{
box-sizing: border-box;
            letter-spacing: 0;
}

body.searchpilot-page{
margin: 0;
            font-family: "Inter", "Segoe UI", Arial, sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 86% 12%, rgba(239, 95, 149, 0.22), transparent 28%),
                radial-gradient(circle at 10% 22%, rgba(0, 174, 239, 0.18), transparent 32%),
                linear-gradient(180deg, #20242b 0%, #20242b 48%, #252a32 100%);
            overflow-x: hidden;
}

body.searchpilot-page::before{
content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(214, 225, 239, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(214, 225, 239, 0.035) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 86%);
}

body.searchpilot-page a{
color: inherit;
            text-decoration: none;
}

body.searchpilot-page .page,
body.searchpilot-page .resource-feature > *,
body.searchpilot-demo-page .glass-panel > *,
body.searchpilot-demo-page .search-glass > *,
body.searchpilot-demo-page .entity-card > *,
body.searchpilot-demo2-page .glass-panel > *,
body.searchpilot-demo2-page .search-glass > *,
body.searchpilot-demo2-page .entity-card > *{
position: relative;
            z-index: 1;
}

body.searchpilot-page .container{
width: 100%;
            max-width: 1820px;
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
}

body.searchpilot-page .header{
position: sticky;
            top: 0;
            z-index: 20;
            backdrop-filter: blur(18px);
            background: rgba(32, 36, 43, 0.78);
            border-bottom: 1px solid rgba(214, 225, 239, 0.08);
}

body.searchpilot-page .nav{
min-height: 96px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
}

body.searchpilot-page .brand{
display: flex;
            align-items: center;
            gap: 18px;
            min-width: 265px;
}

body.searchpilot-page .brand-mark{
display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 16px;
            color: #1a1d23;
            font-weight: 950;
            line-height: 0.9;
            text-transform: uppercase;
            border-radius: 9px;
            background: linear-gradient(135deg, #ef5f95 0%, #8f7cff 78%);
            box-shadow: 0 12px 34px rgba(239, 95, 149, 0.22);
            transform: rotate(-1deg);
}

body.searchpilot-page .brand-mark .hash{
color: #fff;
            font-size: 32px;
}

body.searchpilot-page .brand-mark small{
display: block;
            font-size: 11px;
}

body.searchpilot-page .brand-mark span:last-child{
font-size: 18px;
}

body.searchpilot-page .brand-line{
max-width: 92px;
            color: #ef8db5;
            font-weight: 800;
            line-height: 1.08;
}

body.searchpilot-page .nav-links{
display: flex;
            align-items: center;
            justify-content: center;
            gap: 34px;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
}

body.searchpilot-page .nav-links a{
color: rgba(255,255,255,0.92);
            transition: color 0.18s ease;
}

body.searchpilot-page .nav-links a:hover{
color: var(--cyan);
}

body.searchpilot-page .outline-btn,
body.searchpilot-page .primary-btn{
min-height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 28px;
            border-radius: 999px;
            font-weight: 900;
            border: 2px solid transparent;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.searchpilot-page .outline-btn{
color: #fff;
            background:
                linear-gradient(var(--bg), var(--bg)) padding-box,
                linear-gradient(135deg, var(--cyan), var(--pink)) border-box;
}

body.searchpilot-page .primary-btn{
color: #10141b;
            background: linear-gradient(135deg, var(--cyan), var(--pink) 70%, var(--violet));
            box-shadow: 0 18px 44px rgba(0, 174, 239, 0.24);
}

body.searchpilot-page .outline-btn:hover,
body.searchpilot-page .primary-btn:hover{
transform: translateY(-2px);
            box-shadow: 0 18px 52px rgba(239, 95, 149, 0.24);
}

body.searchpilot-page .hero{
min-height: calc(100vh - 96px);
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
            align-items: center;
            gap: 58px;
            padding: 64px 40px 86px;
}

body.searchpilot-page .eyebrow{
display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--cyan);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 22px;
}

body.searchpilot-page .eyebrow::before{
content: "";
            width: 38px;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--pink), var(--cyan));
}

body.searchpilot-page h1{
margin: 0;
            max-width: 760px;
            font-size: clamp(48px, 7vw, 86px);
            line-height: 0.95;
            font-weight: 950;
            color: #fff;
}

body.searchpilot-page .gradient-text{
display: inline-block;
            background: linear-gradient(110deg, #ef5f95 0%, #c783ff 48%, #72d7ff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
}

body.searchpilot-page .hero-copy{
max-width: 660px;
            margin: 26px 0 0;
            color: #fff;
            font-size: clamp(18px, 2vw, 23px);
            line-height: 1.45;
            font-weight: 800;
}

body.searchpilot-page .hero-note{
max-width: 610px;
            margin: 16px 0 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.65;
}

body.searchpilot-page .hero-actions{
display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
}

body.searchpilot-page .hero-proof{
display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 40px;
            max-width: 690px;
}

body.searchpilot-page .proof-item{
padding: 18px;
            border: 1px solid var(--line);
            border-radius: 20px;
            background: rgba(255,255,255,0.045);
}

body.searchpilot-page .proof-item strong{
display: block;
            font-size: 28px;
            line-height: 1;
            color: #fff;
}

body.searchpilot-page .proof-item span{
display: block;
            margin-top: 8px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.3;
}

body.searchpilot-page .product-visual{
position: relative;
            min-height: 640px;
            overflow: hidden;
}

body.searchpilot-page .orbit{
position: absolute;
            inset: 34px 0 26px 18px;
            border: 28px solid rgba(255,255,255,0.06);
            border-radius: 45% 55% 52% 48%;
            transform: rotate(-8deg);
}

body.searchpilot-page .orbit::before,
body.searchpilot-page .orbit::after{
content: "";
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
}

body.searchpilot-page .orbit::before{
width: 82px;
            height: 82px;
            top: 72px;
            right: 20px;
}

body.searchpilot-page .orbit::after{
width: 46px;
            height: 46px;
            left: 92px;
            bottom: 70px;
}

body.searchpilot-page .search-device{
position: relative;
            z-index: 2;
            margin: 54px 0 0 auto;
            width: min(520px, 100%);
            border-radius: 30px;
            padding: 18px;
            color: #141922;
            background: rgba(245, 248, 252, 0.94);
            box-shadow: var(--shadow);
            border: 1px solid rgba(255,255,255,0.5);
}

body.searchpilot-page .device-top{
display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 6px 4px 16px;
}

body.searchpilot-page .traffic{
display: flex;
            gap: 7px;
}

body.searchpilot-page .traffic span{
width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d7deea;
}

body.searchpilot-page .traffic span:nth-child(1){
background: var(--pink);
}

body.searchpilot-page .traffic span:nth-child(2){
background: #ffd166;
}

body.searchpilot-page .traffic span:nth-child(3){
background: var(--green);
}

body.searchpilot-page .device-label{
font-size: 11px;
            font-weight: 900;
            color: #7b8491;
            text-transform: uppercase;
}

body.searchpilot-page .search-bar{
display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            border-radius: 18px;
            background: #fff;
            box-shadow: inset 0 0 0 1px #e4ebf5;
            font-weight: 900;
}

body.searchpilot-page .search-bar i,
body.searchpilot-page .floating-chip i,
.recommendations-page .floating-chip i{
color: var(--blue);
}

body.searchpilot-page .answer-card{
margin-top: 16px;
            padding: 18px;
            border-radius: 22px;
            color: #fff;
            background: linear-gradient(135deg, #212832, #2c3340);
}

body.searchpilot-page .answer-card small,
body.searchpilot-page .cluster small,
body.searchpilot-page .deal-card small{
color: #95a1b2;
            font-weight: 900;
            text-transform: uppercase;
}

body.searchpilot-page .answer-card h3{
margin: 10px 0 8px;
            font-size: 22px;
            line-height: 1.12;
}

body.searchpilot-page .answer-card p{
margin: 0;
            color: #d6e1ef;
            line-height: 1.5;
}

body.searchpilot-page .mini-grid{
display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 12px;
}

body.searchpilot-page .cluster,
body.searchpilot-page .deal-card{
padding: 15px;
            border-radius: 18px;
            background: #fff;
            border: 1px solid #e6edf6;
}

body.searchpilot-page .cluster strong,
body.searchpilot-page .deal-card strong{
display: block;
            margin-top: 8px;
            font-size: 24px;
}

body.searchpilot-page .bar{
height: 7px;
            margin-top: 12px;
            border-radius: 999px;
            background: #e8eef7;
            overflow: hidden;
}

body.searchpilot-page .bar span{
display: block;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--pink), var(--blue));
}

body.searchpilot-page .floating-chip{
position: absolute;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 16px;
            border-radius: 999px;
            color: #111821;
            background: #fff;
            box-shadow: 0 18px 44px rgba(0,0,0,0.18);
            font-weight: 900;
}

body.searchpilot-page .floating-chip.one{
top: 118px;
            left: 0;
}

body.searchpilot-page .floating-chip.two{
right: -6px;
            bottom: 92px;
}

body.searchpilot-page .section{
padding: 26px 0;
}

body.searchpilot-page .section-head{
display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 34px;
}

body.searchpilot-page .section-kicker{
color: var(--cyan);
            font-size: 14px;
            font-weight: 950;
            text-transform: uppercase;
}

body.searchpilot-page h2{
margin: 10px 0 0;
            max-width: 810px;
            color: #fff;
            font-size: clamp(34px, 4.6vw, 58px);
            line-height: 1.02;
            font-weight: 950;
}

body.searchpilot-page .section-lead{
max-width: 410px;
            color: var(--muted);
            line-height: 1.6;
            font-size: 16px;
}

body.searchpilot-page .cards,
body.searchpilot-page .pricing{
display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
}

body.searchpilot-page .card{
min-height: 260px;
            padding: 26px;
            border-radius: 30px;
            background: var(--panel);
            border: 1px solid var(--line);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

body.searchpilot-page .card-icon{
width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            color: #111821;
            background: linear-gradient(135deg, var(--cyan), var(--pink));
            font-size: 21px;
}

body.searchpilot-page .card h3{
margin: 26px 0 12px;
            color: #fff;
            font-size: 24px;
            line-height: 1.12;
}

body.searchpilot-page .card p,
body.searchpilot-page .article-card p{
margin: 0;
            color: var(--muted);
            line-height: 1.55;
}

body.searchpilot-page .dark-paper{
border-radius: 36px;
            background:
                radial-gradient(circle at 92% 18%, rgba(0,174,239,0.18), transparent 28%),
                linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
            border: 1px solid var(--line);
            padding: 34px;
}

body.searchpilot-page .scenario-grid{
display: grid;
            grid-template-columns: 0.78fr 1.22fr;
            gap: 24px;
            align-items: stretch;
}

body.searchpilot-page .scenario-list{
display: grid;
            gap: 12px;
            min-width: 0;
}

body.searchpilot-page .scenario-item{
display: flex;
            gap: 14px;
            padding: 18px;
            border-radius: 22px;
            background: rgba(255,255,255,0.055);
            border: 1px solid rgba(214,225,239,0.12);
}

body.searchpilot-page .scenario-item span{
width: 34px;
            height: 34px;
            flex: 0 0 34px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: #151b23;
            background: var(--cyan);
            font-weight: 950;
}

body.searchpilot-page .scenario-item strong{
display: block;
            color: #fff;
            margin-bottom: 5px;
}

body.searchpilot-page .scenario-item p{
margin: 0;
            color: var(--muted);
            line-height: 1.42;
            font-size: 14px;
}

body.searchpilot-page .audit-panel{
color: #151b23;
            border-radius: 30px;
            padding: 28px;
            background: var(--paper);
            box-shadow: var(--shadow);
            min-width: 0;
}

body.searchpilot-page .audit-panel h3{
margin: 0;
            font-size: 30px;
            line-height: 1.05;
}

body.searchpilot-page .audit-row{
display: flex;
            justify-content: space-between;
            gap: 16px;
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid #dce5f0;
}

body.searchpilot-page .audit-row strong{
font-size: 28px;
}

body.searchpilot-page .audit-row span{
color: #6d737a;
            font-size: 13px;
            font-weight: 800;
}

body.searchpilot-page .price-card{
position: relative;
            padding: 28px;
            border-radius: 30px;
            background: rgba(255,255,255,0.055);
            border: 1px solid var(--line);
}

body.searchpilot-page .price-card.featured{
background:
                linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
                linear-gradient(135deg, var(--pink), var(--cyan)) border-box;
            border: 2px solid transparent;
            box-shadow: 0 24px 70px rgba(0,174,239,0.12);
}

body.searchpilot-page .price-card h3{
margin: 0;
            color: #fff;
            font-size: 26px;
}

body.searchpilot-page .price-card .price{
margin: 18px 0;
            font-size: 42px;
            font-weight: 950;
            color: #fff;
}

body.searchpilot-page .price-card .price span{
color: var(--muted);
            font-size: 14px;
}

body.searchpilot-page .price-card ul{
display: grid;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
            color: var(--muted);
            line-height: 1.35;
}

body.searchpilot-page .price-card li{
display: flex;
            gap: 10px;
}

body.searchpilot-page .price-card i{
margin-top: 3px;
            color: var(--green);
}

body.searchpilot-page .resources{
display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 18px;
            align-items: stretch;
}

body.searchpilot-page .resource-feature{
position: relative;
            min-height: 100%;
            padding: 30px;
            border-radius: 34px;
            color: #141922;
            background:
                radial-gradient(circle at 92% 14%, rgba(239,95,149,0.24), transparent 30%),
                linear-gradient(135deg, #f5f8fc, #dce9f6);
            box-shadow: var(--shadow);
            overflow: hidden;
}

body.searchpilot-page .resource-feature::after{
content: "#";
            position: absolute;
            right: -18px;
            bottom: -70px;
            color: rgba(0, 174, 239, 0.12);
            font-size: 230px;
            line-height: 1;
            font-weight: 950;
}

body.searchpilot-page .resource-feature .section-kicker{
color: #008cc5;
}

body.searchpilot-page .resource-feature h2{
margin-top: 14px;
            color: #141922;
            font-size: clamp(34px, 4.4vw, 56px);
}

body.searchpilot-page .resource-feature p{
max-width: 560px;
            margin: 20px 0 0;
            color: #4e5967;
            font-size: 16px;
            line-height: 1.65;
            font-weight: 700;
}

body.searchpilot-page .resource-tags{
display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 24px;
}

body.searchpilot-page .resource-tags span{
padding: 8px 11px;
            border-radius: 999px;
            background: rgba(255,255,255,0.74);
            color: #424956;
            font-size: 12px;
            font-weight: 900;
}

body.searchpilot-page .resource-list{
display: grid;
            gap: 18px;
}

body.searchpilot-page .article-card{
display: grid;
            gap: 18px;
            min-height: 250px;
            padding: 26px;
            border-radius: 30px;
            background: rgba(255,255,255,0.055);
            border: 1px solid var(--line);
            transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

body.searchpilot-page .article-card:hover{
transform: translateY(-3px);
            border-color: rgba(114, 215, 255, 0.42);
            background: rgba(255,255,255,0.078);
}

body.searchpilot-page .article-meta{
display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            color: var(--cyan);
            font-size: 12px;
            font-weight: 950;
            text-transform: uppercase;
}

body.searchpilot-page .article-card h3{
margin: 0;
            color: #fff;
            font-size: 28px;
            line-height: 1.08;
}

body.searchpilot-page .article-card-footer{
display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: auto;
}

body.searchpilot-page .article-keywords{
display: flex;
            flex-wrap: wrap;
            gap: 7px;
}

body.searchpilot-page .article-keywords span{
padding: 6px 9px;
            border-radius: 999px;
            color: #d6e1ef;
            background: rgba(214,225,239,0.08);
            font-size: 11px;
            font-weight: 800;
}

body.searchpilot-page .read-link{
display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-weight: 950;
}

body.searchpilot-page .cta-box{
display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
            gap: 34px;
            align-items: center;
            border-radius: 40px;
            padding: 42px;
            background:
                radial-gradient(circle at 90% 12%, rgba(239,95,149,0.28), transparent 28%),
                linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
            border: 1px solid var(--line);
}

body.searchpilot-page .lead-form{
display: grid;
            gap: 12px;
}

body.searchpilot-page .lead-form input,
body.searchpilot-page .lead-form textarea{
width: 100%;
            color: #fff;
            border: 1px solid rgba(214,225,239,0.18);
            background: rgba(255,255,255,0.07);
            border-radius: 18px;
            padding: 16px 18px;
            outline: none;
}

body.searchpilot-page .lead-form textarea{
min-height: 116px;
            resize: vertical;
}

body.searchpilot-page .lead-form input::placeholder,
body.searchpilot-page .lead-form textarea::placeholder{
color: rgba(214,225,239,0.56);
}

body.searchpilot-page .form-note{
color: var(--muted);
            font-size: 12px;
            line-height: 1.45;
}

body.searchpilot-page .footer{
padding: 38px 0;
            border-top: 1px solid rgba(214,225,239,0.1);
            color: var(--muted);
}

body.searchpilot-page .footer-row{
display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
}

body.searchpilot-page .footer strong{
color: #fff;
}

.recommendations-page{
margin: 0;
        font-family: "Inter", "Segoe UI", Arial, sans-serif;
        color: var(--text);
        background:
                radial-gradient(circle at 86% 12%, rgba(239,95,149,0.22), transparent 28%),
                radial-gradient(circle at 10% 22%, rgba(0,174,239,0.18), transparent 32%),
                linear-gradient(180deg, #20242b 0%, #20242b 48%, #252a32 100%);
        overflow-x: hidden;
}

.recommendations-page::before{
content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background-image:
                linear-gradient(rgba(214,225,239,0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(214,225,239,0.035) 1px, transparent 1px);
        background-size: 64px 64px;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 86%);
}

.recommendations-page.page{
position: relative;
        z-index: 1;
        min-height: 100vh;
}

.recommendations-page .hero{
min-height: calc(100vh - 96px);
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
        gap: 58px;
        align-items: center;
        padding: 64px 40px 86px;
}

.recommendations-page h1{
margin: 0;
        max-width: 760px;
        color: #fff;
        font-size: clamp(48px, 7vw, 86px);
        line-height: 0.95;
        font-weight: 950;
}

.recommendations-page .hero-copy{
max-width: 660px;
        margin: 26px 0 0;
        color: #fff;
        font-size: clamp(18px, 2vw, 23px);
        line-height: 1.45;
        font-weight: 800;
}

.recommendations-page .hero-note{
max-width: 610px;
        margin: 16px 0 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.65;
}

.recommendations-page .section-lead{
color: var(--muted);
        font-size: 16px;
        line-height: 1.6;
}

.recommendations-page .hero-proof{
display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 40px;
        max-width: 690px;
}

.recommendations-page .proof-item{
padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255,255,255,0.045);
}

.recommendations-page .proof-item strong{
display: block;
        font-size: 28px;
        line-height: 1;
        color: #fff;
}

.recommendations-page .proof-item span{
display: block;
        margin-top: 8px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.3;
}

.recommendations-page .product-visual{
position: relative;
        min-height: 640px;
        overflow: hidden;
}

.recommendations-page .orbit{
position: absolute;
        inset: 34px 0 26px 18px;
        border: 28px solid rgba(255,255,255,0.06);
        border-radius: 45% 55% 52% 48%;
        transform: rotate(-8deg);
}

.recommendations-page .orbit::before,
.recommendations-page .orbit::after{
content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
}

.recommendations-page .orbit::before{
width: 82px;
        height: 82px;
        top: 72px;
        right: 20px;
}

.recommendations-page .orbit::after{
width: 46px;
        height: 46px;
        left: 92px;
        bottom: 70px;
}

.recommendations-page .floating-chip{
position: absolute;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 16px;
        border-radius: 999px;
        color: #111821;
        background: #fff;
        box-shadow: 0 18px 44px rgba(0,0,0,0.18);
        font-weight: 900;
}

.recommendations-page .floating-chip.one{
top: 118px;
        left: 0;
}

.recommendations-page .floating-chip.two{
right: -6px;
        bottom: 92px;
}

.recommendations-page .widget-preview{
position: relative;
        z-index: 2;
        width: min(520px, 100%);
        margin: 54px 0 0 auto;
        padding: 24px;
        border-radius: 30px;
        background:
                radial-gradient(circle at 88% 8%, rgba(127,224,189,0.2), transparent 28%),
                rgba(245,248,252,0.94);
        border: 1px solid rgba(255,255,255,0.5);
        box-shadow: var(--shadow);
}

.recommendations-page .shop-card{
padding: 20px;
        border-radius: 26px;
        color: #141922;
        background: #fff;
}

.recommendations-page .shop-top{
display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e6edf6;
}

.recommendations-page .product-photo{
width: 88px;
        height: 88px;
        border-radius: 22px;
        background:
                linear-gradient(135deg, rgba(0,174,239,0.18), rgba(239,95,149,0.18)),
                #eef5fb;
        display: grid;
        place-items: center;
        color: var(--blue);
        font-size: 34px;
}

.recommendations-page .shop-top h3,
.recommendations-page .recommend-card h4{
margin: 0;
        line-height: 1.15;
}

.recommendations-page .shop-top p,
.recommendations-page .recommend-card p{
margin: 8px 0 0;
        color: #647084;
        line-height: 1.45;
}

.recommendations-page .recommend-title{
margin: 20px 0 14px;
        font-size: 15px;
        font-weight: 950;
        text-transform: uppercase;
        color: #20242b;
}

.recommendations-page .recommend-list{
display: grid;
        gap: 10px;
}

.recommendations-page .recommend-card{
display: grid;
        grid-template-columns: 46px 1fr auto;
        gap: 12px;
        align-items: center;
        padding: 12px;
        border-radius: 18px;
        background: #f5f8fc;
        border: 1px solid #e6edf6;
}

.recommendations-page .recommend-icon{
width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: #10141b;
        background: linear-gradient(135deg, var(--cyan), var(--green));
}

.recommendations-page .recommend-rate{
color: #0f8f6d;
        font-weight: 950;
        white-space: nowrap;
}

.recommendations-page .section-lead{
max-width: 410px;
}

.recommendations-page .cards{
display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
}

.recommendations-page .metrics{
display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
}

.recommendations-page .card,
.recommendations-page .faq-item,
.recommendations-page .metric{
        padding: 26px;
        border-radius: 30px;
        background: var(--panel);
        border: 1px solid var(--line);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.recommendations-page .card-icon{
width: 54px;
        height: 54px;
        display: grid;
        place-items: center;
        border-radius: 18px;
        color: #111821;
        background: linear-gradient(135deg, var(--cyan), var(--pink));
        font-size: 21px;
}

.recommendations-page .card h3,
.recommendations-page .faq-item h3{
margin: 22px 0 12px;
        color: #fff;
        font-size: 24px;
        line-height: 1.15;
}

.recommendations-page .faq-item h3{
margin-top: 0;
}

.recommendations-page .card p,
.recommendations-page .faq-item p{
margin: 0;
        color: var(--muted);
        line-height: 1.6;
}

.recommendations-page .process{
display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
}

.recommendations-page .step{
min-height: 230px;
        padding: 26px;
        border-radius: 30px;
        background: rgba(255,255,255,0.055);
        border: 1px solid var(--line);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.recommendations-page .step span{
width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #10141b;
        background: var(--green);
        font-weight: 950;
}

.recommendations-page .step h3{
margin: 22px 0 10px;
        color: #fff;
        font-size: 22px;
}

.recommendations-page .step p{
margin: 0;
        color: var(--muted);
        line-height: 1.55;
}

.recommendations-page .metric strong{
display: block;
        color: #fff;
        font-size: 38px;
        line-height: 1;
}

.recommendations-page .metric span{
        display: block;
        margin-top: 10px;
        color: var(--muted);
        line-height: 1.55;
}

.recommendations-page .result-grid{
display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
}

.recommendations-page .result-card{
        min-height: 360px;
        display: flex;
        flex-direction: column;
        padding: 28px;
        border-radius: 30px;
        background: rgba(255,255,255,0.055);
        border: 1px solid var(--line);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.recommendations-page .result-card.featured{
        background:
                radial-gradient(circle at 88% 12%, rgba(127,224,189,0.18), transparent 30%),
                linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.045));
        border-color: rgba(127,224,189,0.32);
}

.recommendations-page .result-top{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 24px;
}

.recommendations-page .result-top span,
.recommendations-page .result-top strong{
        padding: 8px 10px;
        border-radius: 999px;
        color: #d6e1ef;
        background: rgba(214,225,239,0.09);
        border: 1px solid rgba(214,225,239,0.12);
        font-size: 11px;
        font-weight: 950;
        text-transform: uppercase;
}

.recommendations-page .result-top strong{
        color: #10141b;
        background: var(--green);
        border-color: transparent;
}

.recommendations-page .result-card h3{
        margin: 0;
        color: #fff;
        font-size: clamp(30px, 3.3vw, 48px);
        line-height: 0.98;
}

.recommendations-page .result-card p{
        margin: 20px 0 0;
        color: var(--muted);
        line-height: 1.58;
}

.recommendations-page .result-metrics{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: auto;
        padding-top: 24px;
}

.recommendations-page .result-metrics span{
        padding: 8px 10px;
        border-radius: 999px;
        color: #d6e1ef;
        background: rgba(214,225,239,0.08);
        font-size: 12px;
        font-weight: 900;
}

.recommendations-page .result-note{
        max-width: 980px;
        margin: 22px 0 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
}

.recommendations-page .cta-box{
display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
        gap: 34px;
        align-items: center;
        padding: 42px;
        border-radius: 40px;
        background:
                radial-gradient(circle at 90% 12%, rgba(239,95,149,0.26), transparent 28%),
                linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
        border: 1px solid var(--line);
}

:root{
--glass-border: rgba(255, 255, 255, 0.72);
            --glass-shadow: 0 24px 70px rgba(16, 24, 40, 0.16);
            --ink: #172033;
}

body.searchpilot-demo-page *,
body.searchpilot-demo2-page *{
letter-spacing: 0;
}

body.searchpilot-demo-page,
body.searchpilot-demo2-page{
min-height: 100vh;
            color: var(--ink);
            background:
                linear-gradient(135deg, rgba(0, 174, 239, 0.22), transparent 30%),
                linear-gradient(225deg, rgba(255, 122, 92, 0.16), transparent 34%),
                linear-gradient(315deg, rgba(76, 175, 80, 0.14), transparent 32%),
                linear-gradient(180deg, #f8fbff 0%, #e9f3f8 46%, #f8fafc 100%);
            background-attachment: fixed;
}

body.searchpilot-demo-page::before,
body.searchpilot-demo2-page::before{
content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255,255,255,0.34) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px);
            background-size: 72px 72px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.62), transparent 78%);
}

body.searchpilot-demo-page .app-shell,
body.searchpilot-demo2-page .app-shell{
position: relative;
            isolation: isolate;
            width: 100% !important;
            max-width: 1820px !important;
            padding-left: 40px !important;
            padding-right: 40px !important;
            padding-top: 32px !important;
            padding-bottom: 72px !important;
}

body.searchpilot-demo-page .glass-panel,
body.searchpilot-demo-page .entity-card,
body.searchpilot-demo-page .search-glass,
body.searchpilot-demo2-page .glass-panel,
body.searchpilot-demo2-page .entity-card,
body.searchpilot-demo2-page .search-glass{
background: linear-gradient(145deg, rgba(255,255,255,0.76), rgba(255,255,255,0.42));
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.72);
            backdrop-filter: blur(28px) saturate(1.45);
            -webkit-backdrop-filter: blur(28px) saturate(1.45);
}

body.searchpilot-demo-page .search-glass,
body.searchpilot-demo-page .glass-panel,
body.searchpilot-demo-page .entity-card,
body.searchpilot-demo2-page .search-glass,
body.searchpilot-demo2-page .glass-panel,
body.searchpilot-demo2-page .entity-card{
position: relative;
            overflow: hidden;
}

body.searchpilot-demo-page .search-glass::after,
body.searchpilot-demo-page .glass-panel::after,
body.searchpilot-demo-page .entity-card::after,
body.searchpilot-demo2-page .search-glass::after,
body.searchpilot-demo2-page .glass-panel::after,
body.searchpilot-demo2-page .entity-card::after{
content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: inherit;
            background: linear-gradient(120deg, rgba(255,255,255,0.55), transparent 34%, rgba(255,255,255,0.18) 68%, transparent);
            opacity: 0.7;
}

body.searchpilot-demo-page .highlight,
body.searchpilot-demo2-page .highlight{
background: rgba(255, 236, 120, 0.78);
            color: #172033;
            font-weight: 700;
            padding: 0 2px;
            border-radius: 4px;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

body.searchpilot-demo-page .entity-card,
body.searchpilot-demo2-page .entity-card{
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

body.searchpilot-demo-page .entity-card:hover,
body.searchpilot-demo2-page .entity-card:hover{
transform: translateY(-2px) scale(1.002);
            border-color: rgba(0, 174, 239, 0.62);
            box-shadow: 0 28px 80px rgba(0, 77, 120, 0.18), inset 0 1px 0 rgba(255,255,255,0.78);
            background: linear-gradient(145deg, rgba(255,255,255,0.86), rgba(255,255,255,0.5));
}

body.searchpilot-demo-page .liquid-control,
body.searchpilot-demo2-page .liquid-control{
background: rgba(255,255,255,0.62);
            border: 1px solid rgba(255,255,255,0.72);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 8px 24px rgba(31,41,55,0.08);
            backdrop-filter: blur(18px) saturate(1.25);
            -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

body.searchpilot-demo-page .type-pill:has(:checked),
body.searchpilot-demo-page .tag-btn.is-active,
body.searchpilot-demo2-page .type-pill:has(:checked),
body.searchpilot-demo2-page .tag-btn.is-active{
color: #fff;
            background: linear-gradient(135deg, rgba(0, 174, 239, 0.94), rgba(26, 121, 255, 0.82));
            border-color: rgba(255,255,255,0.72);
            box-shadow: 0 10px 28px rgba(0, 126, 190, 0.26), inset 0 1px 0 rgba(255,255,255,0.4);
}

body.searchpilot-demo-page .type-pill:has(:checked) span,
body.searchpilot-demo-page .type-pill:has(:checked) i,
body.searchpilot-demo-page .tag-btn.is-active,
body.searchpilot-demo2-page .type-pill:has(:checked) span,
body.searchpilot-demo2-page .type-pill:has(:checked) i,
body.searchpilot-demo2-page .tag-btn.is-active{
color: #fff !important;
}

body.searchpilot-demo-page .line-clamp-2,
body.searchpilot-demo2-page .line-clamp-2{
display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
}

body.searchpilot-demo-page .insight-grid,
body.searchpilot-demo2-page .insight-grid{
display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
            gap: 12px;
}

body.searchpilot-demo-page .metric-card,
body.searchpilot-demo2-page .metric-card{
background: rgba(255,255,255,0.45);
            border: 1px solid rgba(255,255,255,0.58);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.68);
}

body.searchpilot-demo-page .results-grid,
body.searchpilot-demo2-page .results-grid{
display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 12px;
}

body.searchpilot-demo-page .results-list,
body.searchpilot-demo2-page .results-list{
display: flex;
            flex-direction: column;
            gap: 8px;
}

body.searchpilot-demo-page .results-grid .entity-card h3,
body.searchpilot-demo2-page .results-grid .entity-card h3{
white-space: normal;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
}

body.searchpilot-demo-page .results-grid .result-head,
body.searchpilot-demo2-page .results-grid .result-head{
align-items: flex-start;
            gap: 10px;
}

body.searchpilot-demo-page .results-grid .result-meta,
body.searchpilot-demo2-page .results-grid .result-meta{
width: 100%;
            max-width: none;
            justify-content: flex-start;
            margin-top: 4px;
}

body.searchpilot-demo-page .view-toggle.is-active,
body.searchpilot-demo2-page .view-toggle.is-active{
color: #fff;
            background: linear-gradient(135deg, rgba(0, 174, 239, 0.94), rgba(26, 121, 255, 0.82));
            box-shadow: 0 10px 28px rgba(0, 126, 190, 0.26), inset 0 1px 0 rgba(255,255,255,0.4);
}

body.searchpilot-demo-page .fade-in,
body.searchpilot-demo2-page .fade-in{
animation: fadeIn 0.25s ease-in-out;
}

body.searchpilot-demo2-page .detail-backdrop{
position: fixed;
            inset: 0;
            z-index: 40;
            display: none;
            background: rgba(15, 23, 42, 0.28);
            backdrop-filter: blur(6px);
}

body.searchpilot-demo2-page .detail-backdrop.is-open{
display: block;
}

body.searchpilot-demo2-page .detail-panel{
position: fixed;
            top: 0;
            right: 0;
            z-index: 50;
            width: min(520px, 100%);
            height: 100vh;
            overflow-y: auto;
            transform: translateX(105%);
            transition: transform 0.22s ease;
            background: rgba(248, 251, 255, 0.94);
            border-left: 1px solid rgba(255,255,255,0.8);
            box-shadow: -28px 0 80px rgba(15, 23, 42, 0.18);
            backdrop-filter: blur(28px) saturate(1.3);
}

body.searchpilot-demo2-page .detail-panel.is-open{
transform: translateX(0);
}

body.searchpilot-demo2-page .detail-panel-inner{
padding: 22px;
}

@media (max-width: 1080px) {
.products-catalog .hero,
.products-catalog .cta-box,
.products-catalog .matrix,
.products-catalog .faq-grid{
grid-template-columns: 1fr;
}

.products-catalog .product-grid{
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.products-catalog .matrix div{
min-height: auto;
}
}

@media (max-width: 760px) {
.products-catalog .container{
padding-left: 14px;
            padding-right: 14px;
}

.products-catalog .hero{
padding: 46px 0 60px;
}

.products-catalog h1{
font-size: 44px;
}

.products-catalog .hero-copy{
font-size: 18px;
}

.products-catalog .hero-actions .primary-btn,
.products-catalog .hero-actions .outline-btn{
width: 100%;
}

.products-catalog .product-grid{
grid-template-columns: 1fr;
}

.products-catalog .section{
padding: 64px 0;
}

.products-catalog .section-head{
display: block;
}

.products-catalog .section-lead{
margin-top: 16px;
}

.products-catalog .comparison,
.products-catalog .cta-box{
padding: 22px;
            border-radius: 28px;
}
}

@media (max-width: 1040px) {
body.searchpilot-page .nav-links,
body.searchpilot-page .orbit,
body.searchpilot-page .floating-chip{
display: none;
}

body.searchpilot-page .hero,
body.searchpilot-page .scenario-grid,
body.searchpilot-page .resources,
body.searchpilot-page .cta-box{
grid-template-columns: 1fr;
}

body.searchpilot-page .product-visual{
min-height: auto;
}

body.searchpilot-page .search-device{
margin: 20px auto 0;
}
}

@media (max-width: 820px) {
body.searchpilot-page .container{
padding-left: 14px;
                padding-right: 14px;
}

body.searchpilot-page .nav{
min-height: 78px;
}

body.searchpilot-page .brand{
min-width: 0;
                gap: 10px;
}

body.searchpilot-page .brand-line{
display: none;
}

body.searchpilot-page .brand-mark{
padding: 8px 12px;
}

body.searchpilot-page .brand-mark .hash{
font-size: 26px;
}

body.searchpilot-page .brand-mark small{
font-size: 9px;
}

body.searchpilot-page .brand-mark span:last-child{
font-size: 15px;
}

body.searchpilot-page .outline-btn{
min-height: 46px;
                padding: 0 18px;
                font-size: 14px;
}

body.searchpilot-page .hero{
padding: 46px 0 60px;
}

body.searchpilot-page .hero-proof,
body.searchpilot-page .cards,
body.searchpilot-page .pricing,
body.searchpilot-page .resources,
body.searchpilot-page .mini-grid{
grid-template-columns: 1fr;
}

body.searchpilot-page .section{
padding: 64px 0;
}

body.searchpilot-page .section-head{
display: block;
}

body.searchpilot-page .section-lead{
margin-top: 16px;
}

body.searchpilot-page .dark-paper,
body.searchpilot-page .cta-box{
padding: 22px;
                border-radius: 28px;
}

body.searchpilot-page .scenario-grid,
body.searchpilot-page .scenario-list,
body.searchpilot-page .scenario-item{
min-width: 0;
}

body.searchpilot-page .audit-row{
display: grid;
                grid-template-columns: 1fr;
}

body.searchpilot-page .footer-row{
display: grid;
}
}

@media (max-width: 480px) {
body.searchpilot-page .header .outline-btn{
display: none;
}

body.searchpilot-page h1{
font-size: 44px;
}

body.searchpilot-page .hero-copy{
font-size: 18px;
}

body.searchpilot-page .hero-actions .primary-btn,
body.searchpilot-page .hero-actions .outline-btn{
width: 100%;
}
}

@media (max-width: 1080px) {
.recommendations-page .hero,
.recommendations-page .cta-box{
grid-template-columns: 1fr;
}

.recommendations-page .product-visual{
min-height: auto;
}

.recommendations-page .orbit,
.recommendations-page .floating-chip{
display: none;
}

.recommendations-page .widget-preview{
margin: 20px auto 0;
}

.recommendations-page .cards,
.recommendations-page .metrics,
.recommendations-page .process,
.recommendations-page .result-grid{
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 760px) {
.recommendations-page .container{
padding-left: 14px;
            padding-right: 14px;
}

.recommendations-page .hero{
padding: 46px 0 60px;
}

.recommendations-page h1{
font-size: 44px;
}

.recommendations-page .hero-actions .primary-btn,
.recommendations-page .hero-actions .outline-btn{
width: 100%;
}

.recommendations-page .section{
padding: 64px 0;
}

.recommendations-page .section-head{
display: block;
}

.recommendations-page .section-lead{
margin-top: 16px;
}

.recommendations-page .cards,
.recommendations-page .metrics,
.recommendations-page .process,
.recommendations-page .result-grid,
.recommendations-page .hero-proof,
.recommendations-page .faq-grid{
grid-template-columns: 1fr;
}

.recommendations-page .result-top{
display: grid;
}

.recommendations-page .recommend-card{
grid-template-columns: 46px 1fr;
}

.recommendations-page .recommend-rate{
grid-column: 2;
}

.recommendations-page .cta-box{
padding: 22px;
            border-radius: 28px;
}

}

@media (max-width: 720px) {
body.searchpilot-demo-page .app-shell{
padding-left: 14px !important;
                padding-right: 14px !important;
                padding-top: 28px !important;
                padding-bottom: 64px !important;
}

body.searchpilot-demo-page .insight-grid,
body.searchpilot-demo-page .results-grid{
grid-template-columns: 1fr;
}
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
body.searchpilot-demo2-page .app-shell{
padding-left: 14px !important;
                padding-right: 14px !important;
                padding-top: 28px !important;
                padding-bottom: 64px !important;
}

body.searchpilot-demo2-page .insight-grid,
body.searchpilot-demo2-page .results-grid{
grid-template-columns: 1fr;
}
}
