.search-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.results-topbar {
    background: rgba(6, 6, 6, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
}

.results-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.results-logo img {
    height: 34px;
    width: auto;
}

.results-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.sign-in-link {
    color: var(--gc-text-secondary);
    text-decoration: none;
    font-weight: 600;
}

.sign-in-link:hover,
.sign-in-link:focus {
    color: var(--gc-primary);
}

/* Shortlist nav indicator in top bar */
.shortlist-nav {
    display: inline-flex;
    align-items: center;
    gap: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.35s ease, opacity 0.25s ease;
}

.shortlist-nav.is-visible {
    max-width: 200px;
    opacity: 1;
}

.shortlist-nav-pipe {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
    padding: 0 0.75rem;
}

.shortlist-nav-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gc-primary);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.shortlist-nav-indicator i {
    font-size: 0.85rem;
}

.shortlist-nav-cta {
    transition: background 0.2s ease, transform 0.2s ease;
}

.shortlist-nav-cta.has-shortlist {
    background: var(--gc-primary);
    color: var(--gc-bg-primary);
}

.shortlist-nav-cta.has-shortlist:hover {
    background: var(--gc-primary-hover);
}

.results-search {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    align-self: center;
}

.results-search-input {
    position: relative;
}

.results-search-input .search-suggestions {
    z-index: 10;
}

.results-search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(245, 247, 250, 0.7);
}

.results-search-input .search-input {
    width: 100%;
    height: 48px;
    padding-left: 3rem;
    padding-right: 3rem;
    font-size: 1.05rem;
    background: #2a2d31;
    color: #f5f7fa;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

.results-search-input .search-input::placeholder {
    color: rgba(245, 247, 250, 0.6);
}

.results-search-input .search-input:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35), 0 18px 30px rgba(0, 0, 0, 0.25);
}

.results-search-input .search-clear-btn {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: rgba(245, 247, 250, 0.55);
    width: 28px;
    height: 28px;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-search-input.has-text .search-clear-btn {
    opacity: 1;
    pointer-events: auto;
}

.results-search-input .search-clear-btn:hover {
    color: rgba(245, 247, 250, 0.9);
}

/* Generic tooltip (positioned via JS) */
.gc-tooltip {
    position: fixed;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gc-text-secondary);
    white-space: nowrap;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.gc-tooltip.is-visible {
    opacity: 1;
}

.results-search-message {
    position: absolute;
    left: 0;
    top: calc(100% + 0.45rem);
    width: 100%;
    color: var(--gc-warning);
    font-size: 0.9rem;
}

.results-turnstile-shell {
    position: absolute;
    left: 0;
    top: calc(100% + 1.9rem);
    width: min(320px, 100%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.results-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: flex-start;
}

.results-count {
    margin-bottom: 1rem;
    color: var(--gc-text-secondary);
    font-size: 0.95rem;
}

/* Interpretation Summary Pills - Inline with results count */
.results-header-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.results-header-row::-webkit-scrollbar {
    display: none;
}

.results-header-row .results-count {
    margin-bottom: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.results-divider {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
    flex-shrink: 0;
}

.interpretation-pills {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.interp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    cursor: default;
    transition: background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.interp-pill i {
    font-size: 0.65rem;
}

/* Understood pills - neutral default, green on hover */
.interp-pill--understood {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gc-text-secondary);
    transition: all 0.15s ease;
}

.interp-pill--understood i {
    color: var(--gc-primary);
}

.interp-pill--understood .pill-label {
    color: var(--gc-text-muted);
}

.interp-pill--understood .pill-value {
    color: var(--gc-text-secondary);
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.interp-pill--understood:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
}

.interp-pill--understood:hover .pill-label,
.interp-pill--understood:hover .pill-value {
    color: var(--gc-primary);
}

/* Unclear pills - soft gray default, orange on hover */
.interp-pill--unclear {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.15s ease;
}

.interp-pill--unclear .pill-label {
    color: rgba(255, 255, 255, 0.4);
}

.interp-pill--unclear:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
}

.interp-pill--unclear:hover .pill-label {
    color: #f59e0b;
}

@media (max-width: 768px) {
    .results-header-row {
        gap: 0.4rem;
    }

    .interp-pill {
        font-size: 0.68rem;
        padding: 0.18rem 0.4rem;
    }

    .interp-pill--understood .pill-value {
        max-width: 80px;
    }
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.results-pagination {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.results-pagination > .btn {
    justify-self: center;
    font-size: 1.05rem;
    padding: 0.75rem 2rem;
}

.results-pagination .btn.is-hidden {
    display: none;
}

.results-cta {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    display: grid;
    gap: 0.6rem;
    justify-items: center;
}

.results-cta h4 {
    margin: 0 0 0.35rem 0;
    font-size: 1.05rem;
}

.results-cta p {
    margin: -0.15rem 0 0.25rem 0;
    color: var(--gc-text-secondary);
    font-size: 0.88rem;
}

.results-cta-limit {
    display: none;
    color: var(--gc-warning);
    font-size: 0.9rem;
}

.results-cta-limit.is-visible {
    display: block;
}

.results-note {
    margin-top: 0.4rem;
    color: var(--gc-text-secondary);
    font-size: 0.9rem;
}

/* Fallback header with inline Pro Tip */
.results-header-fallback {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1.25rem;
    margin-bottom: 1rem;
}

.results-header-fallback .results-count {
    margin-bottom: 0;
}

.results-pro-tip-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.95rem;
}

.results-pro-tip-inline .pro-tip-label {
    color: var(--gc-primary);
    font-weight: 600;
    white-space: nowrap;
}

.results-pro-tip-inline .pro-tip-text {
    color: var(--gc-text-secondary);
}

/* Legacy standalone Pro Tip (kept for compatibility) */
.results-pro-tip {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    line-height: 1.45;
}

.pro-tip-label {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--gc-primary);
    white-space: nowrap;
}

.pro-tip-text {
    color: var(--gc-text-secondary);
}

/* Sidebar tip text (shown above filters when fallback/0 results) */
.sidebar-tip-text {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gc-text-secondary);
}

.partner-row {
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(18, 18, 18, 0.35);
    box-shadow: var(--gc-shadow-md);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.partner-row:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.3);
    z-index: 3;
}

