.hs-page {
    overflow: clip;
}

.hs-page .section-head {
    max-width: 760px;
    margin-bottom: var(--space-6);
}

.hs-page .section-head .lede {
    max-width: 720px;
}

.hs-hero {
    padding-bottom: var(--space-8);
}

.hs-hero h1 {
    max-width: 900px;
}

.hs-hero .hs-hero-answer {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 1.125rem;
    line-height: 1.7;
}

.hs-breadcrumb {
    margin-bottom: var(--space-5);
}

.hs-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin: 0;
    padding: 0;
    color: var(--ink-3);
    font-size: 0.75rem;
    list-style: none;
}

.hs-breadcrumb li + li::before {
    content: "/";
    margin-right: var(--space-2);
    color: var(--border);
}

.hs-breadcrumb a {
    color: var(--ink-3);
}

.hs-breadcrumb a:hover {
    color: var(--teal);
}

.hs-verified {
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--ice);
}

.hs-actions {
    justify-content: center;
    margin-top: var(--space-6);
}

.hs-text-link {
    display: inline-flex;
    margin-top: var(--space-4);
    border-bottom: 1px solid var(--teal-30);
    color: var(--ink-2);
    font-size: 0.875rem;
    font-weight: 600;
}

.hs-text-link:hover {
    color: var(--teal);
    border-color: var(--teal);
}

.hs-page a:focus-visible,
.hs-page summary:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 4px;
}

.hs-decision-section {
    padding-top: var(--space-8);
    background:
        radial-gradient(circle at 84% 16%, var(--teal-05), transparent 28%),
        linear-gradient(180deg, rgba(21, 27, 51, 0.34), transparent 72%);
}

.hs-table-shell {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-card);
}

.hs-table-shell--primary {
    border-color: var(--teal-20);
}

.hs-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    color: var(--ink-2);
    font-size: 0.9rem;
    line-height: 1.55;
}

.hs-table caption {
    padding: var(--space-4) var(--space-5);
    color: var(--ink-3);
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.hs-table th,
.hs-table td {
    padding: var(--space-5);
    border-right: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    vertical-align: top;
    overflow-wrap: anywhere;
}

.hs-table tr > :last-child {
    border-right: 0;
}

.hs-table tbody tr:last-child > * {
    border-bottom: 0;
}

.hs-table thead th {
    color: var(--ink);
    background: var(--card);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
}

.hs-table tbody th {
    color: var(--ink-soft);
    background: rgba(21, 27, 51, 0.72);
    font-weight: 650;
    text-align: left;
}

.hs-table strong {
    color: var(--ink);
}

.hs-table--comparison .hs-col-criterion {
    width: 22%;
}

.hs-table--comparison thead th:nth-child(2),
.hs-table--comparison tbody td:nth-child(2),
.hs-table--pricing .hs-plan-vornin > * {
    background: var(--teal-05);
}

.hs-table--comparison thead th:nth-child(2) {
    color: var(--teal);
    border-top: 1px solid var(--teal-40);
}

.hs-table-note {
    max-width: 780px;
    margin: var(--space-4) 0 0;
    color: var(--ink-3);
    font-size: 0.75rem;
    line-height: 1.55;
}

.hs-platform-section,
.hs-choice-section,
.hs-method-section {
    background: rgba(21, 27, 51, 0.18);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.hs-platform-grid,
.hs-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-card);
}

.hs-platform,
.hs-choice {
    padding: clamp(var(--space-5), 4vw, var(--space-7));
}

.hs-platform + .hs-platform,
.hs-choice + .hs-choice {
    border-left: 1px solid var(--border);
}

.hs-platform--vornin,
.hs-choice--vornin {
    background: linear-gradient(145deg, var(--teal-10), transparent 68%);
}

.hs-platform h3,
.hs-choice h3,
.hs-differences h3 {
    margin-bottom: var(--space-4);
    color: var(--ink-soft);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hs-platform p {
    margin: 0;
    line-height: 1.75;
}

.hs-shot {
    max-width: 1080px;
    margin: var(--space-7) auto 0;
}

.hs-shot-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding: var(--space-3);
    background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-card);
}

.hs-shot-frame::before {
    content: "";
    position: absolute;
    inset: var(--space-3);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-sm);
    pointer-events: none;
}

.hs-shot-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-5);
    color: var(--ink-soft);
    text-align: center;
}

.hs-shot-placeholder span {
    max-width: 34ch;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.4vw, 1.5rem);
    font-weight: 600;
}

