/* ===== Navbar ===== */
.navbar {
    background: #ffffff;
    color: #111827;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #111827;
}

.navbar .user-info {
    font-weight: 500;
    color: #374151;
    margin-right: 1rem;
}

.navbar .btn-logout {
    background: linear-gradient(90deg, #f87171, #ef4444);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    transition: 0.3s;
}

.navbar .btn-logout:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== Sidebar ===== */
.sidebar {
    width: 80px;
    /* collapsed width */
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-right: 1px solid #eee;
    border-radius: 0 20px 20px 0;
    padding-top: 1.5rem;
    transition: width 0.3s ease;
    overflow: hidden;
    position: relative;
}

.sidebar.expanded {
    width: 240px;
    /* expanded width */
}

/* Sidebar Links */
.sidebar-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 8px;
    transition: all 0.25s ease;
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

.sidebar-menu .nav-link i {
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
}

.sidebar-menu .nav-link span {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sidebar.expanded .nav-link span {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu .nav-link:hover {
    background: linear-gradient(90deg, #e0f7fa, #b2ebf2);
    color: #0e7490;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
    transform: translateX(4px);
}

.sidebar-menu .nav-link.active {
    background: linear-gradient(90deg, #0891B2 0%, #06B6D4 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(8, 145, 178, 0.25);
}

/* Sidebar collapsed hover to expand */
.sidebar:not(.expanded):hover {
    width: 240px;
}

.sidebar:not(.expanded):hover .nav-link span {
    opacity: 1;
    visibility: visible;
}

/* ===== Main Content ===== */
.main-content {
    background: #f9fafb;
    min-height: 100vh;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(90deg, #0891B2 0%, #06B6D4 100%);
    border: none;
    border-radius: 12px;
    padding: 8px 18px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== Avatar Circle ===== */
.initial-circle {
    background: linear-gradient(135deg, #0891B2, #06B6D4);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

/* ===== Dropdown in Topnav ===== */
.navbar .dropdown-menu {
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-item i {
    width: 20px;
    text-align: center;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(90deg, #0891B2 0%, #06B6D4 100%);
    color: #fff;
}

/* Investor dashboard top navbar: vendor-app matched */
.requestor-investor-header.sticky-header {
    --primary-color: #00b8d4;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    transition: all 0.3s ease;
}

.requestor-investor-header.sticky-header .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 0;
    transition: all 0.3s ease;
}

.requestor-investor-header.sticky-header.scrolled .navbar {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.requestor-investor-header .navbar-brand img {
    height: 40px;
    transition: height 0.3s ease;
}

.requestor-investor-header.sticky-header.scrolled .navbar-brand img {
    height: 35px;
}

.requestor-investor-header .navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.55);
}

.requestor-investor-header .navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.requestor-investor-header .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.requestor-investor-header .navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 80%;
    left: 10%;
}

.requestor-investor-header .navbar-nav .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
}

.requestor-investor-header .navbar-nav .nav-link.dropdown-toggle > div {
    display: inline-flex !important;
    align-items: center;
}

.requestor-investor-header .navbar-nav .nav-link.dropdown-toggle::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.requestor-investor-header .navbar-nav .nav-link.dropdown-toggle:hover::before,
.requestor-investor-header .navbar-nav .nav-link.dropdown-toggle.active::before {
    width: 80%;
    left: 10%;
}

.requestor-investor-header .navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
}

.requestor-investor-header .dropdown-toggle::after {
    margin-left: 0.5rem;
}

.requestor-investor-header .dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0.5rem 0;
    z-index: 1040;
}

.requestor-investor-header .dropdown-item {
    padding: 0.5rem 1.5rem;
}

.requestor-investor-header .dropdown-item:hover,
.requestor-investor-header .dropdown-item:focus {
    background-color: var(--primary-color);
    color: #fff;
}

.requestor-investor-main {
    width: 100%;
}

.requestor-investor-main main {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.requestor-startup-main {
    min-height: calc(100vh - 72px);
    padding-top: 1rem;
    padding-right: 0;
    padding-left: 0;
}

.requestor-startup-header .navbar-brand img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.requestor-startup-header .initial-circle {
    box-shadow: 0 10px 22px rgba(8, 145, 178, 0.2);
}

.requestor-startup-footer {
    position: relative;
    margin-top: 0;
    padding: clamp(2.2rem, 5vw, 4rem) 0 1.2rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    background:
        radial-gradient(circle at 86% 12%, rgba(0, 184, 212, 0.2), transparent 18rem),
        linear-gradient(135deg, #071827 0%, #0f3448 100%);
}

.requestor-startup-footer h2 {
    margin: 0 0 0.9rem;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
}

.requestor-startup-footer p {
    max-width: 430px;
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
}

.requestor-startup-footer a:not(.requestor-startup-footer-action) {
    display: block;
    width: fit-content;
    margin-bottom: 0.62rem;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.requestor-startup-footer a:not(.requestor-startup-footer-action):hover {
    transform: translateX(2px);
    color: #ffffff;
}

.requestor-startup-footer-logo {
    display: block;
    width: min(150px, 100%);
    height: auto;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.requestor-startup-footer-socials {
    display: flex;
    gap: 0.55rem;
    margin-top: 1rem;
}

.requestor-startup-footer-socials a:not(.requestor-startup-footer-action) {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.requestor-startup-footer-socials a:not(.requestor-startup-footer-action):hover {
    transform: translateY(-2px);
    background: rgba(0, 184, 212, 0.24);
}

.requestor-startup-footer-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.72rem 1rem;
    border-radius: 0.45rem;
    color: #071827;
    background: #ffffff;
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease;
}

.requestor-startup-footer-action:hover {
    transform: translateY(-2px);
    color: #071827;
    background: #bff5ff;
}

.requestor-startup-footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: clamp(1.7rem, 3vw, 2.6rem);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.86rem;
}

@media (max-width: 991.98px) {
    .requestor-investor-header .navbar .nav-link {
        padding: 0.8rem 0;
    }

    .requestor-investor-header .navbar .dropdown-item {
        padding: 0.75rem 1.5rem;
    }

    .requestor-investor-header .navbar-collapse {
        padding-top: 0.5rem;
        padding-bottom: 1rem;
        transition: all 0.3s ease;
        max-height: 80vh;
        overflow-y: auto;
    }

    .requestor-investor-header .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin: 4px 0;
    }

    .requestor-investor-header .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .requestor-investor-header .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        font-weight: 500;
        background-color: rgba(0, 0, 0, 0.02);
    }

    .requestor-investor-header .navbar-nav .nav-link::after,
    .requestor-investor-header .navbar-nav .nav-link.dropdown-toggle::before {
        display: none;
    }

    .requestor-investor-header .navbar-nav .nav-link.active {
        background-color: rgba(0, 184, 212, 0.1);
        color: var(--primary-color);
        border-left: 4px solid var(--primary-color);
    }

    .requestor-investor-header .navbar-nav .dropdown-toggle {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 40px !important;
    }

    .requestor-investor-header .navbar-nav .dropdown-toggle::after {
        content: '\002B';
        position: static;
        border: none;
        width: 24px !important;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        font-size: 18px;
        transition: all 0.2s ease;
        margin-left: 0;
    }

    .requestor-investor-header .navbar-nav .dropdown-toggle[aria-expanded="true"] {
        background-color: rgba(0, 184, 212, 0.1);
    }

    .requestor-investor-header .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
        content: '\2212';
        background-color: var(--primary-color);
        color: white;
        transform: rotate(180deg);
    }

    .requestor-investor-header .navbar-nav .dropdown-menu {
        padding: 5px;
        background-color: rgba(0, 0, 0, 0.02);
        border: none;
        border-radius: 8px;
        margin: 2px 0 0 10px;
        box-shadow: none;
        border-left: 2px solid var(--primary-color);
    }

    .requestor-investor-header .navbar-nav .dropdown-item {
        padding: 10px 15px;
        border-radius: 6px;
        margin-bottom: 2px;
    }
}

@media (min-width: 992px) {
    .requestor-investor-header .navbar-nav .dropdown-toggle::after {
        content: '';
        position: static;
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
        width: auto;
        height: auto;
        background-color: transparent;
        display: inline-block;
        margin-left: 0.255em;
    }

    .requestor-investor-header .navbar-nav .nav-item {
        margin: 0;
        border-bottom: none;
    }

    .requestor-investor-header .navbar-nav .nav-link {
        background-color: transparent;
        border-left: none;
        border-radius: 0;
    }
}

/* ===== FINAL Browse SP Layout ===== */
/* Equal height cards */
.browse-page .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.browse-page .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Keep cards visually tight like Figma */
.browse-page .row > [class*="col-"] {
    align-self: stretch;
}

/* Lock filter panel cleanly */
.browse-page aside .card,
.browse-page .filter-card {
    position: sticky;
    top: 90px;
}

/* Prevent right section from over-stretching */
@media (min-width: 1200px) {
    .browse-page section.col-lg-9 {
        max-width: 950px;
    }
}

/* Investor engagements page */
.investor-engagements-page .engagements-hero {
    background:
        radial-gradient(circle at top right, rgba(13, 202, 240, 0.16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f5fbfd 100%);
}

.investor-engagements-page .summary-tile {
    min-width: 150px;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.investor-engagements-page .summary-label {
    font-size: 0.78rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.investor-engagements-page .summary-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
    margin-top: 0.35rem;
}

.investor-engagements-page .engagement-tabs {
    gap: 0.75rem;
}

.investor-engagements-page .engagement-tabs .nav-link {
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    color: #475569;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.investor-engagements-page .engagement-tabs .nav-link:hover,
.investor-engagements-page .engagement-tabs .nav-link:focus {
    color: #0891b2;
    border-color: rgba(8, 145, 178, 0.25);
}

.investor-engagements-page .engagement-tabs .nav-link.active {
    background: linear-gradient(90deg, #0891B2 0%, #06B6D4 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.24);
}

.investor-engagements-page .engagement-card {
    border-radius: 1.15rem;
}

.investor-engagements-page .eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0ea5e9;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.investor-engagements-page .engagement-meta {
    display: grid;
    gap: 0.65rem;
    color: #334155;
}

.investor-engagements-page .empty-state {
    border-radius: 1.15rem;
}

/* Startup profile foundation */
.startup-dashboard-page,
.startup-profile-page {
    color: #0f172a;
}

.startup-review-feedback {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    margin: 22px 0;
    padding: 22px 24px;
    border: 1px solid #f1c879;
    border-radius: 8px;
    background: #fffaf0;
    color: #172033;
    box-shadow: 0 14px 32px rgba(114, 75, 15, 0.08);
}

.startup-review-feedback-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 8px;
    background: #fff0ca;
    color: #b56b00;
    font-size: 22px;
}

.startup-review-feedback-copy > span {
    color: #9a5b00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.startup-review-feedback-copy h2 {
    margin: 4px 0 6px;
    font-size: 20px;
}

.startup-review-feedback-copy p {
    margin: 0;
    color: #5f6b80;
}

.startup-review-feedback-copy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 22px;
    margin: 16px 0 0;
    padding-left: 20px;
}

.startup-review-feedback-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-left: 3px solid #d59021;
    background: #fff;
}

.startup-review-feedback-note strong {
    display: block;
    margin-bottom: 4px;
}

.startup-review-feedback-dismiss {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    border: 1px solid #d99a37;
    border-radius: 7px;
    padding: 10px 15px;
    background: #fff;
    color: #805000;
    font-weight: 700;
}

@media (max-width: 767px) {
    .startup-review-feedback {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 18px;
    }

    .startup-review-feedback form {
        grid-column: 1 / -1;
    }

    .startup-review-feedback-copy ul {
        grid-template-columns: 1fr;
    }
}

.startup-dashboard-page {
    margin-top: -1.1rem;
}

.startup-profile-eyebrow {
    display: inline-flex;
    margin-bottom: 0.4rem;
    color: #00a6c8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.startup-profile-alert,
.startup-dashboard-hero,
.startup-profile-hero,
.startup-profile-shell {
    border: 1px solid rgba(14, 165, 233, 0.16);
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.14), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f6fdff 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.startup-profile-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 68px;
    padding: 0.8rem 3.6rem 0.8rem 1.15rem;
    border-radius: 0.45rem;
    color: #006d7f;
    background: rgba(0, 184, 212, 0.15);
    border: 1px solid rgba(0, 184, 212, 0.4);
    box-shadow: none;
}

.startup-profile-alert-text {
    flex: 1;
    color: #006d7f;
    font-size: 0.98rem;
    line-height: 1.5;
}

.startup-profile-alert-text strong {
    color: #006477;
    font-weight: 800;
}

.startup-profile-alert h2,
.startup-dashboard-hero h1,
.startup-profile-hero h1 {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
}

.startup-profile-alert p,
.startup-dashboard-hero p,
.startup-profile-hero p {
    margin: 0.4rem 0 0;
    color: #64748b;
}

.startup-mini-progress {
    --progress: 0;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #ffffff 58%, transparent 59%),
        conic-gradient(#05a8c7 calc(var(--progress) * 1%), #dff7fb 0);
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.12), 0 12px 28px rgba(6, 182, 212, 0.16);
}

.startup-mini-progress span {
    color: #0088a8;
    font-weight: 800;
}

.startup-profile-alert-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    white-space: nowrap;
    border-radius: 0.35rem;
    padding: 0.48rem 0.9rem;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    background: #00a6c8;
    border-color: #00a6c8;
    box-shadow: none;
}

.startup-profile-alert .btn-close {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.65;
}

.startup-dashboard-hero,
.startup-profile-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 1.55rem;
    border-radius: 1.25rem;
}

.startup-dashboard-hero h1 {
    font-size: clamp(1.7rem, 2.7vw, 2.55rem);
    line-height: 1.12;
}

.startup-dashboard-hero p {
    max-width: 760px;
    font-size: 0.96rem;
}

.startup-dashboard-hero-copy {
    min-width: 0;
    flex: 1;
}

.startup-dashboard-hero .btn {
    flex-shrink: 0;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
}

.startup-dashboard-hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-top: 1.55rem;
}

.startup-dashboard-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 132px;
}

.startup-dashboard-hero-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 1rem;
    color: #008faf;
    background: rgba(231, 250, 253, 0.88);
    box-shadow: 0 14px 28px rgba(8, 145, 178, 0.1);
    font-size: 1.4rem;
}

.startup-dashboard-hero-stat[data-tone="blue"] .startup-dashboard-hero-stat-icon {
    color: #0369a1;
}

.startup-dashboard-hero-stat[data-tone="mint"] .startup-dashboard-hero-stat-icon {
    color: #087f5b;
}

.startup-dashboard-hero-stat-copy {
    display: grid;
    gap: 0.1rem;
    color: #475467;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.startup-dashboard-hero-stat-copy strong {
    color: #101828;
    font-size: 1.34rem;
    font-weight: 900;
    line-height: 1;
}

.startup-dashboard-ecosystem {
    margin-top: clamp(1.7rem, 3vw, 2.45rem);
}

.requestor-browse-toolbar {
    gap: 1rem;
}

.requestor-browse-search {
    width: min(100%, 300px);
}

.requestor-detail-page {
    min-width: 0;
}

.requestor-detail-page a,
.requestor-detail-page p,
.requestor-detail-page h4 {
    overflow-wrap: anywhere;
}

.startup-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.startup-dashboard-card {
    min-height: 180px;
    padding: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.startup-dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.startup-dashboard-card i {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 1rem;
    color: #0088a8;
    font-size: 1.35rem;
    background: rgba(6, 182, 212, 0.12);
}

.startup-dashboard-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
}

.startup-dashboard-card p {
    color: #64748b;
}

.startup-dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0.35rem 0 0;
    padding: 0.1rem 0 0.35rem;
}

