/* ==========================================
   SAVEJET DESKTOP PRO — DOWNLOADS STYLE SHEET
   ========================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-base: #0f1217;
    --bg-surface: #181c24;
    --bg-surface-hover: #1e2430;
    
    --border: #262b36;
    --border-glow: rgba(176, 38, 168, 0.25);
    
    --text-primary: #eef1f6;
    --text-muted: #9aa6b4;
    --text-faint: #717b89;
    
    --brand-primary: #b026a8;
    --brand-gradient: linear-gradient(120deg, #8a2be2, #b026a8, #e1306c);
    --brand-gradient-hover: linear-gradient(120deg, #9b41ec, #c23cb9, #eb4a7f);
    --accent-blue: #2f7bf6;
    
    --success: #34d399;
    --success-bg: rgba(52, 211, 153, 0.1);
    
    --glow-shadow: 0 0 30px rgba(176, 38, 168, 0.3);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.15s ease-out;
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Static gradient background glows */
.bg-glow-top {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(225, 48, 108, 0.05) 40%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

.bg-glow-bottom {
    position: fixed;
    bottom: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 38, 168, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(120px);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- HEADER --- */
.site-header {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(15, 18, 23, 0.7);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.35rem;
    transition: var(--transition-quick);
}

.brand:hover {
    opacity: 0.9;
}

.brand-logo {
    fill: url(#logo-grad);
}

.badge-desktop {
    background: linear-gradient(120deg, rgba(138, 43, 226, 0.2), rgba(225, 48, 108, 0.2));
    border: 1px solid rgba(176, 38, 168, 0.4);
    color: #e1306c;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.back-to-web {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-quick);
}

.back-to-web:hover {
    color: var(--text-primary);
}

.back-to-web svg {
    transition: transform 0.2s ease;
}

.back-to-web:hover svg {
    transform: translateX(-3px);
}

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 5rem 0 3.5rem 0;
    position: relative;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e1306c;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.grad-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    list-style: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges svg {
    color: var(--success);
}

/* --- WEB VS DESKTOP COMPARISON SECTION --- */
.comparison-section {
    padding: 4rem 0 2rem 0;
}

.comparison-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.comp-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem auto;
}

.comp-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.comp-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.comp-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comp-col {
    background-color: rgba(15, 18, 23, 0.4);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.comp-col:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.comp-col.highlight-desktop {
    border: 1.5px solid rgba(176, 38, 168, 0.35);
    background: linear-gradient(135deg, rgba(24, 28, 36, 0.9) 0%, rgba(138, 43, 226, 0.03) 100%);
    box-shadow: 0 4px 30px rgba(176, 38, 168, 0.08);
}

.comp-col.highlight-desktop:hover {
    border-color: rgba(176, 38, 168, 0.6);
}

.comp-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.web-badge {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-badge-filled {
    background: var(--brand-gradient);
    color: #fff;
    box-shadow: 0 2px 10px rgba(176, 38, 168, 0.3);
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

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

.ico-yes {
    color: var(--success);
    font-weight: 800;
    flex-shrink: 0;
}

.ico-no {
    color: var(--text-faint);
    font-weight: 800;
    flex-shrink: 0;
}

/* --- DOWNLOAD CARDS SECTION --- */
.downloads-section {
    padding: 2rem 0 5rem 0;
}

/* Pricing comparisons inside the promo banner */
.promo-price-line {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.highlight-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-muted);
    text-decoration: line-through;
    margin: 0 4px;
    display: inline-block;
}

.highlight-free {
    font-size: 1.35rem;
    font-weight: 800;
    color: #f59e0b;
    margin: 0 4px;
    display: inline-block;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
}

.promo-deadline-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Launch Promo Banner */
.promo-banner {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    background: rgba(245, 158, 11, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.promo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.promo-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.promo-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.promo-header .strike {
    text-decoration: line-through;
    opacity: 0.65;
    margin-right: 4px;
}

.promo-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.25);
}

.promo-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.promo-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
}

.promo-feat-icon {
    color: #f59e0b;
    flex-shrink: 0;
}

.promo-subtext {
    font-size: 0.85rem;
    color: var(--text-faint);
    max-width: 600px;
    line-height: 1.5;
}

.highlight-gold {
    color: #f59e0b;
    font-weight: 700;
}

.downloads-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: rgba(176, 38, 168, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Recommendation Highlight class added by JS */
.download-card.recommended {
    border: 2px solid var(--brand-primary);
    box-shadow: var(--glow-shadow);
    transform: translateY(-8px);
}

.download-card.recommended:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(176, 38, 168, 0.45);
}

.rec-badge {
    position: absolute;
    top: -14px;
    background: var(--brand-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(176, 38, 168, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 4px 12px rgba(176, 38, 168, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 4px 20px rgba(176, 38, 168, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 12px rgba(176, 38, 168, 0.4); }
}

.os-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-card.recommended .os-icon {
    color: #e1306c;
}

.os-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-meta {
    font-size: 0.85rem;
    color: var(--text-faint);
    margin-bottom: 2rem;
}

.btn-download {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(176, 38, 168, 0.35);
}

.btn-primary:hover {
    background: var(--brand-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 38, 168, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--bg-surface-hover);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.sys-reqs {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- ADVANTAGES SECTION --- */
.sec-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
}

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

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

.feature-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: rgba(138, 43, 226, 0.35);
    background-color: rgba(24, 28, 36, 0.8);
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(225, 48, 108, 0.15));
    border: 1px solid rgba(176, 38, 168, 0.25);
    color: #e1306c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- INSTALL SECTION --- */
.install-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.install-tabs {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 3rem;
}

.tab-nav {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-quick);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: var(--text-primary);
    background-color: rgba(176, 38, 168, 0.15);
    border: 1px solid rgba(176, 38, 168, 0.3);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--border);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-pane.active .step-item:first-of-type .step-num {
    background: var(--brand-gradient);
    color: white;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.step-content strong {
    color: var(--text-primary);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:first-of-type {
    padding-top: 0;
}

.faq-item summary {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-quick);
}

/* Remove default marker in Safari */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: #e1306c;
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item[open] .faq-toggle-icon {
    transform: rotate(45deg);
    color: #e1306c;
}

.faq-content {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-content p {
    margin-bottom: 0.75rem;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* --- FOOTER --- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0 3rem 0;
    background-color: #0b0d11;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .brand {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: 5rem;
}

.footer-col h5 {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-quick);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
}

.legal-copy {
    max-width: 700px;
    font-size: 0.8rem;
    color: var(--text-faint);
    line-height: 1.4;
    margin-top: 1rem;
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
    }
    
    .comp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comp-col {
        padding: 1.75rem;
    }
    
    .promo-banner {
        padding: 1.75rem 1.5rem;
        gap: 1.25rem;
    }
    
    .promo-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .promo-feat-item {
        justify-content: center;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer-nav {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .download-card {
        padding: 2.5rem 1.5rem;
    }
    
    .install-tabs {
        padding: 1.5rem;
    }
    
    .tab-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }

    .portable-strip {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ===== DOWNLOADS-IN-HERO TWEAKS + NEW ELEMENTS ===== */
.hero .downloads-grid {
    margin-top: 2.75rem;
}

/* Compact the cards a touch so they sit above the fold */
.hero .download-card {
    padding: 2.25rem 2rem;
}

.hero .app-meta {
    margin-bottom: 1.4rem;
}

/* Section subtitle */
.sec-sub {
    max-width: 720px;
    margin: -0.5rem auto 2.75rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.sec-sub a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
}

.sec-sub a:hover { text-decoration: underline; }

/* Portable strip (below the two OS cards) */
.portable-strip {
    max-width: 900px;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background-color: var(--bg-surface);
    border: 1px dashed var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
}

.portable-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    text-align: left;
}

.portable-text strong { color: var(--text-primary); font-size: 0.98rem; }
.portable-text span { color: var(--text-muted); font-size: 0.88rem; }

.portable-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: var(--bg-surface-hover);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-quick);
}

.portable-link:hover {
    border-color: var(--brand-primary);
    color: #fff;
}

/* First-run security note */
.first-run-note {
    max-width: 780px;
    margin: 1.75rem auto 0;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-faint);
}

.first-run-note strong { color: var(--text-muted); }
.first-run-note em { color: var(--text-muted); font-style: normal; }

/* ===== OS DIALOG MOCKUPS (install steps) ===== */
.screen-mock {
    margin: 1.25rem 0 0.85rem;
    max-width: 440px;
    border-radius: 12px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-size: 0.9rem;
}

/* Windows SmartScreen — light system dialog */
.mock-windows {
    background: #f3f3f3;
    color: #1a1a1a;
    border: 1px solid #d8d8d8;
    padding: 1.25rem 1.4rem 1.1rem;
}

.mock-win-head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.mock-win-shield { font-size: 1.25rem; }
.mock-win-text { color: #333; line-height: 1.5; margin-bottom: 0.85rem; }
.mock-win-app { color: #555; font-size: 0.8rem; line-height: 1.5; margin-bottom: 0.55rem; }

.mock-win-moreinfo {
    display: inline-block;
    color: #0067c0;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    cursor: default;
}

.mock-win-actions { display: flex; justify-content: flex-end; gap: 0.55rem; }

.mock-win-run,
.mock-win-dont {
    background: #e1e1e1;
    border: 1px solid #bcbcbc;
    color: #1a1a1a;
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: default;
}

/* macOS Gatekeeper — light system dialog */
.mock-mac {
    background: #ececec;
    color: #1a1a1a;
    border: 1px solid #c9c9c9;
    padding: 1.5rem 1.5rem 1.2rem;
    text-align: center;
}

.mock-mac-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.9rem;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    border-radius: 13px;
}

.mock-mac-text { color: #222; line-height: 1.5; margin-bottom: 1.1rem; font-size: 0.9rem; }
.mock-mac-actions { display: flex; justify-content: center; gap: 0.6rem; }

.mock-mac-trash,
.mock-mac-cancel {
    background: #fff;
    border: 1px solid #c4c4c4;
    color: #1a1a1a;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: default;
}

/* Highlight the buttons the user should click */
.hl-1 { outline: 2px solid #e1306c; outline-offset: 3px; border-radius: 3px; }
.hl-2 { outline: 2px solid #34d399; outline-offset: 2px; }

/* Step caption under the mockup */
.mock-caption {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 0.25rem;
}

.mock-caption em { color: var(--text-faint); font-style: normal; }

.hl-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    vertical-align: middle;
}

.hl-pill-1 { background: #e1306c; }
.hl-pill-2 { background: #34d399; color: #06281c; }