.partner-row.is-discovery {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(18, 18, 18, 0.35);
}

.partner-row.is-discovery:hover {
    border-color: var(--gc-primary);
    box-shadow: var(--gc-shadow-md);
}

.partner-row.shortlisted {
    border-color: rgba(16, 185, 129, 0.6);
    background: rgba(16, 185, 129, 0.08);
}

.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.partner-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.partner-heading-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.partner-heading-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* Inline tags under title */
.partner-tags-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.tag-pill-sm {
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.partner-row:hover .tag-pill-sm {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-actions-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.partner-actions-inline .btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
}

.partner-heading h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gc-text-primary);
}

.partner-subtitle {
    margin: 0.25rem 0 0;
    color: var(--gc-text-secondary);
}

.partner-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: visible;
    background: rgba(16, 185, 129, 0.15);
    flex-shrink: 0;
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Avatar color variants for visual differentiation */
.partner-avatar.avatar-color-1 { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.3); }
.partner-avatar.avatar-color-1 .avatar-placeholder { color: #10b981; }

.partner-avatar.avatar-color-2 { background: rgba(99, 102, 241, 0.15); border-color: rgba(99, 102, 241, 0.3); }
.partner-avatar.avatar-color-2 .avatar-placeholder { color: #6366f1; }

.partner-avatar.avatar-color-3 { background: rgba(236, 72, 153, 0.15); border-color: rgba(236, 72, 153, 0.3); }
.partner-avatar.avatar-color-3 .avatar-placeholder { color: #ec4899; }

.partner-avatar.avatar-color-4 { background: rgba(245, 158, 11, 0.15); border-color: rgba(245, 158, 11, 0.3); }
.partner-avatar.avatar-color-4 .avatar-placeholder { color: #f59e0b; }

.partner-avatar.avatar-color-5 { background: rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.3); }
.partner-avatar.avatar-color-5 .avatar-placeholder { color: #0ea5e9; }

.partner-avatar.avatar-color-6 { background: rgba(168, 85, 247, 0.15); border-color: rgba(168, 85, 247, 0.3); }
.partner-avatar.avatar-color-6 .avatar-placeholder { color: #a855f7; }

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gc-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: transparent;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.partner-highlight {
    margin: 0;
    color: var(--gc-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-highlight .summary-term {
    color: var(--gc-text-secondary);
    font-weight: 600;
    transition: color 0.2s ease;
    position: relative;
    cursor: pointer;
}

.partner-row:hover .partner-highlight .summary-term.summary-business {
    color: #4fd1c5;
}

.partner-row:hover .partner-highlight .summary-term.summary-audience {
    color: #b59bff;
}

.partner-row:hover .partner-highlight .summary-term.summary-offer {
    color: #ff36e7;
}

/* Summary term tooltips - JS-based (appended to body to avoid overflow clipping) */
.summary-tooltip {
    position: fixed;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gc-text-secondary);
    white-space: nowrap;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.08s ease;
}

.summary-tooltip.is-visible {
    opacity: 1;
}

.summary-tooltip.summary-business {
    border-color: rgba(79, 209, 197, 0.5);
    color: #4fd1c5;
}

.summary-tooltip.summary-audience {
    border-color: rgba(181, 155, 255, 0.5);
    color: #b59bff;
}

.summary-tooltip.summary-offer {
    border-color: rgba(255, 54, 231, 0.5);
    color: #ff36e7;
}

/* Limited info message for partners with insufficient data */
.summary-limited-info {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-size: 0.85rem;
}

.partner-row:hover .summary-limited-info {
    color: rgba(255, 255, 255, 0.7);
}

/* Scrollable tags wrapper */
.partner-tags-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
}

.partner-tags-scroll::-webkit-scrollbar {
    display: none;
}

.partner-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
}

.tag-pill {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gc-border-default);
    color: var(--gc-text-secondary);
    font-size: 0.75rem;
    transition: border-color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Neutral gray tags (default) */
.tag-pill.tag-neutral {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--gc-text-secondary);
}

.tag-pill.tag-neutral:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.tag-pill:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.partner-metrics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.partner-metrics li {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--gc-primary);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.shortlist-btn.active {
    border-color: var(--gc-primary);
    color: var(--gc-primary);
}

.partner-metric-earnings {
    background: rgba(16, 185, 129, 0.18);
    color: var(--gc-primary);
    border: 1px solid rgba(16, 185, 129, 0.45);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease;
    order: 99;
    margin-left: auto;
}

/* Earnings update animations */
.partner-metric-earnings.earnings-updating {
    transform: scale(0.95);
    opacity: 0.7;
}

.partner-metric-earnings.earnings-updated {
    animation: earningsFlash 0.6s ease;
}

@keyframes earningsFlash {
    0% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
    }
    40% {
        transform: scale(1.08);
        box-shadow: 0 0 24px rgba(16, 185, 129, 0.5), 0 0 48px rgba(16, 185, 129, 0.25);
        background: rgba(16, 185, 129, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
    }
}

.earnings-tooltip {
    position: absolute;
    left: 0;
    top: calc(100% + 0.6rem);
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
    color: var(--gc-text-secondary);
    width: max-content;
    max-width: 240px;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
}

.earnings-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent rgba(12, 12, 12, 0.96) transparent;
}

.partner-metric-earnings:hover .earnings-tooltip,
.partner-metric-earnings:focus-within .earnings-tooltip {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.results-survey.is-attention {
    animation: surveyPulse 0.9s ease;
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.35);
}

@keyframes surveyPulse {
    0% {
        transform: translateY(0) scale(1);
    }
    30% {
        transform: translateY(-6px) scale(1.01);
    }
    60% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.results-filters {
    padding: 1.5rem;
    position: static;
    align-self: flex-start;
    background: rgba(18, 18, 18, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filters-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.filters-toggle {
    display: none;
}

.filters-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.filter-group h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gc-text-secondary);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gc-text-secondary);
    font-size: 0.9rem;
}

.filter-option input {
    accent-color: var(--gc-primary);
}

.clear-filters {
    width: 100%;
}

.growcial-shortlist-bar {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--gc-shadow-lg);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 30;
}

.results-survey {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background: rgba(16, 16, 16, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: var(--gc-shadow-lg);
    backdrop-filter: blur(18px) saturate(140%);
    z-index: 25;
    transition: all 0.3s ease;
}

.results-survey.is-hidden {
    display: none;
}

/* Minimized tab state */
.survey-tab {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    white-space: nowrap;
}

.results-survey.is-minimized .survey-tab {
    display: flex;
}

.results-survey.is-minimized .survey-content {
    display: none;
}

.survey-tab-icon {
    font-size: 1.1rem;
}

.survey-tab-text {
    color: var(--gc-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.survey-tab:hover .survey-tab-text {
    color: var(--gc-primary);
}

/* Expanded content state */
.survey-content {
    position: relative;
    width: min(380px, 90vw);
    padding: 1.25rem 1.25rem 1rem;
}

.results-survey:not(.is-minimized) .survey-content {
    display: block;
}

.survey-close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--gc-text-secondary);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s ease;
}

.survey-close:hover {
    color: #fff;
}

.survey-tag {
    display: inline-flex;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--gc-primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.results-survey h4 {
    margin: 0 0 0.6rem;
    font-size: 1.15rem;
    line-height: 1.3;
}

.survey-question {
    margin: 0 0 0.85rem;
    color: var(--gc-text-primary);
    font-size: 1rem;
    font-weight: 500;
}

.survey-options {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.survey-option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gc-text-primary);
    cursor: pointer;
    font-size: 0.92rem;
    text-align: left;
}

.survey-option:hover,
.survey-option:focus {
    border-color: rgba(16, 185, 129, 0.6);
    color: var(--gc-primary);
}

.survey-option strong {
    color: var(--gc-primary);
    font-weight: 700;
    margin: 0 0.15em;
}

.survey-option strong:first-child {
    margin-left: 0;
}

.survey-option strong:last-child {
    margin-right: 0;
}

.survey-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0;
    background: transparent;
    border: none;
    color: var(--gc-text-secondary);
    font-size: 0.82rem;
    cursor: pointer;
    margin-bottom: 0.25rem;
}

.survey-back-btn:hover {
    color: var(--gc-primary);
}

.survey-custom {
    display: none;
    gap: 0.5rem;
    align-items: center;
}

.survey-custom.is-visible {
    display: flex;
}

.survey-custom input {
    flex: 1;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.4);
    color: var(--gc-text-primary);
}