.startup-dashboard-stat {
    display: flex;
    min-height: 118px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.26rem;
    text-align: center;
    transition: transform 0.22s ease;
}

.startup-dashboard-stat:hover {
    transform: translateY(-4px);
}

.startup-dashboard-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.22rem;
    font-size: clamp(2.15rem, 2.8vw, 3rem);
    line-height: 1;
    filter: drop-shadow(0 12px 16px rgba(15, 23, 42, 0.12));
    animation: dashboardStatIconFloat 3.8s ease-in-out infinite;
}

.startup-dashboard-stat:nth-child(2) .startup-dashboard-stat-icon {
    animation-delay: 0.35s;
}

.startup-dashboard-stat:nth-child(3) .startup-dashboard-stat-icon {
    animation-delay: 0.7s;
}

.startup-dashboard-stat[data-tone="cyan"] .startup-dashboard-stat-icon {
    color: #008faf;
}

.startup-dashboard-stat[data-tone="blue"] .startup-dashboard-stat-icon {
    color: #0369a1;
}

.startup-dashboard-stat[data-tone="mint"] .startup-dashboard-stat-icon {
    color: #087f5b;
}

.startup-dashboard-stat-value {
    color: #101828;
    font-size: clamp(1.45rem, 1.9vw, 2rem);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.startup-dashboard-stat-label {
    color: #475467;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

@keyframes dashboardStatIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.startup-dashboard-section {
    margin-top: 1.1rem;
}

.startup-dashboard-section-head h2 {
    margin: 0 0 0.35rem;
    color: #101828;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 800;
}

.startup-dashboard-section-head p {
    margin: 0;
    color: #667085;
    line-height: 1.65;
}

.startup-dashboard-quick-list {
    display: flex;
    flex-direction: column;
    gap: clamp(1.35rem, 3vw, 2.1rem);
    margin-top: 1.25rem;
}

.startup-dashboard-quick-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.75fr);
    align-items: center;
    gap: clamp(1.25rem, 4vw, 2.7rem);
}

.startup-dashboard-quick-panel:nth-child(even) {
    grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.15fr);
}

.startup-dashboard-quick-panel:nth-child(even) .startup-dashboard-quick-copy {
    order: 2;
}

.startup-dashboard-quick-panel:nth-child(even) .startup-dashboard-quick-visual {
    order: 1;
}

.startup-dashboard-quick-copy {
    min-width: 0;
}

.startup-dashboard-quick-copy h3 {
    margin: 0 0 0.72rem;
    color: #00a6c8;
    font-size: clamp(1.55rem, 2.5vw, 2.35rem);
    font-weight: 900;
    line-height: 1.1;
}

