@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
    --bg: #ffffff;
    --bg-soft: #f9fafb;
    --bg-warm: #f3f4f6;
    --bg-dark: #111827;
    --ink: #111827;
    --ink-soft: #374151;
    --ink-muted: #6b7280;
    --ink-faint: #9ca3af;
    --line: #e5e7eb;
    --line-soft: #f3f4f6;
    --accent: #0f766e;
    --accent-hover: #0d5f59;
    --accent-soft: #ecfdf5;
    --accent-glow: #14b8a6;
    --score-gold: #b45309;
    --score-good: #0f766e;
    --score-warn: #c2410c;
    --score-bad: #be123c;
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 14px;
    --max-w: 1360px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---- Navbar CSS ----  */

.fcm_header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.fcm_container {
    width: min(100% - 32px, var(--max-w));
    margin: 0 auto;
    padding: 0 32px;
}

.fcm_header_inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 76px;
    position: relative;
}

.fcm_header_left,
.fcm_header_center,
.fcm_header_right {
    min-width: 0;
}

.fcm_logo img {
    width: 200px;
    margin-top: 3px;
}

.fcm_header_center {
    display: flex;
    justify-content: center;
}

.fcm_nav {
    width: 100%;
}

.fcm_nav_list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.fcm_nav_item {
    position: relative;
}

.fcm_nav_link {
    appearance: none;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 14px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fcm_nav_link:hover,
.fcm_nav_item.fcm_open>.fcm_nav_link {
    color: var(--ink);
    background: var(--bg-soft);
}

.fcm_nav_chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.fcm_nav_item.fcm_open .fcm_nav_chevron,
.fcm_profile_wrap.fcm_open .fcm_nav_chevron {
    transform: rotate(180deg);
}

.fcm_dropdown,
.fcm_profile_dropdown {
    position: absolute;
    top: calc(100% + 14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.fcm_dropdown {
    left: 0;
    min-width: 240px;
    padding: 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
}

.fcm_dropdown_link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.fcm_dropdown_link:hover {
    background: var(--bg-soft);
    color: var(--ink);
}

@media (min-width: 1025px) {

    .fcm_nav_item.fcm_open>.fcm_dropdown,
    .fcm_profile_wrap.fcm_open .fcm_profile_dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.fcm_header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.fcm_icon_btn,
.fcm_menu_toggle {
    flex: 0 0 auto;
}

.fcm_icon_btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fcm_icon_btn:hover {
    color: var(--ink);
    border-color: #d1d5db;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.fcm_icon_btn svg {
    width: 20px;
    height: 20px;
}

.fcm_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.fcm_btn_primary {
    background: var(--accent);
    color: var(--bg);
}

.fcm_btn_primary:hover {
    background: var(--accent-hover);
}

.fcm_btn_outline {
    background: var(--accent);
    color: var(--bg);
}

.fcm_btn_outline:hover {
    background: var(--accent-hover);
}

.fcm_profile_wrap {
    position: relative;
}

.fcm_profile_btn {
    min-height: 46px;
    padding: 6px 10px 6px 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fcm_profile_btn:hover,
.fcm_profile_wrap.fcm_open .fcm_profile_btn {
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.fcm_profile_avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ink), var(--ink-soft));
    color: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
}

.fcm_profile_meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.fcm_profile_name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-body);
}

.fcm_profile_role {
    font-size: 0.76rem;
    color: var(--ink-muted);
    font-family: var(--font-body);
}

.fcm_profile_dropdown {
    right: 0;
    min-width: 230px;
    padding: 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
}

.fcm_profile_link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.93rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.fcm_profile_link:hover {
    background: var(--bg-soft);
    color: var(--ink);
}

.fcm_profile_link_danger {
    color: var(--score-bad);
}

.fcm_profile_divider {
    height: 1px;
    background: var(--line);
    margin: 8px 0;
}

.fcm_menu_toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.fcm_menu_toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: var(--radius);
    transition: all 0.25s ease;
}

.fcm_menu_toggle.fcm_active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.fcm_menu_toggle.fcm_active span:nth-child(2) {
    opacity: 0;
}

.fcm_menu_toggle.fcm_active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.fcm_search_modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
}

.fcm_search_modal.fcm_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fcm_search_box {
    position: relative;
    width: min(720px, calc(100% - 24px));
    margin: 90px auto 0;
    background: var(--bg);
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.18);
    padding: 24px;
}

.fcm_search_close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fcm_search_close svg {
    width: 18px;
    height: 18px;
}

.fcm_search_head {
    margin-bottom: 18px;
}

.fcm_search_title {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
}

.fcm_search_text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.94rem;
    color: var(--ink-muted);
}

.fcm_search_form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fcm_search_input_wrap {
    flex: 1 1 420px;
    min-width: 0;
    position: relative;
}

.fcm_search_input_icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--ink-muted);
}

.fcm_search_input {
    width: 100%;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 16px 0 46px;
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--ink);
    outline: none;
}

.fcm_search_input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.10);
}

.fcm_search_submit {
    min-width: 120px;
}

@media (max-width: 1180px) {
    .fcm_header_inner {
        gap: 18px;
    }

    .fcm_nav_link {
        padding: 0 10px;
        font-size: 0.9rem;
    }

    .fcm_profile_meta {
        display: none;
    }
}

