/* Ultra Zoom — GitHub-dark-inspired static site */

/* ── Reset & Base ─────────────────────────────────── */

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

:root {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-card: #21262d;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --brand: #58a6ff;
    --brand-light: #79c0ff;
    --brand-dark: #1f6feb;
    --brand-hover: #388bfd;
    --border: #30363d;
    --link: #58a6ff;
    --link-hover: #79c0ff;
    --white: #fff;
    --error: #f85149;
    --error-bg: rgba(248, 81, 73, 0.12);
    --error-border: rgba(248, 81, 73, 0.4);
    --success: #3fb950;
    --success-bg: rgba(63, 185, 80, 0.12);
    --success-border: rgba(63, 185, 80, 0.4);
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
        Helvetica, Arial, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--link-hover);
}

/* Links inside text blocks must be distinguishable beyond color alone */
p a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Screen-reader only ───────────────────────────── */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Skip link ────────────────────────────────────── */

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--brand-dark);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 6px 0;
}

.skip-link:focus {
    top: 0;
}

/* ── Focus styles ─────────────────────────────────── */

:focus-visible {
    outline: 2px solid var(--brand-light);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ── Header / Navigation ──────────────────────────── */

.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.nav-logo:hover {
    color: var(--brand-light);
}

.nav-logo img {
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.nav-links a {
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ── Main Content ─────────────────────────────────── */

.main {
    flex: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    width: 100%;
}

/* ── Hero ──────────────────────────────────────────── */

.hero {
    text-align: center;
    padding: 2rem 0 2.5rem;
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    max-width: 720px;
    margin: 0 auto 1.25rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--text-primary);
}

.screenshot-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.screenshot {
    border-radius: 12px;
    filter: drop-shadow(0 4px 24px rgba(31, 111, 235, 0.25));
}

/* ── Install Buttons ──────────────────────────────── */

.install {
    padding: 1rem 0 2.5rem;
}

.install-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.install-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    transition: transform 0.15s, box-shadow 0.2s, background-color 0.2s;
    min-width: 160px;
    justify-content: center;
}

.install-button:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.install-button.chrome {
    background: var(--brand-dark);
    box-shadow: 0 4px 16px rgba(31, 111, 235, 0.3);
}

.install-button.chrome:hover {
    background: var(--brand-hover);
    box-shadow: 0 6px 24px rgba(31, 111, 235, 0.45);
}

.install-button.firefox {
    background: var(--brand-dark);
    box-shadow: 0 4px 16px rgba(31, 111, 235, 0.3);
}

.install-button.firefox:hover {
    background: var(--brand-hover);
    box-shadow: 0 6px 24px rgba(31, 111, 235, 0.45);
}

.install-icon {
    flex-shrink: 0;
}

/* ── Features / Trust ─────────────────────────────── */

.features {
    padding: 2rem 0;
}

.trust-text {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 1rem auto 2rem;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: var(--brand);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pro-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 640px;
    margin: 0 auto;
}

.pro-note strong {
    color: var(--brand-light);
}

.pro-cta {
    text-align: center;
    margin: 1rem 0 0;
}

.pro-cta-btn {
    display: inline-block;
    background: var(--brand-dark);
    color: var(--white);
    font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 3px 14px rgba(31, 111, 235, 0.3);
}

.pro-cta-btn:hover {
    background: var(--brand-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(31, 111, 235, 0.45);
}

.faq-install-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.faq-install-cta p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.faq-install-cta strong {
    color: var(--text-primary);
}

.faq-install-cta .install-links {
    justify-content: center;
}

/* ── Footer ───────────────────────────────────────── */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 1.5rem;
}

.footer-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── Payment Banners ──────────────────────────────── */

.payment-banner-top,
.payment-banner-bottom {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
}

.payment-banner-bottom {
    border-top: 1px solid var(--border);
    border-bottom: none;
}

.payment-banner-inner {
    max-width: 700px;
    margin: 0 auto;
}

.payment-banner-personal {
    text-align: center;
}

.payment-personal-title {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--error);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.payment-personal-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-personal-body strong {
    color: var(--text-primary);
}

.payment-personal-body a {
    color: var(--brand-light);
    font-weight: 700;
}

.payment-personal-action {
    margin-bottom: 0.75rem;
}

.payment-personal-check {
    font-size: 0.85rem;
    color: var(--success);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.payment-btn-hero {
    display: inline-block;
    background: var(--brand-dark);
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.85rem 3.5rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(31, 111, 235, 0.35);
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.payment-btn-hero:hover {
    background: var(--brand-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(31, 111, 235, 0.5);
}

.payment-personal-or {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.payment-personal-or a {
    color: var(--brand-light);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Checkout Error ───────────────────────────────── */

.checkout-error {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--error);
    text-align: center;
}

/* ── Quick Guide & FAQ ────────────────────────────── */

.guide-faq {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.guide-faq h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--brand-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--brand);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Contacts ─────────────────────────────────────── */

.contacts-section {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--border);
}

.contacts-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-light);
    text-align: center;
}

.contacts-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.65;
    text-align: center;
}

/* ── Contact Form ─────────────────────────────────── */

.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238e8a84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.18);
    outline: none;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--error);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.submit-btn {
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.7rem 2rem;
    transition: background-color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.submit-btn:hover:not(:disabled) {
    background: var(--brand-hover);
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-privacy-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 320px;
}

.form-status {
    margin-top: 1.25rem;
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-status--success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success);
}