.startup-dashboard-quick-copy p {
    max-width: 660px;
    margin: 0 0 0.9rem;
    color: #5f6368;
    font-size: 0.98rem;
    line-height: 1.62;
}

.startup-dashboard-quick-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.66rem 0.92rem;
    border-radius: 0.35rem;
    color: #ffffff;
    background: #00a6c8;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.startup-dashboard-quick-action:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: #008faf;
    box-shadow: 0 14px 26px rgba(0, 143, 180, 0.22);
}

.startup-dashboard-quick-action i,
.startup-dashboard-quick-visual i {
    transition: transform 0.22s ease;
}

.startup-dashboard-quick-visual {
    display: flex;
    min-height: 196px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1.5px solid #101828;
    border-radius: 1.1rem;
    color: #0b1117;
    background: #d7f5fb;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.startup-dashboard-quick-visual i {
    font-size: clamp(4rem, 6vw, 5.8rem);
    line-height: 1;
}

.startup-dashboard-quick-panel[data-tone="navy"] .startup-dashboard-quick-visual {
    background: #dce8ff;
}

.startup-dashboard-quick-panel[data-tone="mint"] .startup-dashboard-quick-visual {
    background: #dff7ec;
}

.startup-dashboard-quick-panel[data-tone="amber"] .startup-dashboard-quick-visual {
    background: #fff0d4;
}

.startup-dashboard-quick-panel[data-tone="blue"] .startup-dashboard-quick-visual {
    background: #e0f2fe;
}

.startup-dashboard-quick-panel:not(.is-pending):hover .startup-dashboard-quick-visual {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.startup-dashboard-quick-panel:not(.is-pending):hover .startup-dashboard-quick-visual i {
    transform: scale(1.04);
}

.startup-dashboard-quick-panel.is-pending .startup-dashboard-quick-visual {
    border-color: rgba(16, 24, 40, 0.42);
}

.startup-dashboard-updates-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
}

.startup-dashboard-updates-grid[data-count="1"] {
    grid-template-columns: minmax(0, 0.72fr);
}

.startup-dashboard-updates-grid[data-count="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.startup-dashboard-quick-actions .startup-dashboard-quick-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.startup-dashboard-quick-actions .dashboard-invite-role {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-height: 118px;
    padding: 1.05rem 1rem;
    color: inherit;
    text-align: left;
    text-decoration: none;
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-left: 0;
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.startup-dashboard-quick-actions button.dashboard-invite-role {
    font: inherit;
    cursor: pointer;
}

.startup-dashboard-quick-actions .dashboard-invite-role::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 999px;
    background: #00a6c8;
}

.startup-dashboard-quick-actions .dashboard-invite-role:hover:not(:disabled) {
    transform: translateY(-3px);
    color: inherit;
    border-color: rgba(0, 169, 199, 0.32);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.startup-dashboard-quick-actions .dashboard-invite-role.is-disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.startup-dashboard-quick-actions .dashboard-invite-icon,
.startup-dashboard-quick-actions .dashboard-invite-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #008db0;
    background: #e2f8fc;
}

.startup-dashboard-quick-actions .dashboard-invite-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 1.65rem;
    box-shadow: 0 16px 30px rgba(0, 169, 199, 0.12);
}

.startup-dashboard-quick-actions .dashboard-invite-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.startup-dashboard-quick-actions .dashboard-invite-role[data-tone="blue"] .dashboard-invite-icon {
    color: #0369a1;
    background: #e0f2fe;
}

.startup-dashboard-quick-actions .dashboard-invite-role[data-tone="mint"] .dashboard-invite-icon {
    color: #087f5b;
    background: #dff7ec;
}

.startup-dashboard-quick-actions .dashboard-invite-role[data-tone="amber"] .dashboard-invite-icon {
    color: #b45309;
    background: #fff2d7;
}

.startup-dashboard-quick-actions .dashboard-invite-role[data-tone="navy"] .dashboard-invite-icon {
    color: #1d4ed8;
    background: #dce8ff;
}

.startup-dashboard-quick-actions .dashboard-invite-copy {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.startup-dashboard-quick-actions .dashboard-invite-eyebrow {
    color: #0088a8;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.startup-dashboard-quick-actions .dashboard-invite-title {
    color: #101828;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.25;
}

.startup-dashboard-quick-actions .dashboard-invite-description {
    display: -webkit-box;
    overflow: hidden;
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.startup-team-request-modal {
    border: 1px solid rgba(0, 169, 199, 0.18);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.startup-team-request-modal .modal-header,
.startup-team-request-modal .modal-footer {
    border-color: rgba(14, 165, 233, 0.12);
}

.startup-team-request-modal .form-control {
    border: 0;
    border-bottom: 1px solid rgba(102, 112, 133, 0.28);
    border-radius: 0;
    box-shadow: none;
}

.startup-team-request-modal .form-control:focus {
    border-color: #00a6c8;
    box-shadow: 0 8px 18px rgba(0, 166, 200, 0.08);
}

.startup-update-dropzone {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    min-height: 7rem;
    padding: 1.05rem;
    border: 1.5px dashed rgba(0, 166, 200, 0.38);
    border-radius: 1rem;
    cursor: pointer;
    background:
        linear-gradient(135deg, rgba(240, 253, 255, 0.96), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at 100% 0%, rgba(0, 166, 200, 0.12), transparent 32%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.startup-update-dropzone:hover {
    border-color: rgba(0, 166, 200, 0.72);
    box-shadow: 0 18px 42px rgba(0, 166, 200, 0.13);
    transform: translateY(-0.08rem);
}

.startup-update-dropzone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.startup-update-dropzone-icon {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 1rem;
    color: #008faf;
    font-size: 1.45rem;
    background: rgba(0, 166, 200, 0.13);
}

.startup-update-dropzone-copy {
    display: grid;
    gap: 0.28rem;
}

.startup-update-dropzone-copy strong {
    color: #101828;
    font-weight: 850;
}

.startup-update-dropzone-copy em,
.startup-update-selected-file {
    color: #667085;
    font-style: normal;
    font-size: 0.9rem;
}

.startup-update-selected-file {
    display: inline-flex;
    margin-top: 0.55rem;
    font-weight: 700;
}

.startup-dashboard-update-card {
    position: relative;
    min-height: 178px;
    padding: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.5rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 253, 0.92)),
        radial-gradient(circle at top right, rgba(0, 184, 212, 0.1), transparent 14rem);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.startup-dashboard-update-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #00b8d4, #006f9f);
}

.startup-dashboard-update-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 184, 212, 0.26);
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.11);
}

.startup-dashboard-update-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    color: #008faf;
    font-size: 0.8rem;
    font-weight: 800;
}

.startup-dashboard-update-card h3 {
    margin: 0 0 0.55rem;
    color: #101828;
    font-size: 1.08rem;
    font-weight: 800;
}

.startup-dashboard-update-card p {
    margin: 0;
    color: #667085;
    line-height: 1.65;
}

.startup-dashboard-knowledge-section {
    position: relative;
    isolation: isolate;
    padding: 1.4rem;
    border: 1px solid rgba(8, 145, 178, 0.12);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(0, 184, 212, 0.12), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 254, 0.86));
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.startup-dashboard-knowledge-section::before {
    content: "";
    position: absolute;
    inset: auto -6rem -9rem auto;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(32, 201, 151, 0.12);
    z-index: -1;
}

.startup-dashboard-knowledge-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.startup-dashboard-knowledge-head h2,
.startup-dashboard-blog-cta h2 {
    margin: 0.55rem 0 0;
    color: #0f172a;
    font-weight: 800;
}

.startup-dashboard-knowledge-head p,
.startup-dashboard-blog-cta p {
    max-width: 680px;
    margin: 0.45rem 0 0;
    color: #64748b;
    line-height: 1.65;
}

.startup-dashboard-knowledge-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.72rem;
    border: 1px solid rgba(0, 184, 212, 0.18);
    border-radius: 999px;
    color: #0891b2;
    background: rgba(0, 184, 212, 0.1);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.startup-dashboard-knowledge-view,
.startup-dashboard-blog-cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.72rem 1.05rem;
    border-radius: 999px;
    color: #ffffff;
    background: #101828;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.18);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.startup-dashboard-knowledge-view:hover,
.startup-dashboard-blog-cta > a:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: #0891b2;
    box-shadow: 0 18px 42px rgba(8, 145, 178, 0.22);
}

.startup-dashboard-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.startup-dashboard-knowledge-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    color: inherit;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.startup-dashboard-knowledge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 145, 178, 0.24);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
}

.startup-dashboard-knowledge-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.14), rgba(16, 24, 40, 0.08));
}

.startup-dashboard-knowledge-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.startup-dashboard-knowledge-card:hover .startup-dashboard-knowledge-media img {
    transform: scale(1.04);
}

.startup-dashboard-knowledge-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #0891b2;
    font-size: 2rem;
}

.startup-dashboard-knowledge-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem;
}

.startup-dashboard-knowledge-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.65rem;
    color: #667085;
    font-size: 0.75rem;
    font-weight: 700;
}