@media (max-width: 1024px) {
    .fcm_header_inner {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "logo . actions"
            "nav nav nav";
        align-items: center;
        gap: 14px;
        padding: 14px 0;
    }

    .fcm_header_left {
        grid-area: logo;
    }

    .fcm_header_center {
        grid-area: nav;
        display: block;
    }

    .fcm_header_right {
        grid-area: actions;
        gap: 8px;
    }

    .fcm_menu_toggle {
        display: inline-flex;
    }

    .fcm_nav {
        display: none;
        width: 100%;
        margin-top: 4px;
        padding-top: 6px;
    }

    .fcm_header.fcm_mobile_open .fcm_nav {
        display: block;
    }

    .fcm_nav_list {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        padding: 18px;
        background: var(--bg);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
    }

    .fcm_nav_item {
        width: 100%;
    }

    .fcm_nav_link {
        width: 100%;
        justify-content: space-between;
        height: auto;
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .fcm_dropdown,
    .fcm_profile_dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
    }

    .fcm_nav_item.fcm_open>.fcm_dropdown,
    .fcm_profile_wrap.fcm_open .fcm_profile_dropdown {
        display: block;
    }

    .fcm_dropdown {
        min-width: 100%;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 8px;
        background: var(--bg-soft);
    }

    .fcm_profile_dropdown {
        position: absolute;
        right: 0;
        top: calc(100% + 10px);
        width: 230px;
        margin-top: 0;
        background: var(--bg);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        box-shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
        z-index: 40;
    }
}

@media (max-width: 767px) {
    .fcm_container {
        width: min(100% - 20px, var(--max-w));
        width: 100%;
    }

    .fcm_header_inner {
        gap: 10px;
    }

    .fcm_btn_outline {
        padding: 0 14px;
        min-height: 42px;
        font-size: 0.88rem;
    }

    .fcm_profile_btn {
        padding-right: 8px;
    }

    .fcm_search_box {
        margin-top: 68px;
        padding: 20px;
        border-radius: 16px;
    }

    /* .fcm_search_form {
        flex-direction: column;
    } */

    .fcm_search_submit {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .fcm_header_right {
        gap: 6px;
    }

    .fcm_btn_outline {
        padding: 0 12px;
    }

    .fcm_profile_btn {
        padding: 6px;
    }

    .fcm_profile_btn .fcm_nav_chevron {
        display: none;
    }

    .fcm_profile_dropdown {
        min-width: 210px;
    }

    .ctBtn {
        display: none;
    }

    .fcm_logo img {
        width: 170px;
    }
}

/* ---- Navbar CSS End ----  */

/* ── BREADCRUMB ── */
.tc-breadcrumb {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px 32px 0;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted)
}

.tc-breadcrumb a:hover {
    color: var(--accent)
}

.tc-breadcrumb .sep {
    margin: 0 8px;
    color: var(--ink-faint)
}

.tc-breadcrumb .current {
    color: var(--ink);
    font-weight: 600
}

/* ── HERO (fixed: no blank space) ── */
.tc-hero {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 32px 48px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start
}

.tc-tool-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px
}

.tc-tool-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(15, 118, 110, .08), 0 8px 24px rgba(15, 118, 110, .12)
}

.tc-tool-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px
}

.tc-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em
}

.tc-tool-name {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em
}

.tc-tool-url {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 4px
}

.tc-tool-url a {
    color: var(--accent)
}

.tc-tool-url a:hover {
    text-decoration: underline
}

.tc-deck {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 20px
}

.tc-deck strong {
    color: var(--accent);
    font-weight: 600
}

.tc-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 14px
}

.tc-byline-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    font-family: var(--font-display);
    flex-shrink: 0
}

.tc-byline-meta {
    flex: 1
}

.tc-byline-author {
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 14px
}

.tc-byline-date {
    font-size: 14px;
    color: var(--ink-muted)
}

/* ── VERDICT CARD ── */
.tc-verdict-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 84px;
    height: fit-content;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 12px 40px rgba(0, 0, 0, .06)
}

.tc-verdict-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line)
}

.tc-score-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--ink-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600
}

.tc-score-display {
    display: flex;
    align-items: baseline;
    gap: 4px
}

.tc-score-big {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.04em
}

.tc-score-out {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--ink-muted);
    font-weight: 500
}

.tc-verdict-badge {
    background: var(--accent);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: center;
    line-height: 1.3
}

.tc-verdict-tagline {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.45
}

.tc-verdict-bars {
    margin-bottom: 20px
}

.tc-vb {
    margin-bottom: 10px;
    font-size: 14px
}

.tc-vb-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.tc-vb-label {
    color: var(--ink-soft);
    font-weight: 500
}

.tc-vb-val {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 14px
}

.tc-vb-track {
    height: 5px;
    background: var(--line);
    border-radius: 100px;
    overflow: hidden
}

.tc-vb-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 100px
}

.tc-verdict-ctas {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.tc-cta {
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all .15s;
    border: 1px solid transparent;
    font-family: var(--font-display)
}

.tc-cta-primary {
    background: var(--accent);
    color: white
}

.tc-cta-primary:hover {
    background: var(--accent-hover)
}

.tc-cta-secondary {
    background: transparent;
    border-color: var(--line);
    color: var(--ink)
}

.tc-cta-secondary:hover {
    border-color: var(--accent);
    color: var(--accent)
}

/* ── SPECS BAR ── */
.tc-specs {
    background: var(--bg-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.tc-specs-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(6, 1fr)
}

.tc-spec {
    padding: 0 24px;
    border-right: 1px solid var(--line)
}

.tc-spec:first-child {
    padding-left: 0
}

.tc-spec:last-child {
    border-right: none;
    padding-right: 0
}

.tc-spec-label {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-muted);
    margin-bottom: 4px;
    font-weight: 500
}

.tc-spec-val {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1
}

.tc-spec-val small {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted);
    font-weight: 400;
    margin-left: 2px
}

/* ── CONTENT (single col) ── */
.tc-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 64px 32px
}

.tc-content-wide {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 32px
}

/* ── TOC ── */
.tc-toc {
    display: flex;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 48px
}