.hs-shot-placeholder small {
    color: var(--ink-3);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hs-shot figcaption {
    min-height: var(--space-7);
    padding: var(--space-3) 0 0;
    color: var(--ink-3);
    font-size: 0.75rem;
}

.hs-pricing-section {
    background:
        radial-gradient(circle at 10% 24%, rgba(77, 148, 255, 0.05), transparent 30%),
        var(--bg);
}

.hs-table--pricing thead th:nth-child(1) { width: 17%; }
.hs-table--pricing thead th:nth-child(2) { width: 14%; }
.hs-table--pricing thead th:nth-child(3) { width: 37%; }
.hs-table--pricing thead th:nth-child(4) { width: 32%; }

.hs-follow-up {
    max-width: 900px;
    margin: var(--space-6) 0 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.hs-choice ul {
    margin: 0;
    padding-left: 1.25rem;
}

.hs-choice li + li {
    margin-top: var(--space-3);
}

.hs-choice li::marker {
    color: var(--teal);
}

.hs-differences-section {
    padding-bottom: var(--space-8);
}

.hs-differences {
    border-top: 1px solid var(--border);
}

.hs-differences article {
    display: grid;
    grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.6fr);
    gap: var(--space-7);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border);
}

.hs-differences h3,
.hs-differences p {
    margin: 0;
}

.hs-differences p {
    line-height: 1.75;
}

.hs-faq-section {
    border-top: 1px solid var(--border-soft);
}

.hs-method-section p {
    max-width: 75ch;
    line-height: 1.75;
}

.hs-source-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-5);
    margin: var(--space-5) 0 0;
    padding: 0;
    list-style: none;
}

.hs-source-links a,
.hs-related-links a {
    border-bottom: 1px solid var(--teal-30);
    font-size: 0.875rem;
    font-weight: 600;
}

.hs-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-soft);
}

.hs-page .compare-final-cta .hs-text-link {
    margin-top: 0;
    margin-bottom: var(--space-3);
}

.hs-page .compare-final-cta .data-trust {
    margin-top: 0;
}

@media (max-width: 820px) {
    .hs-page .section {
        padding: var(--space-8) 0;
    }

    .hs-platform-grid,
    .hs-choice-grid {
        grid-template-columns: 1fr;
    }

    .hs-platform + .hs-platform,
    .hs-choice + .hs-choice {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .hs-differences article {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
}

@media (max-width: 720px) {
    .hs-table-shell {
        overflow: visible;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .hs-table,
    .hs-table tbody,
    .hs-table tr,
    .hs-table th,
    .hs-table td {
        display: block;
        width: 100%;
    }

    .hs-table caption {
        display: block;
        width: 100%;
        margin-bottom: var(--space-3);
        padding: 0;
        border: 0;
    }

    .hs-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .hs-table tbody tr {
        overflow: hidden;
        margin-bottom: var(--space-3);
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        box-shadow: var(--shadow-card);
    }

    .hs-table tbody th {
        padding: var(--space-4);
        color: var(--ink);
        background: var(--card);
        border: 0;
        border-bottom: 1px solid var(--border);
        font-family: var(--font-display);
        font-size: 0.9375rem;
    }

    .hs-table tbody td {
        display: grid;
        grid-template-columns: minmax(78px, 0.42fr) minmax(0, 1fr);
        gap: var(--space-3);
        padding: var(--space-4);
        background: transparent;
        border: 0;
        border-bottom: 1px solid var(--border-soft);
        font-size: 0.85rem;
    }

    .hs-table tbody td:last-child {
        border-bottom: 0;
    }

    .hs-table tbody td::before {
        content: attr(data-label);
        color: var(--ink-3);
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.045em;
        text-transform: uppercase;
    }

    .hs-table--comparison tbody td:nth-child(2),
    .hs-table--pricing .hs-plan-vornin > * {
        background: var(--teal-05);
    }
}

@media (max-width: 480px) {
    .hs-hero {
        padding-top: calc(var(--space-8) + var(--space-5));
        padding-bottom: var(--space-7);
    }

    .hs-hero .hs-hero-answer {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hs-verified {
        font-size: 0.625rem;
        line-height: 1.45;
    }

    .hs-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hs-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hs-table tbody td {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: var(--space-3);
        padding-inline: var(--space-4);
    }

    .hs-platform,
    .hs-choice {
        padding: var(--space-5);
    }

    .hs-shot-frame {
        padding: var(--space-2);
    }

    .hs-shot-frame::before {
        inset: 8px;
    }

    .hs-source-links,
    .hs-related-links {
        display: grid;
        justify-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hs-page * {
        scroll-behavior: auto;
    }
}