.startup-dashboard-knowledge-title {
    color: #101828;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.startup-dashboard-knowledge-summary {
    display: -webkit-box;
    overflow: hidden;
    color: #667085;
    font-size: 0.85rem;
    font-style: normal;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.startup-dashboard-knowledge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: auto;
}

.startup-dashboard-knowledge-tags span {
    display: inline-flex;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    color: #0e7490;
    background: rgba(0, 184, 212, 0.1);
    font-size: 0.68rem;
    font-weight: 800;
}

.startup-dashboard-knowledge-read {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin-top: 0.2rem;
    color: #0891b2;
    font-size: 0.82rem;
    font-weight: 800;
}

.startup-dashboard-knowledge-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
    margin-top: 1rem;
}

.startup-dashboard-knowledge-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(8, 145, 178, 0.18);
    border-radius: 50%;
    color: #0891b2;
    background: rgba(255, 255, 255, 0.86);
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.startup-dashboard-knowledge-control:hover {
    transform: translateY(-1px);
    color: #ffffff;
    background: #0891b2;
}

.startup-dashboard-blog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(8, 145, 178, 0.14);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 92% 12%, rgba(32, 201, 151, 0.14), transparent 14rem),
        linear-gradient(135deg, #ffffff 0%, #edfafd 100%);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
}

.startup-dashboard-blog-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 1rem;
    color: #0088a8;
    background: rgba(0, 184, 212, 0.12);
    font-size: 1.45rem;
}

.blog-submit-page {
    min-height: calc(100vh - 82px);
    padding: 3rem 0 4rem;
    background:
        radial-gradient(circle at 14% 12%, rgba(0, 184, 212, 0.14), transparent 28rem),
        linear-gradient(180deg, #f8fcfd 0%, #ffffff 70%);
}

.blog-submit-shell {
    max-width: 1040px;
    margin: 0 auto;
}

.blog-submit-hero {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-submit-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(0, 184, 212, 0.22);
    border-radius: 999px;
    color: #0098ba;
    background: rgba(0, 184, 212, 0.1);
    font-size: 0.82rem;
    font-weight: 700;
}

.blog-submit-title {
    margin: 1rem auto 0;
    color: #101828;
    font-size: clamp(2rem, 3vw, 3.15rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
}

.blog-submit-copy {
    max-width: 700px;
    margin: 1rem auto 0;
    color: #667085;
    line-height: 1.75;
}

.blog-submit-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.blog-submit-card .form-label {
    color: #101828;
    font-weight: 700;
}

.blog-submit-card .form-control {
    padding-left: 0;
    padding-right: 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.blog-submit-card .form-control:focus {
    border-color: #00a6c8;
    background: transparent;
    box-shadow: 0 8px 0 -7px rgba(0, 184, 212, 0.45);
}

.blog-upload-dropzone {
    position: relative;
    display: flex;
    min-height: 176px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 1.15rem;
    border: 1px dashed rgba(0, 143, 180, 0.34);
    border-radius: 0.75rem;
    color: #344054;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 184, 212, 0.1), transparent 9rem),
        rgba(248, 252, 253, 0.72);
    cursor: pointer;
    text-align: center;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.blog-upload-dropzone:hover,
.blog-upload-dropzone.is-dragover {
    transform: translateY(-2px);
    border-color: #00a6c8;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 184, 212, 0.16), transparent 9rem),
        rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(0, 143, 180, 0.12);
}

.blog-upload-dropzone.has-file {
    border-color: rgba(0, 166, 200, 0.46);
    border-style: solid;
}

.blog-upload-dropzone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.blog-upload-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    color: #008faf;
    background: rgba(0, 184, 212, 0.12);
    font-size: 1.55rem;
}

.blog-upload-title {
    color: #101828;
    font-size: 0.98rem;
    font-weight: 800;
}

.blog-upload-copy {
    color: #667085;
    font-size: 0.84rem;
    line-height: 1.4;
}

.blog-upload-file {
    max-width: 100%;
    margin-top: 0.25rem;
    padding: 0.28rem 0.62rem;
    overflow: hidden;
    border-radius: 999px;
    color: #0f5f73;
    background: rgba(0, 184, 212, 0.1);
    font-size: 0.78rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.65rem;
    border: 1px solid #d0d5dd;
    border-bottom: 0;
    border-radius: 0.5rem 0.5rem 0 0;
    background: #f8fafc;
}

.blog-editor-toolbar button {
    display: inline-flex;
    width: 36px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 0.5rem;
    color: #344054;
    background: #ffffff;
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.blog-editor-toolbar button:hover {
    transform: translateY(-1px);
    color: #008faf;
    background: rgba(0, 184, 212, 0.1);
}

.blog-rich-editor {
    min-height: 280px;
    padding: 1rem;
    overflow: auto;
    border: 1px solid #d0d5dd;
    border-radius: 0 0 0.5rem 0.5rem;
    background: #ffffff;
    line-height: 1.7;
    outline: none;
}

.blog-rich-editor:focus {
    border-color: rgba(0, 184, 212, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(0, 184, 212, 0.12);
}

.blog-submit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-submit-primary,
.blog-submit-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
}

.blog-submit-primary {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #00a6c8, #006f9f);
    box-shadow: 0 18px 34px rgba(0, 143, 180, 0.22);
}

.blog-submit-secondary {
    border: 1px solid rgba(0, 143, 180, 0.18);
    color: #0f5f73;
    background: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.dashboard-feed-shell {
    position: relative;
}

.dashboard-feed-button {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 184, 212, 0.24);
    border-radius: 50%;
    color: #0891b2;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgba(0, 184, 212, 0.13), rgba(8, 145, 178, 0.06));
    box-shadow: 0 14px 32px rgba(8, 145, 178, 0.14);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-feed-button:hover,
.dashboard-feed-button[aria-expanded="true"] {
    transform: translateY(-2px);
    border-color: rgba(0, 184, 212, 0.55);
    box-shadow: 0 18px 42px rgba(8, 145, 178, 0.2);
}

.dashboard-feed-button i {
    font-size: 1.18rem;
}

.dashboard-feed-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    background: #ef4444;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 15px;
    text-align: center;
}

.dashboard-feed-pulse {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: dashboardFeedPulse 1.8s ease-out infinite;
}

.dashboard-feed-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 1080;
    width: min(390px, calc(100vw - 24px));
    max-height: min(620px, calc(100vh - 110px));
    overflow: hidden;
    border: 1px solid rgba(8, 145, 178, 0.18);
    border-radius: 1.4rem;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
    transform: translateY(12px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dashboard-feed-shell.is-open .dashboard-feed-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dashboard-feed-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0, 184, 212, 0.16), transparent 12rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(248, 253, 255, 0.76));
    pointer-events: none;
}

.dashboard-feed-head,
.dashboard-feed-list,
.dashboard-feed-footer {
    position: relative;
    z-index: 1;
}

.dashboard-feed-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.2rem 0.85rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.dashboard-feed-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.28rem;
    color: #0891b2;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-feed-title {
    margin: 0;
    color: #101828;
    font-size: 1.05rem;
    font-weight: 800;
}

.dashboard-feed-subtitle {
    margin: 0.25rem 0 0;
    color: #667085;
    font-size: 0.82rem;
    line-height: 1.45;
}

.dashboard-feed-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.dashboard-feed-count,
.dashboard-feed-mark-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 184, 212, 0.2);
    color: #0e7490;
    background: rgba(0, 184, 212, 0.12);
    font-weight: 800;
}

.dashboard-feed-count {
    min-width: 34px;
    height: 28px;
    border-radius: 999px;
    font-size: 0.78rem;
}