.tc-toc a {
    flex: 1;
    padding: 14px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-muted);
    border-right: 1px solid var(--line);
    transition: all .15s;
    background: var(--bg-soft)
}

.tc-toc a:last-child {
    border-right: none
}

.tc-toc a:hover {
    color: var(--accent);
    background: var(--accent-soft)
}

.tc-toc .num {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 3px;
    font-weight: 600
}

/* ── ARTICLE ── */
.tc-article h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 48px 0 8px
}

.tc-article h2:first-child {
    margin-top: 0
}

.tc-h2-sub {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
    font-weight: 500
}

.tc-article p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: var(--ink-soft)
}

.tc-article .lead {
    font-size: 19px;
    line-height: 1.55;
    margin-bottom: 24px
}

/* ── AUDIT ROWS ── */
.tc-audit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ink)
}

.tc-audit-header-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700
}

.tc-audit-header-note {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted)
}

.tc-audit-row {
    display: grid;
    grid-template-columns: 36px 1fr 110px;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    align-items: start
}

.tc-audit-row:last-child {
    border-bottom: none
}

.tc-audit-num {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-faint);
    font-weight: 500
}

.tc-audit-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: var(--font-display);
    letter-spacing: -.01em
}

.tc-audit-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    background: var(--bg-warm);
    color: var(--ink-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em
}

.tc-audit-tag.flag {
    background: #fef2f2;
    color: var(--score-bad)
}

.tc-audit-tag.win {
    background: var(--accent-soft);
    color: var(--accent)
}

.tc-audit-finding {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 6px
}

.tc-audit-data {
    display: flex;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted);
    flex-wrap: wrap
}

.tc-audit-data strong {
    color: var(--ink);
    font-weight: 600
}

.tc-audit-score {
    text-align: right
}

.tc-audit-score-big {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em
}

.tc-audit-score-big.good {
    color: var(--score-good)
}

.tc-audit-score-big.gold {
    color: var(--score-gold)
}

.tc-audit-score-big.warn {
    color: var(--score-warn)
}

.tc-audit-score-big.bad {
    color: var(--score-bad)
}

.tc-audit-score-out {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 2px;
    font-weight: 500
}

/* ── PROS/CONS ── */
.tc-procons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 28px 0
}

.tc-procons-col {
    background: var(--bg);
    padding: 24px
}

.tc-procons-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    margin-bottom: 14px
}

.tc-procons-head .icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800
}

.tc-pros .tc-procons-head {
    color: var(--score-good)
}

.tc-pros .icon {
    background: var(--accent-soft);
    color: var(--accent)
}

.tc-cons .tc-procons-head {
    color: var(--score-bad)
}

.tc-cons .icon {
    background: #fef2f2;
    color: var(--score-bad)
}

.tc-procons-list {
    list-style: none
}

.tc-procons-list li {
    padding: 9px 0;
    padding-left: 22px;
    font-size: 15px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    line-height: 1.5
}

.tc-procons-list li:last-child {
    border-bottom: none
}

.tc-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--accent);
    font-weight: 800
}

.tc-cons li::before {
    content: '−';
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--score-bad);
    font-weight: 800
}

.tc-procons-list li strong {
    color: var(--ink);
    font-weight: 600
}

.tc-procons-source {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-faint);
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
    text-transform: uppercase;
    letter-spacing: .05em
}

/* ── PRICING GRID ── */
.tc-pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 28px 0
}

.tc-price {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    position: relative
}

.tc-price.featured {
    border: 2px solid var(--accent)
}

.tc-price.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -10px;
    left: 16px;
    background: var(--accent);
    color: white;
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600
}

.tc-price-tier {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
    font-weight: 600
}

.tc-price-amt {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em
}

.tc-price-amt small {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted);
    font-weight: 400
}

.tc-price-kicker {
    font-size: 14px;
    color: var(--ink-muted);
    margin: 8px 0 14px
}

.tc-price-features {
    list-style: none;
    font-size: 14px;
    color: var(--ink-soft)
}

.tc-price-features li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-top: 1px solid var(--line-soft);
    line-height: 1.45
}

.tc-price-features li:first-child {
    border-top: none
}

.tc-price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent);
    font-weight: 700
}

/* ── COMPARISON TABLE ── */
.tc-compare-scroll {
    overflow-x: auto;
    margin: 28px -4px;
    padding: 4px
}

.tc-compare {
    width: 100%;
    min-width: 780px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px
}

.tc-compare thead th {
    background: var(--bg-warm);
    font-family: var(--font-mono);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink-muted);
    font-weight: 600;
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line)
}

.tc-compare thead th:first-child {
    border-top-left-radius: var(--radius);
    border-left: 1px solid var(--line)
}

.tc-compare thead th:last-child {
    border-top-right-radius: var(--radius);
    border-right: 1px solid var(--line)
}

.tc-compare thead th.hero-col {
    background: var(--accent);
    color: white
}

.tc-compare td {
    padding: 12px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-soft);
    vertical-align: middle;
    font-size: 14px
}

.tc-compare td:first-child {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    background: var(--bg-soft);
    border-left: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: .03em
}

.tc-compare td:last-child {
    border-right: 1px solid var(--line)
}

.tc-compare td.hero-cell {
    background: var(--accent-soft);
    color: var(--ink);
    font-weight: 600
}

.tc-compare tr:last-child td:first-child {
    border-bottom-left-radius: var(--radius)
}

.tc-compare tr:last-child td:last-child {
    border-bottom-right-radius: var(--radius)
}

.tc-compare tbody tr:last-child td {
    border-bottom: 1px solid var(--line)
}

.tc-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.tc-logo-mini {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    color: white;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0
}

.tc-score-pill {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block
}

.sp-good {
    background: var(--accent-soft);
    color: var(--accent)
}

.sp-gold {
    background: #fffbeb;
    color: var(--score-gold)
}

