/*
|--------------------------------------------------------------------------
| TanksConnected stylesheet owner: tc-public.css
|--------------------------------------------------------------------------
| Public homepage and marketing/public landing styling only.
| Uses central theme tokens from public/css/tanksconnected.css.
|--------------------------------------------------------------------------
*/

/* ==========================================================================
   Public homepage
   ========================================================================== */

.tc-public-home-v2 {
    display: grid;
    gap: 1rem;
    padding: clamp(.75rem, 1.8vw, 1.35rem);
}

.tc-public-icon-28 {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 auto;
}

.tc-public-kicker-v2 {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--tc-border-strong);
    border-radius: var(--tc-radius-pill);
    background: var(--tc-accent-soft);
    color: var(--tc-accent);
    padding: .3rem .62rem;
    font-size: .72rem;
    font-weight: var(--tc-weight-heavy);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.tc-public-hero-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(230px, .55fr) minmax(230px, .55fr);
    gap: 1rem;
    align-items: stretch;
    min-height: 390px;
    border: 1px solid var(--tc-border-soft);
    border-radius: var(--tc-radius-xl);
    background:
        radial-gradient(circle at 16% 12%, var(--tc-accent-panel), transparent 34%),
        radial-gradient(circle at 85% 18%, rgba(var(--tc-accent-strong-rgb), .12), transparent 30%),
        var(--tc-surface-1);
    box-shadow: var(--tc-shadow-card);
    padding: clamp(1rem, 2.2vw, 2rem);
    overflow: hidden;
}

.tc-public-hero-copy-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    max-width: 860px;
}

.tc-public-hero-copy-v2 h1 {
    margin: .85rem 0 .75rem;
    color: var(--tc-heading);
    font-size: clamp(2rem, 4.35vw, 4.05rem);
    line-height: .98;
    font-weight: var(--tc-weight-heavy);
    letter-spacing: -.06em;
}

.tc-public-hero-copy-v2 h1 span {
    color: var(--tc-accent);
    text-shadow: 0 0 28px var(--tc-accent-glow);
}

.tc-public-hero-copy-v2 p {
    max-width: 760px;
    color: var(--tc-text-soft);
    font-size: clamp(.98rem, 1.15vw, 1.08rem);
    line-height: 1.56;
    margin: 0;
}

.tc-public-actions-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.15rem;
}

.tc-public-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 42px;
    border-radius: var(--tc-radius-md);
    border: 1px solid var(--tc-border);
    padding: .72rem .95rem;
    color: var(--tc-text);
    background: var(--tc-surface-2);
    text-decoration: none;
    font-weight: var(--tc-weight-bold);
    transition:
        transform var(--tc-transition-fast),
        border-color var(--tc-transition-fast),
        background var(--tc-transition-fast),
        color var(--tc-transition-fast);
}

.tc-public-btn-v2:hover {
    transform: translateY(-1px);
    color: var(--tc-heading);
    border-color: var(--tc-border-strong);
}

.tc-public-btn-primary-v2 {
    color: var(--tc-button-text);
    background: var(--tc-button-bg);
    border-color: var(--tc-button-border);
    box-shadow: 0 14px 32px rgba(var(--tc-accent-strong-rgb), .24);
}

.tc-public-btn-ghost-v2 {
    color: var(--tc-text-soft);
    background: var(--tc-surface-2);
}

.tc-public-btn-subtle-v2 {
    color: var(--tc-accent);
    background: transparent;
    border-color: var(--tc-border-soft);
}

.tc-public-hero-panel-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
    border: 1px solid var(--tc-border-soft);
    border-radius: var(--tc-radius-lg);
    background: var(--tc-surface-glass);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
    padding: 1rem;
}

.tc-public-hero-panel-accent-v2 {
    background:
        radial-gradient(circle at 100% 0, var(--tc-accent-panel), transparent 40%),
        var(--tc-surface-2);
    border-color: var(--tc-border-strong);
}

.tc-public-panel-label-v2 {
    width: fit-content;
    color: var(--tc-accent);
    background: var(--tc-accent-soft);
    border: 1px solid var(--tc-border-strong);
    border-radius: var(--tc-radius-pill);
    padding: .24rem .48rem;
    font-size: .72rem;
    font-weight: var(--tc-weight-heavy);
    margin-bottom: .7rem;
}

.tc-public-hero-panel-v2 h2 {
    color: var(--tc-heading);
    font-size: 1.18rem;
    font-weight: var(--tc-weight-heavy);
    margin: 0 0 .35rem;
}

.tc-public-hero-panel-v2 p {
    color: var(--tc-text-soft);
    line-height: 1.45;
    margin: 0 0 .85rem;
}