.dashboard-feed-mark-read {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px rgba(8, 145, 178, 0.1);
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.dashboard-feed-mark-read:hover {
    transform: translateY(-1px);
    color: #ffffff;
    background: #0891b2;
}

.dashboard-feed-shell.has-no-unread .dashboard-feed-badge,
.dashboard-feed-shell.has-no-unread .dashboard-feed-pulse,
.dashboard-feed-shell.has-no-unread .dashboard-feed-item::after {
    display: none;
}

.dashboard-feed-list {
    max-height: 430px;
    padding: 0.65rem;
    overflow-y: auto;
}

.dashboard-feed-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 1.05rem;
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.dashboard-feed-item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.dashboard-feed-item.is-unread::after {
    content: "";
    position: absolute;
    top: 1rem;
    right: 0.9rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0891b2;
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.dashboard-feed-avatar {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.18);
}

.dashboard-feed-item[data-tone="cyan"] .dashboard-feed-avatar {
    background: linear-gradient(135deg, #00b8d4, #0891b2);
}

.dashboard-feed-item[data-tone="mint"] .dashboard-feed-avatar {
    background: linear-gradient(135deg, #20c997, #0f766e);
}

.dashboard-feed-item[data-tone="blue"] .dashboard-feed-avatar {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.dashboard-feed-item-title,
.dashboard-feed-preview {
    display: block;
}

.dashboard-feed-item-title {
    padding-right: 0.8rem;
    color: #101828;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.dashboard-feed-preview {
    margin-top: 0.28rem;
    color: #667085;
    font-size: 0.8rem;
    line-height: 1.5;
}

.dashboard-feed-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.55rem;
}

.dashboard-feed-type {
    display: inline-flex;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    color: #0e7490;
    background: rgba(0, 184, 212, 0.1);
    font-size: 0.68rem;
    font-weight: 800;
}

.dashboard-feed-time {
    color: #98a2b3;
    font-size: 0.72rem;
    font-weight: 700;
}

.dashboard-feed-footer {
    padding: 0.8rem 1.1rem 1.05rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    color: #667085;
    font-size: 0.78rem;
    line-height: 1.45;
}

@keyframes dashboardFeedPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.startup-profile-hero {
    margin-bottom: 1.5rem;
}

.startup-profile-hero-copy {
    max-width: 760px;
}

.startup-profile-review-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin: 1rem 0;
}

.startup-profile-review-label {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.startup-profile-review-strip strong {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.42rem 0.7rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 999px;
    background: rgba(224, 247, 252, 0.78);
    color: #007f9e;
    font-size: 0.78rem;
}

.startup-profile-review-strip .is-published,
.startup-profile-review-strip .is-approved {
    border-color: rgba(16, 185, 129, 0.22);
    background: rgba(209, 250, 229, 0.8);
    color: #047857;
}

.startup-profile-review-strip .is-pending {
    border-color: rgba(245, 158, 11, 0.24);
    background: rgba(254, 243, 199, 0.86);
    color: #a16207;
}

.startup-profile-review-strip .is-rejected {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(254, 226, 226, 0.8);
    color: #b91c1c;
}

.startup-profile-progress-card {
    min-width: 230px;
    padding: 1rem;
    text-align: center;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(14, 165, 233, 0.12);
}

.startup-profile-progress-card p {
    margin: 0.75rem 0 0;
    color: #64748b;
    font-weight: 700;
}

.startup-semi-progress {
    --progress: 0;
    position: relative;
    width: 180px;
    height: 96px;
    margin: 0 auto;
    overflow: hidden;
}

.startup-semi-progress::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 180px 180px 0 0;
    background: conic-gradient(from 270deg at 50% 100%, #00a6c8 calc(var(--progress) * 1.8deg), #dff7fb 0 180deg, transparent 0);
}

.startup-semi-progress::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 78px;
    border-radius: 160px 160px 0 0;
    background: #ffffff;
}

.startup-semi-progress-inner {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0.25rem;
    display: grid;
    place-items: center;
}

.startup-semi-progress-inner strong {
    color: #0f172a;
    font-size: 2rem;
    line-height: 1;
}

.startup-semi-progress-inner span {
    color: #00a6c8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.startup-profile-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 1.6rem;
}

.startup-profile-stepper {
    --startup-step-track-inset: 3.5rem;
    --startup-step-progress: 0;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.8rem 0.35rem 1.15rem;
    overflow: visible;
}

.startup-profile-stepper::before,
.startup-profile-stepper::after {
    content: "";
    position: absolute;
    top: 2.7rem;
    left: var(--startup-step-track-inset);
    right: var(--startup-step-track-inset);
    height: 0.25rem;
    border-radius: 999px;
    pointer-events: none;
}

.startup-profile-stepper::before {
    background: rgba(148, 163, 184, 0.22);
}

.startup-profile-stepper::after {
    background: linear-gradient(90deg, #00a6c8, #14b8a6);
    box-shadow: 0 0 1.1rem rgba(6, 182, 212, 0.22);
    transform: scaleX(var(--startup-step-progress));
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.startup-profile-stepper button {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 54px;
    grid-template-areas:
        "icon"
        "number";
    align-items: center;
    justify-items: center;
    column-gap: 0.65rem;
    min-width: 76px;
    min-height: 72px;
    border: 1px solid transparent;
    border-radius: 1.1rem;
    padding: 0.35rem 0.7rem;
    color: #475569;
    text-align: center;
    background: transparent;
    transition: all 0.2s ease;
}

.startup-profile-stepper button i {
    grid-area: icon;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #0088a8;
    font-size: 1.28rem;
    background: rgba(6, 182, 212, 0.12);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.startup-profile-stepper button > span {
    grid-area: number;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.startup-profile-stepper button > strong {
    grid-area: title;
    display: none;
    color: inherit;
    font-size: 0.92rem;
    line-height: 1.2;
}

.startup-profile-stepper button.active {
    grid-template-columns: 54px minmax(124px, 1fr);
    grid-template-areas:
        "icon number"
        "icon title";
    justify-items: start;
    min-width: 228px;
    text-align: left;
    border-color: rgba(6, 182, 212, 0.24);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(6, 182, 212, 0.12);
}

.startup-profile-stepper button.active > strong {
    display: block;
}

.startup-profile-stepper button.active,
.startup-profile-stepper button:hover {
    color: #0f172a;
    transform: translateY(-1px);
}

.startup-profile-stepper button.active i,
.startup-profile-stepper button:hover i,
.startup-profile-stepper button.is-complete i {
    color: #ffffff;
    background: linear-gradient(135deg, #00a6c8, #06b6d4);
    transform: scale(1.04);
}

.startup-profile-stepper button.is-complete > span {
    color: #0088a8;
}

.startup-profile-panels {
    min-height: 520px;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.startup-profile-panel {
    display: none;
    padding: 1.5rem;
}

.startup-profile-panel.active {
    display: block;
    animation: startupPanelIn 0.22s ease both;
}

.startup-profile-panel-head span,
.startup-profile-placeholder span {
    color: #00a6c8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.startup-profile-panel-head h2,
.startup-profile-placeholder h2 {
    margin: 0.2rem 0;
    font-weight: 800;
}

.startup-profile-panel-head p,
.startup-profile-placeholder p {
    color: #64748b;
}

.startup-profile-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 1rem;
    margin-top: 1.4rem;
}

.startup-profile-field {
    display: grid;
    align-content: start;
    gap: 0.45rem;
}

.startup-profile-field.is-wide {
    grid-column: 1 / -1;
}

.startup-profile-field span {
    color: #475569;
    font-weight: 700;
}

.startup-profile-field input {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-bottom: 1px solid rgba(100, 116, 139, 0.28);
    padding: 0.7rem 0;
    color: #0f172a;
    background: transparent;
    font-weight: 600;
}

.startup-profile-field textarea,
.startup-profile-field select {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-bottom: 1px solid rgba(100, 116, 139, 0.28);
    padding: 0.7rem 0;
    color: #0f172a;
    background: transparent;
    font-weight: 600;
    resize: vertical;
}

.startup-profile-field select {
    color-scheme: light;
    cursor: pointer;
}

.startup-profile-field select option {
    color: #0f172a;
    background: #ffffff;
}

.startup-profile-field select option:checked {
    color: #006d7f;
    background: #dff7fb;
}

.startup-profile-field textarea:focus,
.startup-profile-field select:focus,
.startup-profile-field input:focus {
    border-color: #00a6c8;
    outline: none;
}

.startup-profile-field input[type="number"]::-webkit-outer-spin-button,
.startup-profile-field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.startup-profile-field input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.startup-profile-field small {
    color: #0e7490;
    font-weight: 600;
}

.startup-profile-field input:disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.startup-conditional-block {
    margin-top: 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(240, 253, 255, 0.86), rgba(255, 255, 255, 0.92));
}

.startup-option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.25rem 0 0.75rem;
}

.startup-option-row label,
.startup-chip-options label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: #334155;
    font-weight: 700;
}

.startup-option-row label {
    min-height: 36px;
    padding: 0.42rem 0.7rem;
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 999px;
    background: rgba(240, 253, 255, 0.72);
}

.startup-option-row input,
.startup-chip-options input {
    width: auto;
    min-height: auto;
    accent-color: #00a6c8;
}

.startup-optout-check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    min-height: 36px;
    margin-top: 0.1rem;
    padding: 0.42rem 0.7rem;
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 999px;
    color: #334155;
    background: rgba(240, 253, 255, 0.72);
    cursor: pointer;
    font-weight: 700;
}

.startup-optout-check input {
    width: auto;
    min-height: auto;
    accent-color: #00a6c8;
}

.startup-chip-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 0.35rem;
}

.startup-chip-options label {
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.08);
}

.startup-profile-field .ts-wrapper .ts-control {
    min-height: 46px;
    border: 0;
    border-bottom: 1px solid rgba(100, 116, 139, 0.28);
    border-radius: 0;
    padding: 0.45rem 0;
    background: transparent;
    box-shadow: none;
}

.startup-profile-field .ts-wrapper.focus .ts-control {
    border-color: #00a6c8;
    box-shadow: none;
}

.startup-profile-field .ts-wrapper.multi .ts-control > div {
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    color: #007f9f;
    font-weight: 650;
    background: rgba(6, 182, 212, 0.14);
}

.startup-profile-field .ts-wrapper.plugin-remove_button .item .remove {
    border-left-color: rgba(0, 127, 159, 0.16);
    color: #007f9f;
}

.startup-profile-field .ts-dropdown {
    border-color: rgba(14, 165, 233, 0.2);
    border-radius: 0.9rem;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.startup-profile-field .ts-dropdown .active {
    color: #006d7f;
    background: rgba(6, 182, 212, 0.1);
}

.startup-slider-card {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 1rem;
    background: rgba(240, 253, 255, 0.65);
}

.startup-slider-card input[type="range"] {
    width: 100%;
    accent-color: #00a6c8;
}

.startup-slider-card div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.startup-slider-card strong {
    color: #0088a8;
    font-size: 1.35rem;
}

.startup-slider-card span {
    color: #64748b;
    font-weight: 700;
}

.startup-founder-count-picker {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 1rem;
    background: rgba(240, 253, 255, 0.65);
}

.startup-founder-avatar-row {
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.startup-founder-avatar-row button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 50%;
    color: #94a3b8;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.startup-founder-avatar-row button:hover,
.startup-founder-avatar-row button.is-selected {
    color: #ffffff;
    background: linear-gradient(135deg, #00a6c8, #06b6d4);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.22);
    transform: translateY(-2px);
}

.startup-founder-avatar-row button i {
    font-size: 1.25rem;
}

.startup-founder-count-summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.startup-founder-count-summary strong {
    color: #0088a8;
    font-size: 1.35rem;
}

.startup-founder-count-summary span {
    color: #64748b;
    font-weight: 700;
}

.startup-linkedin-input {
    display: grid;
    grid-template-columns: 34px auto minmax(120px, 1fr);
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(100, 116, 139, 0.28);
}

.startup-linkedin-input i {
    color: #0a66c2;
    font-size: 1.2rem;
}

.startup-linkedin-input span {
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.startup-linkedin-input input {
    min-height: 42px;
    border-bottom: 0;
}

.startup-founder-list,
.startup-milestone-list {
    display: grid;
    gap: 1rem;
}

.startup-founder-card,
.startup-milestone-card {
    position: relative;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.15rem;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.startup-founder-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.startup-founder-card-head strong {
    color: #0f172a;
    font-size: 1.05rem;
}

.startup-founder-card-head span {
    color: #00a6c8;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.startup-founder-card-head button,
.startup-remove-floating {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #64748b;
    background: rgba(148, 163, 184, 0.14);
}

.startup-upload-zone {
    display: grid;
    place-items: center;
    gap: 0.45rem;
    min-height: 160px;
    padding: 1.25rem;
    border: 1.5px dashed rgba(0, 166, 200, 0.45);
    border-radius: 1.15rem;
    color: #475569;
    text-align: center;
    background: rgba(240, 253, 255, 0.72);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.startup-upload-zone:hover {
    border-color: #00a6c8;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 182, 212, 0.12);
}

.startup-upload-zone input {
    display: none;
}

.startup-upload-zone i {
    color: #00a6c8;
    font-size: 2rem;
}

.startup-upload-zone strong {
    color: #0f172a;
}

.startup-upload-zone small {
    max-width: 620px;
    color: #64748b;
}

.startup-upload-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    max-width: 100%;
    padding: 0.42rem 0.75rem;
    border: 1px solid rgba(0, 166, 200, 0.18);
    border-radius: 999px;
    color: #0b7490;
    font-size: 0.82rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    background: rgba(0, 166, 200, 0.1);
}

.startup-upload-status i {
    flex: 0 0 auto;
    font-size: 0.95rem;
}

.startup-upload-status.has-file {
    color: #047857;
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.1);
}

.startup-upload-status a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.startup-upload-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.startup-upload-preview:empty {
    display: none;
}

.startup-upload-preview img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid rgba(0, 166, 200, 0.22);
    border-radius: 14px;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.startup-upload-zone.is-large {
    min-height: 220px;
}

.startup-publish-payment-page {
    display: grid;
    place-items: center;
    min-height: min(720px, 78vh);
}

.startup-publish-payment-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    width: min(100%, 980px);
    padding: clamp(1.4rem, 4vw, 3rem);
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at 82% 8%, rgba(6, 182, 212, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(240, 253, 255, 0.95), rgba(255, 255, 255, 0.98));
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.startup-publish-payment-copy h1 {
    margin: 0.55rem 0 0.75rem;
    color: #0f172a;
    font-size: clamp(1.9rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.startup-publish-payment-copy p {
    max-width: 560px;
    margin: 0;
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.7;
}

.startup-publish-payment-summary {
    display: grid;
    gap: 0.42rem;
    padding: 1.35rem;
    border: 1px solid rgba(0, 166, 200, 0.16);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.84);
}

.startup-publish-payment-summary span,
.startup-publish-payment-summary small {
    color: #64748b;
}

.startup-publish-payment-summary strong {
    color: #008eb1;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
}

.startup-publish-payment-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    grid-column: 1 / -1;
    flex-wrap: wrap;
}

.startup-publish-coupon-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    grid-column: 1 / -1;
    flex-wrap: wrap;
}

.startup-publish-coupon-toggle small {
    color: #64748b;
}

.startup-publish-coupon-form {
    display: grid;
    gap: 0.65rem;
    grid-column: 1 / -1;
    padding: 1rem;
    border: 1px solid rgba(0, 166, 200, 0.14);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.72);
}

.startup-publish-coupon-form[hidden] {
    display: none;
}

.startup-publish-coupon-form label {
    color: #0f172a;
    font-weight: 800;
}

.startup-publish-coupon-form > div {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.startup-publish-coupon-form input {
    flex: 1 1 220px;
    min-height: 48px;
    padding: 0 1rem;
    border: 1px solid rgba(0, 166, 200, 0.22);
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 800;
    text-transform: uppercase;
    outline: none;
}

.startup-publish-coupon-form input:focus {
    border-color: rgba(0, 166, 200, 0.58);
    box-shadow: 0 0 0 4px rgba(0, 166, 200, 0.1);
}

@media (max-width: 767px) {
    .startup-publish-payment-page {
        min-height: auto;
    }

    .startup-publish-payment-card {
        grid-template-columns: 1fr;
        border-radius: 1.25rem;
    }
}

.startup-timeline-builder {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.13), transparent 32%),
        linear-gradient(135deg, rgba(240, 253, 255, 0.78), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(14, 165, 233, 0.14);
}

.startup-milestone-list {
    position: relative;
    padding-left: 1.5rem;
}

.startup-milestone-list::before {
    content: "";
    position: absolute;
    top: 0.4rem;
    bottom: 0.4rem;
    left: 0.35rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 166, 200, 0.1), rgba(0, 166, 200, 0.65), rgba(16, 185, 129, 0.18));
}

.startup-milestone-dot {
    position: absolute;
    left: -1.5rem;
    top: 1.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00a6c8;
    box-shadow: 0 0 0 6px rgba(0, 166, 200, 0.12);
}

.startup-milestone-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.startup-milestone-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #00a6c8, #10b981);
}

.startup-milestone-card:hover {
    transform: translateX(4px);
    border-color: rgba(0, 166, 200, 0.28);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.startup-milestone-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-left: 0.3rem;
}

.startup-milestone-card-head span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    color: #007f9f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(6, 182, 212, 0.12);
}

.startup-milestone-card-head strong {
    color: #475569;
    font-size: 0.9rem;
}

.startup-remove-floating {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
}

.startup-secondary-action,
.startup-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.startup-secondary-action {
    border: 1px solid rgba(0, 166, 200, 0.28);
    color: #0088a8;
    background: rgba(6, 182, 212, 0.08);
}

.startup-primary-action {
    border: 1px solid #00a6c8;
    color: #ffffff;
    background: linear-gradient(90deg, #00a6c8, #06b6d4);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.2);
}

.startup-secondary-action:hover,
.startup-primary-action:hover {
    transform: translateY(-2px);
}

.startup-profile-footer-nav {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem -1.5rem -1.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 0 0 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
}

.startup-profile-footer-nav > div {
    display: flex;
    gap: 0.75rem;
}

.startup-status-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.6rem;
}

.startup-status-toggle label {
    position: relative;
    width: 58px;
    height: 30px;
    cursor: pointer;
}

.startup-status-toggle.is-readonly label {
    cursor: default;
}

.startup-status-toggle input {
    position: absolute;
    opacity: 0;
}

.startup-status-toggle b {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #cbd5e1;
}

.startup-status-toggle b::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.2s ease;
}