.form-status--error {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error);
}

.contact-alt {
    border-top: 1px solid var(--border);
    margin-top: 2.5rem;
    padding-top: 2rem;
    max-width: 600px;
}

.contact-alt h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-alt p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Content Pages (Privacy, Terms) ───────────────── */

.page-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-top: 1rem;
}

.page-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: var(--brand-light);
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content code {
    background: var(--bg-card);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ── Help Hero ────────────────────────────────────── */

.help-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    text-align: center;
    flex-direction: column;
}

.help-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.help-hero-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-hero-icon {
    border-radius: 18px;
    filter: drop-shadow(0 4px 24px rgba(31, 111, 235, 0.3));
    flex-shrink: 0;
}

/* ── Help Sections ────────────────────────────────── */

.help-section {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.help-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-light);
    margin-bottom: 0.75rem;
    text-align: center;
}

.help-section > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ── Steps ────────────────────────────────────────── */

.steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 50%;
    background: var(--brand-dark);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── Shortcuts Table ──────────────────────────────── */

.shortcuts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.shortcuts-table th {
    text-align: left;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shortcuts-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    vertical-align: middle;
}

.shortcuts-table tr:nth-child(even) td {
    background: var(--bg-secondary);
}

kbd {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.85em;
    color: var(--text-primary);
    white-space: nowrap;
}

.badge-pro {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.1rem 0.45rem;
    background: var(--brand-dark);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 4px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Site Grid ────────────────────────────────────── */

.site-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.site-grid li {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    transition: border-color 0.2s;
}

.site-grid li:hover {
    border-color: var(--brand);
}

/* ── Help List ────────────────────────────────────── */

.help-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.help-list li {
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.help-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--brand-light);
    font-weight: 700;
}

.help-list strong {
    color: var(--text-primary);
}

/* ── Help Note ────────────────────────────────────── */

.help-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-left: 3px solid var(--brand);
    border-radius: 0 6px 6px 0;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Landing (darkreader-style short homepage) ────── */