.sp-warn {
    background: #fff7ed;
    color: var(--score-warn)
}

.check-good {
    color: var(--accent);
    font-weight: 700
}

.check-bad {
    color: var(--score-bad);
    font-weight: 700
}

/* ── REVIEW QUOTES ── */
.tc-reviews-agg {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-warm);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 28px;
    margin: 20px 0 28px
}

.tc-agg-score {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1
}

.tc-agg-stars {
    color: var(--score-gold);
    font-size: 16px;
    letter-spacing: 2px
}

.tc-agg-count {
    font-size: 14px;
    color: var(--ink-muted);
    font-family: var(--font-mono)
}

.tc-agg-bars {
    flex: 1
}

.tc-agg-bar {
    display: grid;
    grid-template-columns: 48px 1fr 36px;
    gap: 8px;
    align-items: center;
    margin-bottom: 4px
}

.tc-agg-bar-label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted);
    text-align: right
}

.tc-agg-bar-track {
    height: 5px;
    background: var(--line);
    border-radius: 100px;
    overflow: hidden
}

.tc-agg-bar-fill {
    height: 100%;
    background: var(--score-gold);
    border-radius: 100px
}

.tc-agg-bar-val {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink-muted)
}

.tc-quotes-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line)
}

.tc-quote-row {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 28px;
    align-items: start
}

.tc-quote-text {
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.6;
    position: relative;
    padding-left: 28px
}

.tc-quote-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -6px;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    font-style: normal
}

.tc-quote-text strong {
    color: var(--ink);
    font-weight: 600;
    background: linear-gradient(to top, rgba(20, 184, 166, .12) 40%, transparent 40%);
    font-style: italic
}

.tc-quote-attr {
    text-align: right
}

.tc-quote-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700
}

.tc-quote-role {
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 2px
}

.tc-quote-stars {
    color: var(--score-gold);
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 4px
}

.tc-quote-source {
    display: inline-block;
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    background: var(--bg-warm);
    padding: 3px 8px;
    border-radius: 3px
}

/* ── BOTTOM LINE ── */
.tc-bottomline {
    background: var(--bg-dark);
    color: white;
    padding: 72px 0;
    margin-top: 40px
}

.tc-bl-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center
}

.tc-bl-label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent-glow);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600
}

.tc-bl-score {
    font-family: var(--font-display);
    font-size: 100px;
    font-weight: 600;
    line-height: .9;
    margin-bottom: 16px;
    letter-spacing: -.05em
}

.tc-bl-score span {
    color: var(--accent-glow)
}

.tc-bl-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -.02em
}

.tc-bl-desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .7);
    max-width: 640px;
    margin: 0 auto 16px;
    text-align: left
}

.tc-bl-desc strong {
    color: white;
    font-weight: 700
}

.tc-bl-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.tc-bl-meta-item {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .05em
}

.tc-bl-meta-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-top: 4px;
    text-transform: none
}

.tc-bl-ctas {
    display: flex;
    gap: 12px;
    justify-content: center
}

.tc-bl-cta {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: all .15s;
    font-family: var(--font-display)
}

.tc-bl-cta-primary {
    background: var(--accent);
    color: white
}

.tc-bl-cta-primary:hover {
    background: var(--accent-glow)
}

.tc-bl-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
    color: white
}

.tc-bl-cta-secondary:hover {
    border-color: white
}

/* ── FOOTER ── */
.tc-footer {
    border-top: 1px solid var(--line);
    padding: 40px 0 24px;
    background: var(--bg-soft)
}

.tc-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink-muted)
}

.tc-footer-inner .tc-logo img {
    width: 200px;
}

.tc-footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.tc-footer-links a:hover {
    color: var(--accent)
}

/* ── MINI LOGOS ── */
.mini-h {
    background: linear-gradient(135deg, #0f766e, #14b8a6)
}

.mini-s {
    background: linear-gradient(135deg, #6a4ad9, #a17cff)
}

.mini-d {
    background: linear-gradient(135deg, #e15a1b, #f59042)
}

.mini-r {
    background: linear-gradient(135deg, #1a1a1a, #555)
}

.mini-c {
    background: linear-gradient(135deg, #0080ff, #33a3ff)
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* ── HOMEPAGE ── */
.tc-home-hero {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 32px 64px;
    text-align: center
}

.tc-home-hero h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.05;
    margin-bottom: 20px
}

.tc-home-hero h1 span {
    color: var(--accent);
    font-weight: 600;
}

.tc-home-hero .sub {
    font-size: 20px;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.55
}

.tc-home-search {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    gap: 8px
}

.tc-home-search input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    outline: none;
    transition: border-color .15s
}

.tc-home-search input:focus {
    border-color: var(--accent)
}

.tc-home-search button {
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .15s
}

.tc-home-search button:hover {
    background: var(--accent-hover)
}

.tc-home-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line)
}

.tc-home-stat {
    text-align: center
}

.tc-home-stat .num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -.03em
}

.tc-home-stat .label {
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 4px
}

/* ── CATEGORY GRID ── */
.tc-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 32px
}

.tc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px
}

.tc-section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.02em
}

.tc-section-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent)
}

.tc-section-link:hover {
    text-decoration: underline
}

.tc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.tc-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: all .15s;
    background: var(--bg)
}

.tc-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(15, 118, 110, .08)
}

.tc-card-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px
}

.tc-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0
}

.tc-card-info {
    flex: 1;
    min-width: 0
}

.tc-card-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em
}

.tc-card-cat {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 2px
}

.tc-card-score {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent)
}

.tc-card-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 14px
}

.tc-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.tc-card-tags span {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-muted);
    background: var(--bg-warm);
    padding: 2px 8px;
    border-radius: 3px
}