.startup-status-toggle input:checked + b {
    background: #10b981;
}

.startup-status-toggle input:checked + b::after {
    transform: translateX(28px);
}

.startup-status-toggle span {
    color: #0f172a;
    font-weight: 800;
}

.startup-status-toggle .is-muted {
    color: #64748b;
}

.startup-system-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.65rem;
}

.startup-system-badges span {
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    color: #007f9f;
    background: rgba(6, 182, 212, 0.12);
    font-weight: 800;
}

.startup-publish-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 166, 200, 0.1), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(0, 166, 200, 0.18);
}

.startup-publish-panel h3 {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
}

.startup-publish-panel p {
    margin: 0.35rem 0 0;
    color: #64748b;
}

.startup-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.startup-profile-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding-top: 0.25rem;
}

.startup-profile-chip-list span {
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    color: #007f9f;
    background: rgba(6, 182, 212, 0.12);
}

.startup-profile-chip-list em {
    color: #94a3b8;
}

.startup-profile-placeholder {
    display: grid;
    place-items: center;
    min-height: 440px;
    text-align: center;
}

.startup-profile-placeholder i {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin-bottom: 1rem;
    border-radius: 1.5rem;
    color: #0088a8;
    font-size: 2rem;
    background: rgba(6, 182, 212, 0.12);
}

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