.landing {
    flex: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.landing-hero {
    text-align: center;
    padding: 4rem 1rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-logo {
    width: 128px;
    height: 128px;
    border-radius: 28px;
    filter: drop-shadow(0 6px 32px rgba(31, 111, 235, 0.4));
    margin-bottom: 1.5rem;
}

.landing-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.landing-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.55;
    margin-bottom: 2rem;
}

.landing-tagline strong {
    color: var(--text-primary);
}

.landing-install {
    margin-bottom: 2.5rem;
}

.landing-blurb {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.landing-help-link {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.landing-help-link a {
    color: var(--brand-light);
}

/* ── Trust band (landing value props) ─────────────── */

.trust-band {
    max-width: 960px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.trust-band-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.trust-band-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    line-height: 1.5;
}

.trust-band-item strong {
    color: var(--brand-light);
    font-size: 1rem;
    font-weight: 700;
}

.trust-band-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-band-item a {
    color: var(--brand-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 720px) {
    .trust-band-list {
        grid-template-columns: 1fr;
    }
}

/* ── "Built different" callout ────────────────────── */

.different-callout {
    max-width: 720px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.different-callout-inner {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--brand);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}

.different-callout-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.6rem;
}

.different-callout-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 0.75rem;
}

.different-callout-cta {
    margin: 0;
    font-size: 0.95rem;
}

.different-callout-cta a {
    color: var(--brand-light);
    font-weight: 600;
}

/* ── Support strip (compact payment banner) ───────── */

.support-strip {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 0 auto 3rem;
    max-width: 720px;
}

.support-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.support-strip-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    min-width: 240px;
}

.support-strip-text strong {
    color: var(--text-primary);
}

.support-strip-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-strip-btn {
    padding: 0.6rem 1.75rem;
    font-size: 1rem;
    box-shadow: 0 3px 14px rgba(31, 111, 235, 0.3);
}

.support-strip-or {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.support-strip-or a {
    color: var(--brand-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Screenshot Gallery (Landing) ────────────────── */

.screenshot-gallery {
    padding: 0 0 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.gallery-item:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ── Help Screenshots ────────────────────────────── */

.help-screenshot {
    max-width: 700px;
    margin: 1.25rem auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.help-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Blog ─────────────────────────────────────────── */

.blog-header {
    text-align: center;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.blog-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.blog-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.blog-post {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    transition: border-color 0.2s;
}

.blog-post:hover {
    border-color: var(--brand);
}

.blog-post-header {
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.blog-dot {
    color: var(--text-muted);
}

.blog-post-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
}

.blog-post-title a {
    color: var(--text-primary);
}

.blog-post-title a:hover {
    color: var(--brand-light);
}

.blog-post-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.blog-post-body p:last-child {
    margin-bottom: 0;
}

.blog-post-body strong {
    color: var(--text-primary);
}

/* ── Article (individual blog post) ──────────────── */

.article {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 7rem;
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-top: 0.5rem;
}

.article-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--text-primary);
}

.article-body a {
    color: var(--link);
}

.article-body a:hover {
    color: var(--link-hover);
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.article-body li strong {
    color: var(--text-primary);
}

.article-body figure {
    margin: 2rem 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.article-body figure img {
    display: block;
    width: 100%;
    height: auto;
}

.article-body figure figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    line-height: 1.5;
}

.article-body figure figcaption a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.article-body figure figcaption a:hover {
    color: var(--text-primary);
}

.article-body .mid-article-cta {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--brand);
    border-radius: 8px;
}

.article-body .mid-article-cta p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
}

.article-body .mid-article-cta strong {
    color: var(--text-primary);
}

.article-body .mid-article-cta a {
    color: var(--brand-light);
    font-weight: 600;
}

.article-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.article-footer a {
    color: var(--link);
    font-size: 0.95rem;
}

.article-footer a:hover {
    color: var(--link-hover);
}

/* ── Related Posts ───────────────────────────────── */

.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.related-posts-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.related-post {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s, background 0.2s;
}

.related-post:hover {
    border-color: var(--brand);
    background: var(--bg-card);
}

.related-post-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0.25rem 0 0.5rem;
    line-height: 1.35;
}

.related-post-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.related-post-title a:hover {
    color: var(--brand);
}

.related-post-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ── Sticky Install CTA ──────────────────────────── */

.install-cta-bar {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 100;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.install-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.install-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    min-width: 0;
}

.install-cta-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.install-cta-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.install-cta-btn {
    display: inline-block;
    background: var(--brand-dark);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.install-cta-btn:hover {
    background: var(--brand-hover);
    color: var(--white);
}

.install-cta-dismiss {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.install-cta-dismiss:hover {
    color: var(--text-primary);
    background: var(--bg-primary);
}

@media (max-width: 540px) {
    .install-cta-bar {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.6rem 0.75rem;
    }

    .install-cta-text {
        font-size: 0.85rem;
    }

    .install-cta-text span {
        display: none;
    }

    .install-cta-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.9rem;
    }
}

/* ── Success Page ─────────────────────────────────── */

.success-page {
    text-align: center;
    padding: 4rem 1rem 3rem;
    max-width: 560px;
    margin: 0 auto;
}

.success-icon {
    color: var(--success);
    margin-bottom: 1.5rem;
}

.success-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--brand-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.success-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.success-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.success-note strong {
    color: var(--text-primary);
}

.success-home-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7rem 2rem;
    background: var(--brand-dark);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.15s;
}

.success-home-link:hover {
    background: var(--brand-hover);
    color: var(--white);
    transform: translateY(-1px);
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.35rem;
    }

    .help-hero {
        gap: 1.25rem;
        padding: 1.5rem 0 1.5rem;
    }

    .help-hero-text h1 {
        font-size: 1.5rem;
    }

    .help-hero-icon {
        width: 64px;
        height: 64px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .site-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .install-links {
        flex-direction: column;
        align-items: center;
    }

    .install-button {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .shortcuts-table,
    .shortcuts-table thead,
    .shortcuts-table tbody,
    .shortcuts-table tr,
    .shortcuts-table th,
    .shortcuts-table td {
        display: block;
    }

    .shortcuts-table thead {
        display: none;
    }

    .shortcuts-table td {
        padding: 0.5rem 0.75rem;
    }

    .payment-personal-title {
        font-size: 1.25rem;
    }

    .payment-personal-body {
        font-size: 0.9rem;
    }

    .payment-btn-hero {
        padding: 0.75rem 2.5rem;
        font-size: 1.05rem;
    }

    .landing-hero {
        padding: 2.5rem 0.5rem 2rem;
    }

    .landing-logo {
        width: 96px;
        height: 96px;
    }

    .landing-title {
        font-size: 2.25rem;
    }

    .landing-tagline {
        font-size: 1.1rem;
    }

    .support-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .blog-post {
        padding: 1.25rem 1.25rem;
    }

    .blog-post-title {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .article {
        padding: 1.5rem 1rem 2rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-body h2 {
        font-size: 1.2rem;
    }
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ── Pricing Page ─────────────────────────────────── */

.pricing-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
}

.pricing-card--featured {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(31, 111, 235, 0.2);
    position: relative;
}

.pricing-card-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-dark);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.why-pro {
    max-width: 860px;
    margin: 2rem 0 2.5rem;
}

.why-pro h2 {
    margin-bottom: 0.75rem;
}

.why-pro p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.why-pro-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.why-pro-list li {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--brand);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

.why-pro-list strong {
    color: var(--text-primary);
}

.pricing-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-light);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.pricing-card-price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-card-price strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.pricing-card-per {
    margin-left: 0.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-card-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.pricing-card-cta {
    display: inline-block;
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    width: 100%;
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 3px 14px rgba(31, 111, 235, 0.3);
}

.pricing-card-cta:hover:not(:disabled) {
    background: var(--brand-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(31, 111, 235, 0.45);
}

.pricing-compare-wrap {
    overflow-x: auto;
    margin-top: 0.75rem;
}

.pricing-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-compare th,
.pricing-compare td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
    color: var(--text-secondary);
}

.pricing-compare thead th {
    background: var(--bg-card);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-compare thead th:not(:first-child),
.pricing-compare tbody td {
    text-align: center;
}

.pricing-compare tbody th {
    color: var(--text-primary);
    font-weight: 500;
    background: var(--bg-secondary);
}

.pricing-compare tbody tr:nth-child(even) th,
.pricing-compare tbody tr:nth-child(even) td {
    background: var(--bg-card);
}

.pricing-compare tbody td {
    color: var(--success);
    font-weight: 700;
}

/* ── Account Page ─────────────────────────────────── */

.account-form {
    margin-top: 2rem;
}

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

/* ── Zoom Score report ────────────────────────────── */

.zsr-page { max-width: 880px; margin: 0 auto; padding: 32px 20px 64px; }

.zsr-crumbs { margin: 0 0 20px; font-size: 14px; }
.zsr-crumbs a { color: #8b949e; text-decoration: none; }
.zsr-crumbs a:hover { color: #c9d1d9; }

.zsr-state {
    background: #161b22; border: 1px solid #30363d; border-radius: 12px;
    padding: 40px 24px; text-align: center; color: #8b949e;
}
.zsr-state.err { color: #e6edf3; }
.zsr-state h1 { margin: 0 0 8px; font-size: 22px; }

.zsr-hero {
    background: #161b22; border: 1px solid #30363d; border-radius: 14px;
    padding: 32px 24px; text-align: center; margin-bottom: 20px;
}
.zsr-dial {
    width: 160px; height: 160px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.zsr-dial svg { display: block; width: 100%; height: 100%; }
.zsr-meta {
    display: flex; gap: 8px; justify-content: center; align-items: center;
    color: #8b949e; font-size: 14px; flex-wrap: wrap;
}
.zsr-host { color: #c9d1d9; text-decoration: none; font-weight: 600; }
.zsr-host:hover { color: #58a6ff; text-decoration: underline; }
.zsr-dot { color: #484f58; }
.zsr-actions {
    display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
    margin: 18px 0 0;
}
.zsr-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; font-size: 13px; font-weight: 600;
    border-radius: 6px; border: 1px solid transparent;
    cursor: pointer; text-decoration: none;
    font-family: inherit;
}
.zsr-btn.ghost {
    background: transparent; color: #c9d1d9;
    border-color: #30363d;
}
.zsr-btn.ghost:hover { background: #21262d; border-color: #484f58; }
.zsr-btn.primary { background: #58a6ff; color: #0d1117; }
.zsr-btn.primary:hover { background: #79b8ff; }
.zsr-btn.firefox { background: #f0883e; color: #fff; }
.zsr-btn.firefox:hover { background: #ff9f4a; }

.zsr-verdict {
    margin: 20px auto 0; max-width: 640px;
    font-size: 17px; line-height: 1.5;
    color: #e6edf3;
}

.zsr-audits { display: grid; gap: 12px; margin: 0 0 20px; }
.zsr-audit {
    background: #161b22; border: 1px solid #30363d; border-radius: 10px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        'icon name  points'
        'icon bar   bar'
        'body body  body'
        'foot foot  foot';
    column-gap: 14px; row-gap: 8px;
    align-items: center;
}
.zsr-audit-icon {
    grid-area: icon;
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: #0d1117; border: 1px solid #30363d;
    color: #c9d1d9;
}
.zsr-audit-icon svg { width: 18px; height: 18px; display: block; }
.zsr-audit-name {
    grid-area: name; font-weight: 600; color: #e6edf3;
    font-size: 15px; text-align: left; margin: 0;
}
.zsr-audit-points {
    grid-area: points;
    font-variant-numeric: tabular-nums;
    font-size: 13px; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
    background: #0d1117; border: 1px solid #30363d;
    color: #c9d1d9; white-space: nowrap;
}
.zsr-audit-bar {
    grid-area: bar;
    height: 6px; background: #0d1117;
    border: 1px solid #30363d; border-radius: 999px;
    overflow: hidden; position: relative;
}
.zsr-audit-bar-fill {
    height: 100%; border-radius: 999px;
    transition: width 400ms ease;
}
.zsr-audit-finding {
    grid-area: body;
    margin: 0; color: #e6edf3; font-size: 14px; line-height: 1.5;
}
.zsr-audit-target {
    grid-area: foot;
    margin: 0; color: #8b949e; font-size: 13px; line-height: 1.5;
    padding-top: 8px; border-top: 1px dashed #30363d;
}
.zsr-audit-target.hidden { display: none; }
.zsr-audit-target::before { content: '→  '; color: #58a6ff; }

.zsr-evidence { margin: 0 0 20px; }
.zsr-evidence h2 {
    margin: 0 0 12px; font-size: 13px; color: #c9d1d9;
    text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
}
.zsr-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}
.zsr-thumb {
    display: block; background: #0d1117;
    border: 1px solid #30363d; border-radius: 8px;
    overflow: hidden; text-decoration: none;
    transition: border-color 120ms ease;
}
.zsr-thumb:hover { border-color: #58a6ff; }
.zsr-thumb-img {
    aspect-ratio: 1; width: 100%; display: block;
    object-fit: cover; background: #0d1117;
}
.zsr-thumb-cap {
    padding: 8px 10px; font-size: 11px; color: #8b949e;
    display: flex; justify-content: space-between; gap: 8px;
    font-variant-numeric: tabular-nums;
}
.zsr-thumb-cap .dim { color: #c9d1d9; font-weight: 600; }

.zsr-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px; margin: 0 0 20px;
    background: #161b22; border: 1px solid #30363d; border-radius: 10px;
    padding: 16px;
}
.zsr-stat { text-align: center; padding: 4px; }
.zsr-stat-v {
    font-size: 22px; font-weight: 700; color: #e6edf3;
    font-variant-numeric: tabular-nums;
}
.zsr-stat-l {
    font-size: 11px; color: #8b949e; text-transform: uppercase;
    letter-spacing: 0.05em; margin-top: 4px;
}

.zsr-cta {
    background: rgba(88, 166, 255, 0.08);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 12px; padding: 24px;
}
.zsr-cta h2 { margin: 0 0 8px; font-size: 20px; color: #e6edf3; }
.zsr-cta p { margin: 0 0 16px; color: #c9d1d9; line-height: 1.5; }
.zsr-cta-links {
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.zsr-cta-links .sep { color: #484f58; font-weight: 700; }

@media (max-width: 480px) {
    .zsr-cta-links { flex-direction: column; align-items: stretch; }
    .zsr-cta-links .zsr-btn { justify-content: center; }
    .zsr-cta-links .sep { display: none; }
    .zsr-hero { padding: 24px 16px; }
    .zsr-audit { padding: 14px; }
}