/* ── STATIC PAGES (about, contact, etc.) ── */
.tc-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 32px
}

.tc-page h1 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -.03em;
    margin-bottom: 8px
}

.tc-page .tc-page-sub {
    font-size: 18px;
    color: var(--ink-muted);
    margin-bottom: 40px
}

.tc-page h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 12px;
    letter-spacing: -.02em
}

.tc-page h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin: 28px 0 8px
}

.tc-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--ink-soft)
}

.tc-page ul,
.tc-page ol {
    margin: 0 0 16px 24px;
    color: var(--ink-soft)
}

.tc-page li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px
}

.tc-page a {
    color: var(--accent);
    font-weight: 500
}

.tc-page a:hover {
    text-decoration: underline
}

.tc-page strong {
    color: var(--ink)
}

/* ── FORMS (contact, claim, get listed) ── */
.tc-form {
    max-width: 520px
}

.tc-form-group {
    margin-bottom: 20px
}

.tc-form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink)
}

.tc-form-group input,
.tc-form-group textarea,
.tc-form-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color .15s;
    background: var(--bg)
}

.tc-form-group input:focus,
.tc-form-group textarea:focus,
.tc-form-group select:focus {
    border-color: var(--accent)
}

.tc-form-group textarea {
    resize: vertical;
    min-height: 120px
}

.tc-form-submit {
    padding: 14px 32px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s
}

.tc-form-submit:hover {
    background: var(--accent-hover)
}

/* ── LISTING PRICING (Get Listed / Sponsor) ── */
.tc-listing-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
    max-width: 680px
}

.tc-lp-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative
}

.tc-lp-card.popular {
    border: 2px solid var(--accent)
}

.tc-lp-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent);
    color: white;
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .04em
}

.tc-lp-tier {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px
}

.tc-lp-price {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -.03em;
    margin: 12px 0 4px
}

.tc-lp-price small {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--ink-muted);
    font-weight: 400
}

.tc-lp-desc {
    font-size: 15px;
    color: var(--ink-muted);
    margin-bottom: 20px
}

.tc-lp-features {
    list-style: none;
    margin-bottom: 24px
}

.tc-lp-features li {
    padding: 8px 0;
    padding-left: 24px;
    font-size: 15px;
    color: var(--ink-soft);
    position: relative;
    border-bottom: 1px solid var(--line-soft)
}

.tc-lp-features li:last-child {
    border-bottom: none
}

.tc-lp-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-weight: 700
}

/* ── TEAM GRID (about/careers) ── */
.tc-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0
}

.tc-team-card {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg)
}

.tc-team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
    margin: 0 auto 14px
}

.tc-team-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700
}

.tc-team-role {
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 4px
}

/* ── JOB LISTINGS (careers) ── */
.tc-job {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.tc-job:last-child {
    border-bottom: none
}

.tc-job-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700
}

.tc-job-meta {
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 2px
}

.tc-job-apply {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    transition: all .15s
}

.tc-job-apply:hover {
    background: var(--accent);
    color: white
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
    .tc-hero {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .tc-verdict-card {
        position: static
    }

    .tc-specs-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 0
    }

    .tc-spec {
        padding: 0 16px
    }

    .tc-spec:nth-child(3n) {
        border-right: none
    }

    .tc-pricing {
        grid-template-columns: 1fr 1fr
    }

    .tc-quote-row {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .tc-quote-attr {
        text-align: left
    }

    .tc-toc {
        flex-wrap: wrap
    }

    .tc-toc a {
        min-width: 120px
    }

    .tc-card-grid {
        grid-template-columns: 1fr 1fr
    }

    .tc-home-hero h1 {
        font-size: 40px
    }

    .tc-listing-pricing {
        grid-template-columns: 1fr
    }

    .tc-team-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {

    .tc-specs-inner {
        grid-template-columns: 1fr 1fr
    }

    .tc-pricing {
        grid-template-columns: 1fr
    }

    .tc-procons {
        grid-template-columns: 1fr
    }

    .tc-audit-row {
        grid-template-columns: 28px 1fr
    }

    .tc-audit-score {
        grid-column: 2;
        text-align: left;
        margin-top: 4px
    }

    .tc-tool-name {
        font-size: 32px
    }

    .tc-article h2 {
        font-size: 26px
    }

    .tc-bl-meta {
        flex-direction: column;
        gap: 20px;
        align-items: center
    }

    .tc-reviews-agg {
        flex-direction: column;
        gap: 16px
    }

    .tc-toc {
        flex-direction: column
    }

    .tc-card-grid {
        grid-template-columns: 1fr
    }

    .tc-home-hero h1 {
        font-size: 32px
    }

    .tc-home-stats {
        flex-direction: column;
        gap: 24px
    }

    .tc-home-search {
        flex-direction: column
    }

    .tc-team-grid {
        grid-template-columns: 1fr
    }

    .tc-footer-inner {
        flex-direction: column;
    }
}

/* ======= Blog CSS Start ========  */

.fba_archive {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.fba_container {
    width: min(100% - 32px, var(--max-w));
    margin: 0 auto;
    padding: 0 32px;
}

/* Hero */
.fba_archive_hero {
    padding: 64px 0 28px;
}

.fba_archive_hero_inner {
    max-width: 860px;
}

.fba_archive_eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--radius);
    background: var(--accent-soft);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fba_archive_title {
    margin: 18px 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    font-weight: 600;
}

.fba_archive_text {
    margin: 0;
    max-width: 720px;
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--ink-muted);
}

/* Sections */
.fba_category_section {
    padding: 10px 0 18px;
}

.fba_posts_section {
    padding: 22px 0 80px;
}

.fba_section_head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.fba_section_kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.fba_section_title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-weight: 600;
}