.tc-public-checks-v2 {
    display: grid;
    gap: .45rem;
}

.tc-public-checks-v2 span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--tc-text-soft);
    font-size: .9rem;
}

.tc-public-checks-v2 i {
    color: var(--tc-accent);
}

/* ==========================================================================
   Public tool cards
   ========================================================================== */

.tc-public-tools-v2,
.tc-public-three-v2,
.tc-public-bottom-v2 {
    width: min(100%, var(--tc-content-max));
    margin: 0 auto;
}

.tc-public-section-head-v2 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .75rem;
}

.tc-public-section-head-v2 h2 {
    margin: .45rem 0 0;
    color: var(--tc-heading);
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    font-weight: var(--tc-weight-heavy);
}

.tc-public-section-head-v2 a {
    color: var(--tc-accent);
    text-decoration: none;
    font-weight: var(--tc-weight-bold);
}

.tc-public-tool-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .75rem;
}

.tc-public-tool-v2 {
    display: flex;
    flex-direction: column;
    gap: .42rem;
    min-height: 136px;
    padding: .95rem;
    border: 1px solid var(--tc-border-soft);
    border-radius: var(--tc-radius-lg);
    color: inherit;
    text-decoration: none;
    background: var(--tc-card-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
    transition:
        transform var(--tc-transition-fast),
        border-color var(--tc-transition-fast),
        background var(--tc-transition-fast);
}

.tc-public-tool-v2:hover {
    transform: translateY(-2px);
    border-color: var(--tc-border-strong);
    background: var(--tc-surface-1);
}

.tc-public-tool-featured-v2 {
    background:
        radial-gradient(circle at 0 0, var(--tc-accent-panel), transparent 42%),
        var(--tc-card-bg);
    border-color: var(--tc-border-strong);
}

.tc-public-tool-v2 i {
    color: var(--tc-accent);
    font-size: 1.35rem;
}

.tc-public-tool-v2 strong {
    color: var(--tc-heading);
    font-size: .98rem;
    font-weight: var(--tc-weight-heavy);
}

.tc-public-tool-v2 span {
    color: var(--tc-text-soft);
    font-size: .86rem;
    line-height: 1.42;
}

/* ==========================================================================
   Three feature cards and bottom panels
   ========================================================================== */

.tc-public-three-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.tc-public-three-v2 article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: .55rem .75rem;
    padding: 1rem;
    border: 1px solid var(--tc-border-soft);
    border-radius: var(--tc-radius-lg);
    background: var(--tc-card-bg);
}

.tc-public-three-v2 i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--tc-accent);
    border-radius: var(--tc-radius-md);
    background: var(--tc-accent-soft);
    border: 1px solid var(--tc-border-strong);
}

.tc-public-three-v2 h3 {
    color: var(--tc-heading);
    margin: 0;
    font-size: 1rem;
    font-weight: var(--tc-weight-heavy);
}

.tc-public-three-v2 p {
    color: var(--tc-text-soft);
    margin: 0;
    font-size: .88rem;
    line-height: 1.45;
}

.tc-public-bottom-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: .85rem;
}

.tc-public-account-v2,
.tc-public-guides-v2 {
    border: 1px solid var(--tc-border-soft);
    border-radius: var(--tc-radius-xl);
    padding: 1rem;
    background: var(--tc-card-bg);
}

.tc-public-account-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background:
        radial-gradient(circle at 0 0, var(--tc-accent-panel), transparent 36%),
        var(--tc-card-bg);
}

.tc-public-account-v2 h2 {
    color: var(--tc-heading);
    margin: .5rem 0 .35rem;
    font-weight: var(--tc-weight-heavy);
}

.tc-public-account-v2 p {
    color: var(--tc-text-soft);
    margin: 0;
    line-height: 1.5;
}

.tc-public-guide-links-v2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
}

.tc-public-guide-links-v2 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    color: var(--tc-text-soft);
    text-decoration: none;
    font-weight: var(--tc-weight-bold);
    border: 1px solid var(--tc-border-soft);
    border-radius: var(--tc-radius-md);
    padding: .75rem;
    background: var(--tc-surface-2);
}