.survey-note {
    margin: 0.75rem 0 0;
    color: var(--gc-text-secondary);
    font-size: 0.85rem;
    line-height: 1.45;
}

.survey-cta {
    margin-top: 0.75rem;
}

.shortlist-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gc-text-secondary);
}

.shortlist-meta i {
    color: var(--gc-primary);
}

@media (max-width: 1024px) {
    .results-topbar-inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .results-actions {
        justify-content: center;
    }

    .results-body {
        grid-template-columns: 1fr;
    }

    .filters-header {
        margin-bottom: 0.5rem;
    }

    .filters-toggle {
        display: inline-flex;
    }

    .filters-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .filters-body.is-open {
        max-height: 1200px;
    }
}

@media (max-width: 720px) {
    .partner-row.is-discovery {
        flex-direction: column;
    }

    .growcial-shortlist-bar {
        width: calc(100% - 2rem);
        justify-content: space-between;
    }

    .partner-actions-inline {
        width: 100%;
        justify-content: flex-start;
    }

    .results-survey {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
    }
}

/* ===================================
   TOAST NOTIFICATIONS
   =================================== */

.gc-toast-container {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.gc-toast {
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: min(520px, calc(100vw - 2.5rem));
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.gc-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.gc-toast--success {
    background: var(--gc-primary);
    color: var(--gc-bg-primary);
}

.gc-toast--error {
    background: #ef4444;
    color: #ffffff;
}

.gc-toast--info {
    background: rgba(255, 255, 255, 0.10);
    color: var(--gc-text-primary);
    border-color: rgba(255, 255, 255, 0.18);
}

.gc-toast__body {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    padding: 0 2.5rem;
}

.gc-toast__close {
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: inherit;
    opacity: 0.9;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    right: 0.6rem;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.gc-toast__close:hover,
.gc-toast__close:focus {
    background: rgba(0, 0, 0, 0.12);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .gc-toast {
        transition: none;
        transform: none;
    }
}

/* Debug Panel - Only visible with ?debug=1 */
.debug-panel {
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(181, 155, 255, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 0.85rem;
}

.debug-panel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.debug-panel-header i {
    color: #b59bff;
    font-size: 1rem;
}

.debug-panel-header h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #b59bff;
    font-family: inherit;
}

.debug-panel-header .debug-badge {
    margin-left: auto;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(181, 155, 255, 0.15);
    color: #b59bff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.debug-section {
    margin-bottom: 1rem;
}

.debug-section:last-child {
    margin-bottom: 0;
}

.debug-section-title {
    font-size: 0.75rem;
    color: var(--gc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.debug-intent {
    color: var(--gc-primary);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.debug-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.debug-box {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 0.75rem;
}

.debug-box-title {
    font-size: 0.7rem;
    color: var(--gc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.debug-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.debug-list li {
    padding: 0.15rem 0;
    color: var(--gc-text-secondary);
    font-size: 0.8rem;
}

.debug-list li::before {
    content: '•';
    color: var(--gc-primary);
    margin-right: 0.4rem;
}

.debug-list.audience li::before {
    color: #b59bff;
}

.debug-empty {
    color: var(--gc-text-muted);
    font-style: italic;
    font-size: 0.8rem;
}

.debug-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.debug-term {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--gc-primary);
    font-size: 0.75rem;
}

.debug-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0.75rem;
}

.debug-meta-item {
    font-size: 0.75rem;
    color: var(--gc-text-muted);
}

.debug-meta-item strong {
    color: var(--gc-text-secondary);
}

@media (max-width: 640px) {
    .debug-grid {
        grid-template-columns: 1fr;
    }
}