/* Categories */
.fba_category_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fba_category_chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg);
    text-decoration: none;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.fba_category_chip:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-1px);
}

.fba_category_chip_active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

/* Posts Grid */
.fba_posts_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fba_post_card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fba_post_card:hover {
    transform: translateY(-4px);
    border-color: #d9dde3;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
}

.fba_post_thumb_link {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-warm);
}

.fba_post_thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.fba_post_body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 20px;
}

.fba_post_meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.fba_post_category {
    text-decoration: none;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fba_post_category:hover {
    color: var(--accent-hover);
}

.fba_post_dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink-faint);
}

.fba_post_date {
    color: var(--ink-muted);
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 500;
}

.fba_post_title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.fba_post_title a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fba_post_title a:hover {
    color: var(--accent);
}

.fba_post_excerpt {
    margin: 0 0 18px;
    color: var(--ink-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.75;
}

.fba_post_footer {
    margin-top: auto;
}

.fba_post_readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.fba_post_readmore:hover {
    color: var(--accent);
}

.fba_post_readmore svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.fba_post_readmore:hover svg {
    transform: translateX(3px);
}

/* Pagination */
.fba_pagination_wrap {
    padding-top: 34px;
}

.fba_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.fba_page_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink-soft);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.fba_page_btn:hover {
    background: var(--bg-soft);
    color: var(--ink);
}

.fba_page_btn_active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.fba_page_btn_disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1100px) {
    .fba_posts_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .fba_container {
        width: min(100% - 20px, var(--max-w));
    }

    .fba_archive_hero {
        padding: 44px 0 22px;
    }

    .fba_posts_section {
        padding: 18px 0 60px;
    }

    .fba_posts_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fba_post_body {
        padding: 18px;
    }

    .fba_post_title {
        font-size: 1.08rem;
    }

    .fba_archive_text {
        font-size: 0.96rem;
    }

    .fba_category_list {
        gap: 10px;
    }

    .fba_category_chip {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.88rem;
    }
}

/* ====== Article CSS ====== */

.fab_article_page {
    background:
        radial-gradient(circle at top center, rgba(20, 184, 166, 0.06), transparent 24%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    color: var(--ink);
}

.fab_container {
    width: min(100% - 32px, var(--max-w));
    margin: 0 auto;
    padding: 0 32px;
}

.fab_article_shell {
    padding: 42px 0 80px;
}

/* Intro */
.fab_article_intro {
    margin-bottom: 34px;
}

.fab_article_intro_inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.fab_article_category {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
}

.fab_article_category:hover {
    background: #dffcf6;
    color: var(--accent-hover);
}

.fab_article_title {
    margin: 18px 0 22px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.fab_article_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fab_author_name {
    text-decoration: none;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
}

.fab_author_name:hover {
    color: var(--accent);
}

.fab_meta_item {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-muted);
}

.fab_meta_dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink-faint);
}

/* Main Grid */
.fab_article_grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.fab_toc_col {
    min-width: 0;
}

.fab_content_col {
    min-width: 0;
}

/* TOC */
.fab_toc_col {
    position: sticky;
    top: 96px;
}

.fab_toc_box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.04);
    overflow: hidden;
}

.fab_toc_head {
    padding: 18px 18px 12px;
    border-bottom: 1px solid var(--line-soft);
}

.fab_toc_title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ink);
}

.fab_toc_list {
    list-style: none;
    margin: 0;
    padding: 12px;
}

.fab_toc_item+.fab_toc_item {
    margin-top: 6px;
}

.fab_toc_link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.5;
    transition: all 0.22s ease;
}

.fab_toc_link:hover {
    background: var(--bg-soft);
    color: var(--ink);
}

.fab_toc_link.active {
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
}

/* Content */
.fab_content_card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.04);
    overflow: hidden;
}

.fab_content {
    padding: 34px;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 1.03rem;
    line-height: 1.85;
}

.fab_content>*:first-child {
    margin-top: 0;
}

.fab_content>*:last-child {
    margin-bottom: 0;
}

.fab_content h2,
.fab_content h3,
.fab_content h4,
.fab_content h5,
.fab_content h6 {
    color: var(--ink);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.24;
    scroll-margin-top: 100px;
}

.fab_content h2 {
    margin: 42px 0 16px;
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.fab_content h3 {
    margin: 34px 0 14px;
    font-size: clamp(1.28rem, 1.6vw, 1.55rem);
}

.fab_content h4 {
    margin: 28px 0 12px;
    font-size: 1.15rem;
}

.fab_content p,
.fab_content ul,
.fab_content ol,
.fab_content blockquote,
.fab_content figure,
.fab_content table,
.fab_content pre {
    margin: 0 0 18px;
}

.fab_content ul,
.fab_content ol {
    padding-left: 22px;
}

.fab_content li+li {
    margin-top: 8px;
}

.fab_content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

.fab_content a:hover {
    color: var(--accent-hover);
}

.fab_content strong {
    color: var(--ink);
}

.fab_content blockquote {
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    background: var(--accent-soft);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.fab_content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    margin: 20px auto;
}

.fab_content table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.fab_content table th,
.fab_content table td {
    border: 1px solid var(--line);
    padding: 12px 14px;
    text-align: left;
}

.fab_content table th {
    background: var(--bg-soft);
    color: var(--ink);
    font-weight: 700;
}

.fab_content pre {
    overflow-x: auto;
    padding: 18px;
    border-radius: 16px;
    background: var(--bg-dark);
    color: #f9fafb;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    line-height: 1.7;
}

.fab_content code {
    font-family: var(--font-mono);
    font-size: 0.92em;
}

.fab_content :not(pre)>code {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    padding: 2px 8px;
    border-radius: 8px;
    color: var(--ink);
}

/* Comments */
.fab_comments_section {
    margin-top: 28px;
}

.fab_comments_head {
    margin-bottom: 18px;
}

.fab_comments_title {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--ink);
}