.tc-public-guide-links-v2 a:hover {
    color: var(--tc-accent);
    border-color: var(--tc-border-strong);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1300px) {
    .tc-public-hero-v2 {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tc-public-hero-panel-v2 {
        min-height: auto;
    }

    .tc-public-tool-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tc-public-bottom-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .tc-public-home-v2 {
        padding: .65rem;
        gap: .75rem;
    }

    .tc-public-hero-v2 {
        padding: 1rem;
        border-radius: var(--tc-radius-lg);
    }

    .tc-public-hero-copy-v2 h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .tc-public-actions-v2,
    .tc-public-section-head-v2,
    .tc-public-account-v2 {
        flex-direction: column;
        align-items: stretch;
    }

    .tc-public-btn-v2 {
        width: 100%;
    }

    .tc-public-tool-grid-v2,
    .tc-public-three-v2,
    .tc-public-guide-links-v2 {
        grid-template-columns: 1fr;
    }

    .tc-public-tool-v2 {
        min-height: auto;
    }
}

/* ==========================================================================
   Guide / info pages
   Owner: public/css/tc-public.css
   Notes: one clean block for existing info guide markup. No Blade-specific wrappers.
   ========================================================================== */

.tc-content > .tc-card-large.tc-guide-card {
    width: min(100%, 1500px);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--tc-border-soft);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 0%, var(--tc-accent-soft), transparent 34rem),
        radial-gradient(circle at 92% 8%, rgba(var(--tc-accent-rgb), 0.08), transparent 28rem),
        linear-gradient(145deg, var(--tc-card-bg-strong), var(--tc-card-bg));
    box-shadow: var(--tc-shadow-card);
}

.tc-content > .tc-card-large.tc-guide-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tc-accent), var(--tc-accent-strong), var(--tc-accent));
    opacity: 0.78;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-inner {
    position: relative;
    z-index: 1;
}