@media (max-width: 1199px) {
    .startup-profile-stepper {
        flex-wrap: wrap;
    }

    .startup-profile-stepper::before,
    .startup-profile-stepper::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .requestor-startup-main {
        overflow-x: hidden;
    }

    .startup-dashboard-page {
        margin-top: -0.35rem;
    }

    .startup-dashboard-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .startup-dashboard-hero .btn {
        align-self: flex-start;
    }

    .startup-profile-page {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .startup-profile-hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .startup-profile-progress-card {
        width: 100%;
    }

    .startup-dashboard-ecosystem {
        margin-top: 1.5rem;
    }

    .blog-submit-shell {
        width: min(100%, 820px);
    }

    .requestor-browse-filters.sticky-top {
        position: static;
        top: auto !important;
    }

    .startup-dashboard-knowledge-head,
    .startup-dashboard-blog-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .startup-dashboard-knowledge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .startup-dashboard-updates-grid,
    .startup-dashboard-updates-grid[data-count="1"],
    .startup-dashboard-updates-grid[data-count="2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .startup-dashboard-quick-panel,
    .startup-dashboard-quick-panel:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .startup-dashboard-quick-panel:nth-child(even) .startup-dashboard-quick-copy,
    .startup-dashboard-quick-panel:nth-child(even) .startup-dashboard-quick-visual {
        order: initial;
    }

    .startup-dashboard-quick-visual {
        min-height: 168px;
    }
}

@media (max-width: 767px) {
    .requestor-startup-main {
        padding-top: 0.55rem;
    }

    .startup-dashboard-page {
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    .startup-profile-page {
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    .startup-profile-alert {
        min-height: auto;
        padding: 0.9rem 2.8rem 0.9rem 0.95rem;
    }

    .startup-dashboard-hero {
        gap: 1rem;
        padding: 1.05rem;
    }

    .startup-profile-hero {
        padding: 1rem;
    }

    .startup-dashboard-hero h1 {
        font-size: 1.7rem;
    }

    .startup-dashboard-hero-stats {
        margin-top: 1rem;
    }

    .startup-dashboard-ecosystem {
        margin-top: 1.25rem;
    }

    .startup-dashboard-section-head {
        margin-bottom: 0.95rem;
    }

    .startup-dashboard-quick-panel {
        padding: 1rem;
    }

    .startup-dashboard-quick-visual {
        min-height: 132px;
    }

    .blog-submit-page {
        padding-inline: 0.85rem;
    }

    .blog-submit-card {
        padding: 1rem;
    }

    .requestor-browse-toolbar {
        align-items: stretch !important;
        flex-direction: column;
    }

    .requestor-browse-search {
        width: 100%;
        max-width: none !important;
    }

    .requestor-detail-page {
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    .requestor-detail-identity {
        align-items: flex-start !important;
    }

    .browse-page aside,
    .browse-page section {
        min-width: 0;
    }

    .startup-profile-alert,
    .startup-dashboard-hero,
    .startup-profile-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .startup-profile-alert-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .startup-dashboard-grid,
    .startup-profile-field-grid {
        grid-template-columns: 1fr;
    }

    .startup-profile-shell {
        padding: 0.95rem;
        border-radius: 1.15rem;
    }

    .startup-profile-stepper {
        gap: 0.55rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.3rem;
        scrollbar-width: thin;
    }

    .startup-profile-stepper button {
        flex: 0 0 auto;
    }

    .startup-profile-alert-action {
        width: 100%;
        justify-content: center;
    }

    .startup-profile-footer-nav,
    .startup-publish-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .startup-profile-footer-nav > div,
    .startup-profile-actions {
        flex-direction: column;
        width: 100%;
    }

    .startup-secondary-action,
    .startup-primary-action {
        width: 100%;
    }

    .startup-dashboard-knowledge-section {
        padding: 1rem;
        border-radius: 1.15rem;
    }

    .startup-dashboard-knowledge-grid {
        grid-template-columns: 1fr;
    }

    .startup-dashboard-stat-grid,
    .startup-dashboard-updates-grid,
    .startup-dashboard-updates-grid[data-count="1"],
    .startup-dashboard-updates-grid[data-count="2"] {
        grid-template-columns: 1fr;
    }

    .startup-dashboard-knowledge-view,
    .startup-dashboard-blog-cta > a,
    .blog-submit-actions > * {
        width: 100%;
    }

    .startup-dashboard-knowledge-controls {
        justify-content: center;
    }

    .startup-dashboard-hero-stats {
        gap: 0.7rem;
    }

    .startup-dashboard-hero-stat {
        width: 100%;
    }

    .startup-dashboard-quick-copy h3,
    .startup-dashboard-section-head h2,
    .startup-dashboard-knowledge-head h2,
    .startup-dashboard-blog-cta h2 {
        font-size: 1.45rem;
    }

    .dashboard-feed-panel {
        position: fixed;
        top: 76px;
        right: 12px;
        left: 12px;
        width: auto;
        max-height: calc(100vh - 96px);
        border-radius: 1.25rem;
        transform-origin: top center;
    }

    .dashboard-feed-list {
        max-height: calc(100vh - 260px);
    }
}

/* Shared SP / SME browse and detail surfaces */
.expert-universe-page,
.expert-detail-page {
    --expert-accent: #08aeca;
    --expert-accent-dark: #0087a2;
    --expert-ink: #101828;
    --expert-muted: #667085;
    --expert-soft: #e8fbff;
    font-family: "Roboto", "Raleway", Arial, sans-serif;
    color: var(--expert-ink);
}

.expert-universe-page *,
.expert-detail-page * {
    font-family: inherit;
}

.expert-universe-page {
    display: grid;
    gap: 1.35rem;
}

.expert-universe-hero,
.expert-filter-shell,
.expert-detail-hero,
.expert-detail-card {
    border: 1px solid rgba(8, 174, 202, 0.2);
    border-radius: 1.65rem;
    background:
        radial-gradient(circle at 85% 4%, rgba(8, 174, 202, 0.18), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7fdff 100%);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.06);
}

.expert-universe-hero {
    position: relative;
    padding: 2.2rem 1.35rem 1.8rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(0, 184, 212, 0.14), transparent 14rem),
        radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.12), transparent 13rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 254, 0.94));
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.expert-universe-hero::before {
    content: "";
    position: absolute;
    inset: -45% auto auto 52%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 184, 212, 0.12), transparent 62%);
    pointer-events: none;
}

.expert-universe-hero > * {
    position: relative;
    z-index: 1;
}

.expert-universe-kicker,
.expert-filter-head span,
.expert-detail-card > span,
.expert-detail-action-card > span {
    display: inline-flex;
    color: var(--expert-accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.expert-universe-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 1.5rem;
    align-items: center;
}

.expert-universe-hero h1 {
    margin: 0.3rem 0 0.65rem;
    color: #101828;
    font-size: clamp(2.25rem, 4.25vw, 4.35rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0;
}

.expert-universe-hero h1 span {
    background: linear-gradient(90deg, #00a6c8, #0e7490, #14b8a6, #006f9f, #00a6c8);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: expertUniverseTitleFlow 4.5s ease-in-out infinite;
}

.expert-universe-hero p {
    max-width: 700px;
    margin: 0;
    color: #5f6f86;
    font-size: 0.98rem;
    line-height: 1.65;
}

.expert-universe-rule {
    width: 86px;
    height: 4px;
    margin: 1.35rem 0 1.6rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--expert-accent), #14b8a6);
    box-shadow: 0 10px 24px rgba(0, 184, 212, 0.24);
}

.expert-universe-stats {
    display: flex;
    flex-wrap: wrap;
    max-width: 760px;
    gap: clamp(1rem, 4vw, 3.4rem);
}

.expert-universe-stats article {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    min-width: 170px;
    padding: 0.35rem 0;
    transition: transform 0.22s ease;
}

.expert-universe-stats article:hover {
    transform: translateY(-2px);
}

.expert-universe-stats i {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.14), rgba(20, 184, 166, 0.1));
    color: #008faf;
    font-size: 1.35rem;
    box-shadow: 0 14px 30px rgba(0, 143, 175, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.expert-universe-stats article:hover i {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 36px rgba(0, 143, 175, 0.2);
}

.expert-universe-stats strong {
    display: block;
    color: #008faf;
    width: max-content;
    max-width: 100%;
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    font-weight: 900;
    line-height: 1.05;
    white-space: nowrap;
}

.expert-universe-stat-copy {
    min-width: 0;
    flex: 0 1 auto;
}

.expert-universe-stats .expert-universe-stat-copy > span {
    color: var(--expert-muted);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
}

.expert-universe-search {
    padding: 1rem;
    border: 1px solid rgba(8, 174, 202, 0.16);
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.82);
}

@keyframes expertUniverseTitleFlow {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.expert-universe-search label,
.expert-filter-group > label,
.expert-filter-row label {
    display: block;
    margin-bottom: 0.55rem;
    color: #344054;
    font-weight: 800;
}

.expert-search-box {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3.3rem;
    padding: 0 0.95rem;
    border: 1px solid rgba(8, 174, 202, 0.28);
    border-radius: 1rem;
    background: #fff;
}

.expert-search-box i {
    color: var(--expert-accent-dark);
    font-size: 1.1rem;
}

.expert-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--expert-ink);
    font: inherit;
}