.fab_comments_text {
    margin: 0;
    color: var(--ink-muted);
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.7;
}

.fab_comment_form_card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.04);
}

.fab_comment_form_inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
}

.fab_comment_textarea,
.fab_reply_textarea {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg);
    padding: 16px 18px;
    outline: none;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.6;
    transition: all 0.25s ease;
}

.fab_comment_textarea:focus,
.fab_reply_textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.fab_comment_textarea:disabled {
    background: var(--bg-soft);
    color: var(--ink-muted);
    cursor: not-allowed;
}

.fab_comment_submit,
.fab_reply_submit,
.fab_comment_submit_guest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    width: fit-content;
}

.fab_comment_submit:hover,
.fab_reply_submit:hover,
.fab_comment_submit_guest:hover {
    background: var(--accent-hover);
    color: var(--bg);
}

.fab_comment_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 22px;
}

.fab_comment_card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.04);
}

.fab_comment_user,
.fab_reply_user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fab_comment_user_avatar,
.fab_reply_user_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 48px;
    background: var(--bg-warm);
    border: 1px solid var(--line);
}

.fab_reply_user_avatar {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
}

.fab_comment_user_avatar img,
.fab_reply_user_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fab_comment_user_name,
.fab_reply_user_name {
    margin: 0 0 4px;
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
}

.fab_comment_user_name {
    font-size: 1rem;
}

.fab_reply_user_name {
    font-size: 0.94rem;
}

.fab_comment_user_date,
.fab_reply_user_date {
    color: var(--ink-muted);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 500;
}

.fab_comment_body,
.fab_reply_body {
    margin-top: 12px;
}

.fab_comment_text,
.fab_reply_text {
    margin: 0;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.97rem;
    line-height: 1.8;
    white-space: pre-line;
}

.fab_comment_actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 14px;
}

.fab_reply_toggle {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 700;
    cursor: pointer;
}

.fab_reply_toggle:hover {
    color: var(--accent-hover);
}

.fab_comment_login_note {
    color: var(--score-warn);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
}

.fab_reply_form_wrap {
    display: none;
    width: 100%;
}

.fab_reply_form_wrap.fab_open {
    display: block;
}

.fab_reply_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.fab_replies_block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fab_reply_card {
    margin-left: 22px;
    padding: 16px;
    border-radius: 18px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 1100px) {
    .fab_article_grid {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 24px;
    }

    .fab_content {
        padding: 28px;
    }
}

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

    .fab_toc_box {
        position: static;
        margin-bottom: 20px;
    }

    .fab_toc_col {
        position: inherit;
    }
}

@media (max-width: 767px) {
    .fab_container {
        width: min(100% - 20px, var(--max-w));
    }

    .fab_article_shell {
        padding: 28px 0 60px;
    }

    .fab_article_title {
        margin: 16px 0 18px;
    }

    .fab_content_card,
    .fab_comment_form_card,
    .fab_comment_card,
    .fab_toc_box {
        border-radius: 18px;
    }

    .fab_content {
        padding: 22px 18px;
        font-size: 0.98rem;
    }

    .fab_content h2 {
        font-size: 1.45rem;
        margin-top: 34px;
    }

    .fab_content h3 {
        font-size: 1.22rem;
    }

    .fab_comment_card {
        padding: 18px;
    }

    .fab_reply_card {
        margin-left: 10px;
        padding: 14px;
    }
}

/* ====== Blog CSS End =======  */

/* === HERO OVERRIDE — single column layout === */
.tc-hero-v2 {
    max-width: 1360px;
    margin: 0 auto;
    padding: 32px 32px 0;
}

.tc-hero-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tc-hero-top .tc-tool-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(15, 118, 110, .08), 0 8px 24px rgba(15, 118, 110, .12);
}

.tc-hero-info {
    flex: 1;
}

.tc-hero-deck {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 800px;
    margin-bottom: 16px;
}

.tc-hero-deck strong {
    color: var(--accent);
    font-weight: 600;
}

.tc-hero-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
    margin-bottom: 0;
}

.tc-hero-byline-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    font-family: var(--font-display);
    flex-shrink: 0;
}

/* === SCORE STRIP — full width, replaces sidebar === */
.tc-score-strip {
    background: var(--bg-dark);
    border-radius: 14px;
    padding: 28px 36px;
    margin: 24px auto 0;
    max-width: 1360px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 36px;
    align-items: center;
    color: white;
}

.tc-ss-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tc-ss-score {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

.tc-ss-score-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tc-ss-score-meta strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent-glow);
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tc-ss-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
}

.tc-ss-bar {
    font-size: 14px;
}

.tc-ss-bar-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.tc-ss-bar-label {
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}

.tc-ss-bar-val {
    font-family: var(--font-mono);
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.tc-ss-bar-track {
    height: 4px;
    background: rgba(255, 255, 255, .12);
    border-radius: 100px;
    overflow: hidden;
}

.tc-ss-bar-fill {
    height: 100%;
    background: var(--accent-glow);
    border-radius: 100px;
}

.tc-ss-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tc-ss-cta {
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    font-family: var(--font-display);
    transition: all 0.15s;
}

.tc-ss-cta-primary {
    background: var(--accent-glow);
    color: white;
}

.tc-ss-cta-primary:hover {
    background: var(--accent);
}

.tc-ss-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
    color: white;
}

.tc-ss-cta-secondary:hover {
    border-color: white;
}