.tc-content > .tc-card-large.tc-guide-card .row {
    --bs-gutter-x: 1.4rem;
    --bs-gutter-y: 1.4rem;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-title {
    margin: 0;
    color: var(--tc-heading);
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-lead {
    max-width: 76ch;
    color: var(--tc-text-soft);
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    line-height: 1.68;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-subtext,
.tc-content > .tc-card-large.tc-guide-card .tc-guide-list {
    color: var(--tc-text-muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-section {
    align-items: stretch;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-section-title {
    margin-bottom: 0.75rem;
    color: var(--tc-heading);
    font-size: clamp(1.18rem, 1.35vw, 1.45rem);
    line-height: 1.16;
    font-weight: 760;
    letter-spacing: -0.03em;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard {
    height: auto;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    background: var(--tc-surface-glass);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard.h-100 {
    height: 100%;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard + .tc-guide-subcard {
    margin-top: 1.1rem;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard h2,
.tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard h3,
.tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard h4,
.tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard h5,
.tc-content > .tc-card-large.tc-guide-card .tc-guide-small-heading {
    color: var(--tc-heading);
    font-weight: 720;
    letter-spacing: -0.02em;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-list {
    margin: 0;
    padding-left: 1.1rem;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-list li {
    margin-bottom: 0.48rem;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-list li:last-child {
    margin-bottom: 0;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-divider,
.tc-content > .tc-card-large.tc-guide-card .tc-guide-divider-soft {
    margin: 1.75rem 0;
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    opacity: 1;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-divider-soft {
    border-top-style: dashed;
    opacity: 0.72;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-label-spaced {
    color: var(--tc-accent) !important;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    font-weight: 800;
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-small-text,
.tc-content > .tc-card-large.tc-guide-card .tc-guide-tiny-note {
    color: var(--tc-text-muted);
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-tool-callout {
    margin: 1.35rem 0 1.65rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--tc-border-soft);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, var(--tc-accent-soft), transparent 22rem),
        linear-gradient(145deg, var(--tc-card-bg), var(--tc-surface-glass));
    box-shadow: var(--tc-shadow-soft);
}

.tc-content > .tc-card-large.tc-guide-card .tc-guide-tool-callout__kicker {
    display: inline-flex;
    margin-bottom: 0.45rem;
    color: var(--tc-accent);
    font-size: 0.74rem;
    font-weight: 820;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tc-content > .tc-card-large.tc-guide-card a {
    color: var(--tc-link);
    font-weight: 720;
    text-decoration: none;
}

.tc-content > .tc-card-large.tc-guide-card a:hover,
.tc-content > .tc-card-large.tc-guide-card a:focus {
    color: var(--tc-link-hover);
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.tc-content > .tc-card-large.tc-guide-card .btn,
.tc-content > .tc-card-large.tc-guide-card .btn-outline-info,
.tc-content > .tc-card-large.tc-guide-card .btn-outline-light {
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 750;
}

.tc-content > .tc-card-large.tc-guide-card p:last-child,
.tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .tc-content > .tc-card-large.tc-guide-card {
        padding: 3.15rem !important;
    }
}

@media (max-width: 991.98px) {
    .tc-content > .tc-card-large.tc-guide-card {
        width: 100%;
        border-radius: 22px;
    }

    .tc-content > .tc-card-large.tc-guide-card .row {
        --bs-gutter-y: 1rem;
    }
}

@media (max-width: 767.98px) {
    .tc-content > .tc-card-large.tc-guide-card.p-4,
    .tc-content > .tc-card-large.tc-guide-card.p-md-5 {
        padding: 1.15rem !important;
    }

    .tc-content > .tc-card-large.tc-guide-card .tc-guide-title {
        font-size: 2rem;
    }

    .tc-content > .tc-card-large.tc-guide-card .tc-guide-lead,
    .tc-content > .tc-card-large.tc-guide-card .tc-guide-subtext,
    .tc-content > .tc-card-large.tc-guide-card .tc-guide-list {
        font-size: 0.94rem;
    }

    .tc-content > .tc-card-large.tc-guide-card .tc-guide-subcard {
        padding: 1rem;
        border-radius: 18px;
    }

    .tc-content > .tc-card-large.tc-guide-card .tc-guide-divider,
    .tc-content > .tc-card-large.tc-guide-card .tc-guide-divider-soft {
        margin: 1.35rem 0;
    }
}

/* ==========================================================================
   Legal / policy pages
   Owner: public/css/tc-public.css
   Scope: /legal and /legal/*
   ========================================================================== */

.tc-content > .tc-legal-card {
    width: min(100%, 1420px);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--tc-border-soft);
    border-radius: 22px;
    background: var(--tc-card-bg);
    box-shadow: var(--tc-shadow-card);
}

.tc-content > .tc-legal-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tc-accent), var(--tc-accent-strong));
}

.tc-content > .tc-legal-card > * {
    position: relative;
    z-index: 1;
}

.tc-content > .tc-legal-card h1 {
    margin-bottom: 0.7rem;
    color: var(--tc-heading);
    font-size: clamp(1.75rem, 2vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 780;
}

.tc-content > .tc-legal-card h2 {
    margin-top: 1.65rem;
    margin-bottom: 0.55rem;
    color: var(--tc-heading);
    font-size: clamp(1.02rem, 1vw, 1.18rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
    font-weight: 720;
}

.tc-content > .tc-legal-card p,
.tc-content > .tc-legal-card li {
    color: var(--tc-text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.tc-content > .tc-legal-card p.text-muted,
.tc-content > .tc-legal-card ul.text-muted,
.tc-content > .tc-legal-card ol.text-muted,
.tc-content > .tc-legal-card .text-muted {
    color: var(--tc-text-muted) !important;
}

.tc-content > .tc-legal-card ul,
.tc-content > .tc-legal-card ol {
    margin-bottom: 0;
    padding-left: 1.15rem;
}

.tc-content > .tc-legal-card li {
    margin-bottom: 0.42rem;
}

.tc-content > .tc-legal-card li:last-child {
    margin-bottom: 0;
}

.tc-content > .tc-legal-card a {
    color: var(--tc-link);
    font-weight: 700;
    text-decoration: none;
}

.tc-content > .tc-legal-card a:hover,
.tc-content > .tc-legal-card a:focus {
    color: var(--tc-link-hover);
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.tc-content > .tc-legal-card .alert {
    margin: 1.25rem 0;
    padding: 0.95rem 1.05rem;
    border-radius: 14px;
    color: rgba(240, 249, 255, 0.92);
    background: var(--tc-surface-glass);
    border: 1px solid var(--tc-border) !important;
}

.tc-content > .tc-legal-card .alert-warning {
    background: rgba(113, 63, 18, 0.34);
    border-color: rgba(251, 191, 36, 0.24) !important;
}

.tc-content > .tc-legal-card .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.tc-content > .tc-legal-card .tc-card {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: var(--tc-surface-glass);
    box-shadow: none;
}

.tc-content > .tc-legal-card .tc-card:hover,
.tc-content > .tc-legal-card .tc-card:focus {
    border-color: var(--tc-border-strong);
    background: var(--tc-card-bg);
}

@media (min-width: 1200px) {
    .tc-content > .tc-legal-card {
        padding: 2.35rem 2.6rem !important;
    }
}

@media (max-width: 767.98px) {
    .tc-content > .tc-legal-card {
        border-radius: 20px;
    }

    .tc-content > .tc-legal-card.p-4 {
        padding: 1.15rem !important;
    }

    .tc-content > .tc-legal-card h1 {
        font-size: 1.85rem;
    }

    .tc-content > .tc-legal-card p,
    .tc-content > .tc-legal-card li {
        font-size: 0.94rem;
    }
}

/* Homepage SEO content polish
   ========================================================================== */
.tc-home-seo-depth-pass {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.15rem;
    margin-top: 1.4rem;
    margin-bottom: 1.15rem;
}

.tc-home-seo-depth-pass > div,
.tc-home-seo-depth-pass + .tc-home-feature-row article,
.tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip > div {
    border: 1px solid var(--tc-border-soft);
    border-radius: 1.35rem;
    background:
        radial-gradient(circle at top left, var(--tc-accent-soft), transparent 16rem),
        var(--tc-card-bg);
    box-shadow: var(--tc-shadow-soft);
}

.tc-home-seo-depth-pass > div {
    padding: 1.2rem;
}

.tc-home-seo-depth-pass h2,
.tc-home-seo-depth-pass + .tc-home-feature-row h3,
.tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip h2 {
    max-width: 44rem;
    margin-bottom: .65rem;
    color: var(--tc-heading);
    line-height: 1.12;
}

.tc-home-seo-depth-pass p,
.tc-home-seo-depth-pass + .tc-home-feature-row p,
.tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip p {
    max-width: 58rem;
    margin-bottom: .68rem;
    color: var(--tc-text-soft);
    font-size: .94rem;
    line-height: 1.58;
}

.tc-home-seo-depth-pass p:last-child,
.tc-home-seo-depth-pass + .tc-home-feature-row p:last-child,
.tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip p:last-child {
    margin-bottom: 0;
}

.tc-home-seo-depth-pass + .tc-home-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0;
    margin-bottom: 1.15rem;
}

.tc-home-seo-depth-pass + .tc-home-feature-row article {
    display: flex;
    flex-direction: column;
    min-height: 11.5rem;
    padding: 1.05rem;
}

.tc-home-seo-depth-pass + .tc-home-feature-row article i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: .65rem;
    border: 1px solid var(--tc-border-soft);
    border-radius: .85rem;
    background: var(--tc-accent-soft);
    color: var(--tc-accent);
    font-size: 1rem;
}

.tc-home-seo-depth-pass + .tc-home-feature-row h3 {
    font-size: 1.1rem;
}

.tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.15rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip > div {
    padding: 1.2rem;
}

@media (max-width: 1199.98px) {
    .tc-home-seo-depth-pass + .tc-home-feature-row {
        grid-template-columns: 1fr;
    }

    .tc-home-seo-depth-pass + .tc-home-feature-row article {
        min-height: 0;
    }
}

@media (max-width: 991.98px) {
    .tc-home-seo-depth-pass,
    .tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip {
        grid-template-columns: 1fr;
    }

    .tc-home-seo-depth-pass > div,
    .tc-home-seo-depth-pass + .tc-home-feature-row article,
    .tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip > div {
        padding: 1rem;
        border-radius: 1.1rem;
    }

    .tc-home-seo-depth-pass h2,
    .tc-home-seo-depth-pass + .tc-home-feature-row h3,
    .tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip h2 {
        font-size: 1.15rem;
    }

    .tc-home-seo-depth-pass p,
    .tc-home-seo-depth-pass + .tc-home-feature-row p,
    .tc-home-seo-depth-pass + .tc-home-feature-row + .tc-home-account-strip p {
        font-size: .88rem;
        line-height: 1.5;
    }
}
/* End homepage SEO content polish */


/* Homepage link structure polish
   ========================================================================== */
.tc-public-tool-v2 {
    display: flex;
    flex-direction: column;
}

.tc-public-tool-link-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    border: 1px solid var(--tc-border-soft);
    border-radius: 999px;
    padding: .42rem .7rem;
    background: var(--tc-accent-soft);
    color: var(--tc-heading);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.tc-public-tool-link-v2:hover,
.tc-public-tool-link-v2:focus {
    border-color: var(--tc-border-strong);
    color: var(--tc-heading);
    transform: translateY(-1px);
}

.tc-home-external-reading {
    margin-top: 1.15rem;
    margin-bottom: 1.15rem;
}

.tc-home-external-reading__links {
    display: grid;
    gap: .55rem;
}

.tc-home-external-reading__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border: 1px solid var(--tc-border-soft);
    border-radius: 999px;
    padding: .62rem .85rem;
    background: var(--tc-card-bg);
    color: var(--tc-heading);
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
}

.tc-home-external-reading__links a::after {
    content: "↗";
    color: var(--tc-accent);
    font-weight: 900;
}

.tc-home-external-reading__links a:hover,
.tc-home-external-reading__links a:focus {
    border-color: var(--tc-border-strong);
    background: var(--tc-accent-soft);
}
/* End homepage link structure polish */