.expert-search-box button {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: #e7faff;
    color: var(--expert-accent-dark);
}

.expert-filter-shell {
    padding: clamp(1rem, 2.5vw, 1.45rem);
}

.expert-filter-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.expert-filter-head h2 {
    margin: 0.2rem 0 0;
    font-size: 1.55rem;
    font-weight: 800;
}

.expert-filter-toggle,
.expert-primary-btn,
.expert-secondary-btn,
.expert-disabled-btn,
.expert-inline-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.75rem;
    padding: 0.62rem 1.08rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.expert-filter-toggle,
.expert-secondary-btn,
.expert-inline-action {
    border: 1px solid rgba(8, 174, 202, 0.28);
    background: #e9fbff;
    color: var(--expert-accent-dark);
}

.expert-filter-toggle span {
    display: grid;
    place-items: center;
    min-width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: var(--expert-accent);
    color: #fff;
    font-size: 0.8rem;
}

.expert-primary-btn {
    border: 1px solid var(--expert-accent);
    background: var(--expert-accent);
    color: #fff;
    box-shadow: 0 14px 28px rgba(8, 174, 202, 0.22);
}

.expert-primary-btn:hover,
.expert-filter-toggle:hover,
.expert-secondary-btn:hover,
.expert-inline-action:hover {
    transform: translateY(-1px);
}

.expert-primary-btn:hover {
    color: #fff;
    background: var(--expert-accent-dark);
}

.expert-disabled-btn {
    border: 1px solid #d0d5dd;
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.expert-filter-panel {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.25rem;
}

.expert-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.expert-filter-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.expert-filter-chip span {
    display: inline-flex;
    padding: 0.55rem 0.86rem;
    border: 1px solid rgba(8, 174, 202, 0.22);
    border-radius: 999px;
    background: #fff;
    color: #344054;
    font-weight: 700;
}

.expert-filter-chip input:checked + span {
    border-color: var(--expert-accent);
    background: #dff8fd;
    color: var(--expert-accent-dark);
}

.expert-filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.expert-filter-row:has(> div:nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expert-filter-select {
    width: 100%;
    min-height: 3rem;
    border: 0;
    border-bottom: 2px solid rgba(8, 174, 202, 0.35);
    border-radius: 0;
    background: transparent;
    color: var(--expert-ink);
    font: inherit;
    outline: 0;
}

.expert-filter-select[multiple] {
    min-height: 7.5rem;
    padding: 0.5rem;
    border: 1px solid rgba(8, 174, 202, 0.18);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.7);
}

.expert-filter-panel .ts-wrapper {
    font-family: inherit;
}

.expert-filter-panel .ts-control {
    min-height: 3.2rem;
    padding: 0.48rem 0.6rem;
    border: 1px solid rgba(8, 174, 202, 0.24);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.expert-filter-panel .ts-wrapper.focus .ts-control {
    border-color: rgba(8, 174, 202, 0.55);
    box-shadow: 0 0 0 0.18rem rgba(8, 174, 202, 0.12);
}

.expert-filter-panel .ts-control > input {
    color: #667085;
    font-size: 0.95rem;
}

.expert-filter-panel .ts-control .item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.16rem 0.18rem 0.16rem 0;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(8, 174, 202, 0.18);
    border-radius: 999px;
    background: #e9fbff;
    color: #0087a2;
    font-size: 0.84rem;
    font-weight: 800;
}

.expert-filter-panel .ts-control .item .remove {
    border-left: 0;
    color: #0087a2;
    opacity: 0.8;
}

.expert-filter-panel .ts-dropdown {
    z-index: 1055;
    overflow: hidden;
    border: 1px solid rgba(8, 174, 202, 0.2);
    border-radius: 1rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.expert-filter-panel .ts-dropdown .option {
    padding: 0.72rem 0.9rem;
    color: #344054;
    font-weight: 700;
}

.expert-filter-panel .ts-dropdown .active {
    background: #e9fbff;
    color: #0087a2;
}

.expert-filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
}

.expert-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.expert-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(8, 174, 202, 0.18);
    border-radius: 1.35rem;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.expert-card:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 174, 202, 0.38);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.expert-card-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem;
}

.expert-avatar,
.expert-detail-avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(8, 174, 202, 0.25);
    background: #ddf8fc;
    color: var(--expert-accent-dark);
    font-weight: 900;
    text-decoration: none;
}

.expert-avatar {
    width: 4.15rem;
    height: 4.15rem;
    border-radius: 1.15rem;
}

.expert-avatar img,
.expert-detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-card-eyebrow {
    color: var(--expert-accent-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.expert-card h3 {
    margin: 0.18rem 0 0.35rem;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.25;
}

.expert-card h3 a {
    color: var(--expert-ink);
    text-decoration: none;
}

.expert-card p,
.expert-card-muted,
.expert-detail-card p {
    color: var(--expert-muted);
    line-height: 1.6;
}

.expert-card p {
    display: -webkit-box;
    min-height: 3.15rem;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.expert-card-summary {
    display: grid;
    gap: 0.72rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.expert-card-summary div {
    display: grid;
    gap: 0.18rem;
}

.expert-card-summary span {
    color: #008faf;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.expert-card-summary strong {
    color: #101828;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.45;
}

.expert-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.expert-meta-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.66rem;
    border-radius: 999px;
    background: #f2fbfd;
    color: #475467;
    font-size: 0.86rem;
    font-weight: 700;
}

.expert-meta-strip-readable span {
    border-radius: 0.8rem;
    background: #f4fbfd;
    color: #344054;
    font-size: 0.82rem;
}

.expert-card-muted {
    font-size: 0.92rem;
}

.expert-tag-row,
.expert-keyword-row,
.expert-detail-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expert-tag-row span,
.expert-keyword-row span,
.expert-detail-chip-list span,
.expert-detail-chip-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.48rem 0.74rem;
    border-radius: 999px;
    background: #e9fbff;
    color: var(--expert-accent-dark);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.expert-keyword-row span {
    background: #f2f4f7;
    color: #475467;
}

.expert-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: auto;
}

.expert-empty-state {
    grid-column: 1 / -1;
    padding: 3rem 1rem;
    text-align: center;
    border: 1px dashed rgba(8, 174, 202, 0.35);
    border-radius: 1.35rem;
    background: #f8feff;
}

.expert-empty-state i {
    color: var(--expert-accent);
    font-size: 2rem;
}

.expert-empty-state h2 {
    margin: 0.8rem 0 0.35rem;
    font-weight: 900;
}

.expert-pagination {
    display: flex;
    justify-content: center;
}

.expert-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--expert-accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.expert-detail-page {
    display: grid;
    gap: 1.15rem;
}

.expert-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 1.4rem;
    align-items: center;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.expert-detail-identity {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.1rem;
    align-items: center;
}

.expert-detail-avatar {
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 1.45rem;
    font-size: 1.6rem;
}

.expert-detail-hero h1 {
    margin: 0.35rem 0 0.45rem;
    font-size: clamp(1.85rem, 3.2vw, 3.15rem);
    font-weight: 900;
    line-height: 1.08;
}

.expert-detail-hero p {
    max-width: 820px;
    margin: 0 0 1rem;
    color: var(--expert-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.expert-detail-action-card {
    padding: 1.15rem;
    border: 1px solid rgba(8, 174, 202, 0.18);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.82);
}

.expert-detail-action-card h2 {
    margin: 0.3rem 0 0.45rem;
    font-size: 1.25rem;
    font-weight: 900;
}

.expert-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.expert-detail-card {
    padding: 1.25rem;
}

.expert-detail-card-wide {
    grid-column: 1 / -1;
}

.expert-detail-card h2 {
    margin: 0.25rem 0 0.8rem;
    font-size: 1.12rem;
    font-weight: 900;
}

.expert-detail-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
}

.expert-detail-list div {
    display: grid;
    grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1fr);
    gap: 0.8rem;
}

.expert-detail-list dt {
    color: #475467;
    font-weight: 800;
}

.expert-detail-list dd {
    margin: 0;
    color: var(--expert-ink);
}

.expert-document-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(8, 174, 202, 0.22);
    border-radius: 1rem;
    background: #fff;
    color: var(--expert-accent-dark);
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 991px) {
    .expert-universe-hero-grid,
    .expert-detail-hero,
    .expert-detail-grid {
        grid-template-columns: 1fr;
    }

    .expert-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expert-filter-row,
    .expert-filter-row:has(> div:nth-child(3)) {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .expert-universe-hero,
    .expert-filter-shell,
    .expert-detail-hero,
    .expert-detail-card {
        border-radius: 1.15rem;
    }

    .expert-filter-head,
    .expert-filter-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .expert-filter-toggle,
    .expert-primary-btn,
    .expert-secondary-btn,
    .expert-disabled-btn {
        width: 100%;
    }

    .expert-card-grid,
    .expert-card-actions {
        grid-template-columns: 1fr;
    }

    .expert-detail-identity {
        grid-template-columns: 1fr;
    }

    .expert-detail-list div {
        grid-template-columns: 1fr;
    }

    .expert-universe-stats {
        gap: 0.85rem;
    }

    .expert-universe-stats article {
        min-width: calc(50% - 0.5rem);
    }
}