/* === SPECS needs margin fix === */
.tc-specs-v2 {
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .tc-score-strip {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .tc-ss-left {
        justify-content: center;
    }

    .tc-ss-bars {
        grid-template-columns: 1fr;
    }

    .tc-ss-right {
        flex-direction: row;
    }

    .tc-ss-right .tc-ss-cta {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .tc-hero-top {
        flex-direction: column;
        gap: 12px;
    }

    .tc-ss-right {
        flex-direction: column;
    }

    .tc-ss-left {
        flex-direction: column;
        text-align: center;
    }
}

/* === HERO — single column === */
.tc-hero-v2 {
    max-width: 1360px;
    margin: 0 auto;
    padding: 32px 32px 0
}

.tc-hero-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px
}

.tc-hero-info {
    flex: 1
}

.tc-hero-deck {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 800px;
    margin-bottom: 16px
}

.tc-hero-deck strong {
    color: var(--accent);
    font-weight: 600
}

.tc-hero-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 14px
}

.tc-hero-byline-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    font-family: var(--font-display);
    flex-shrink: 0
}

/* === SCORE STRIP === */
.tc-score-strip {
    background: var(--bg-dark);
    border-radius: 14px;
    padding: 28px 36px;
    margin: 24px auto 0;
    max-width: 1360px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 36px;
    align-items: center;
    color: white
}

.tc-ss-left {
    display: flex;
    align-items: center;
    gap: 20px
}

.tc-ss-score {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.04em
}

.tc-ss-score-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .1em
}

.tc-ss-score-meta strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent-glow);
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: .05em;
    text-transform: uppercase
}

.tc-ss-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px
}

.tc-ss-bar {
    font-size: 14px
}

.tc-ss-bar-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.tc-ss-bar-label {
    color: rgba(255, 255, 255, .7);
    font-weight: 500
}

.tc-ss-bar-val {
    font-family: var(--font-mono);
    font-weight: 600;
    color: white;
    font-size: 14px
}

.tc-ss-bar-track {
    height: 4px;
    background: rgba(255, 255, 255, .12);
    border-radius: 100px;
    overflow: hidden
}

.tc-ss-bar-fill {
    height: 100%;
    background: var(--accent-glow);
    border-radius: 100px
}

.tc-ss-right {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.tc-ss-cta {
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    font-family: var(--font-display);
    transition: all .15s
}

.tc-ss-cta-primary {
    background: var(--accent-glow);
    color: white
}

.tc-ss-cta-primary:hover {
    background: var(--accent)
}

.tc-ss-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
    color: white
}

.tc-ss-cta-secondary:hover {
    border-color: white
}

.tc-specs-v2 {
    margin-top: 24px
}

/* === VISUAL GRAPH BARS === */
.tc-graph {
    margin: 28px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden
}

.tc-graph-title {
    background: var(--bg-warm);
    padding: 14px 20px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid var(--line)
}

.tc-graph-body {
    padding: 20px
}

.tc-graph-row {
    display: grid;
    grid-template-columns: 160px 1fr 50px;
    gap: 14px;
    align-items: center;
    margin-bottom: 10px
}

.tc-graph-row:last-child {
    margin-bottom: 0
}

.tc-graph-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink)
}

.tc-graph-track {
    height: 24px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative
}

.tc-graph-fill {
    height: 100%;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    font-family: var(--font-mono);
    min-width: 30px
}

.tc-graph-fill.fill-gold {
    background: linear-gradient(90deg, #b45309, #d97706)
}

.tc-graph-fill.fill-good {
    background: linear-gradient(90deg, var(--accent), var(--accent-glow))
}

.tc-graph-fill.fill-warn {
    background: linear-gradient(90deg, #c2410c, #ea580c)
}

.tc-graph-fill.fill-bad {
    background: linear-gradient(90deg, #be123c, #e11d48)
}

.tc-graph-fill.fill-mid {
    background: linear-gradient(90deg, #6b7280, #9ca3af)
}

.tc-graph-val {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    text-align: right;
    color: var(--ink)
}

/* === FEATURE TABLE === */
.tc-ftable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden
}

.tc-ftable th {
    background: var(--bg-warm);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line)
}

.tc-ftable td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-soft)
}

.tc-ftable tr:last-child td {
    border-bottom: none
}

.tc-ftable td:first-child {
    font-weight: 600;
    color: var(--ink);
    font-family: var(--font-display)
}

.tc-ftable .yes {
    color: var(--accent);
    font-weight: 700
}

.tc-ftable .no {
    color: var(--score-bad);
    font-weight: 700
}

.tc-ftable .partial {
    color: var(--score-warn);
    font-weight: 600
}

@media(max-width:1100px) {
    .tc-score-strip {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px
    }

    .tc-ss-left {
        justify-content: center
    }

    .tc-ss-bars {
        grid-template-columns: 1fr
    }

    .tc-ss-right {
        flex-direction: row
    }

    .tc-ss-right .tc-ss-cta {
        flex: 1
    }

    .tc-graph-row {
        grid-template-columns: 120px 1fr 40px
    }
}

@media(max-width:640px) {
    .tc-hero-top {
        flex-direction: column;
        gap: 12px
    }

    .tc-ss-right {
        flex-direction: column
    }

    .tc-ss-left {
        flex-direction: column;
        text-align: center
    }

    .tc-graph-row {
        grid-template-columns: 1fr;
        gap: 4px
    }

    .tc-graph-label {
        font-size: 13px
    }
}

.alert {
    padding: 12px 16px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid transparent;
}

/* Success message */
.alert-success {
    background-color: #e6f9ed;
    color: #1e7e34;
    border-color: #b7ebc6;
}

/* Error message */
.alert-danger {
    background-color: #fdecea;
    color: #a71d2a;
    border-color: #f5c2c7;
}

/* Optional: spacing between multiple errors */
.alert-danger p {
    margin: 4px 0;
}

/* Optional: make it look more “pop” */
.alert-success,
.alert-danger {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}