/**
 * Vid Optimus — shared public-site design layer.
 *
 * Every /site page builds from these vo- classes so the marketing pages stay
 * one system. Colour, type, spacing and radii all come from the tokens in
 * main.css, which means this file never restates the palette.
 */

/* ---------------------------------------------------------------------------
   Homepage. Scoped with a vo- prefix; colour and type come from the shared
   tokens, so this page follows the design system rather than restating it.
   --------------------------------------------------------------------------- */
.vo-hero {
    position: relative;
    padding: 84px 0 72px;
    overflow: hidden;
    background: #ffffff;
    isolation: isolate;
}
/* A faint grid that fades out from the top centre, plus the red glow behind
   the headline and the app window. Purely decorative. */
.vo-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(640px 320px at 50% 0%, rgba(255, 0, 0, .10), transparent 70%),
        radial-gradient(900px 420px at 50% 72%, rgba(255, 0, 0, .07), transparent 70%),
        linear-gradient(180deg, transparent 0%, var(--surface-1) 100%);
}
.vo-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(15, 15, 15, .055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 15, 15, .055) 1px, transparent 1px);
    background-size: 56px 56px;
    background-position: center top;
    -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, #000 30%, transparent 75%);
}

.vo-hero-copy {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.vo-hero-copy > * { animation: vo-rise .7s cubic-bezier(.2, .7, .2, 1) both; }
.vo-hero-copy > :nth-child(2) { animation-delay: .06s; }
.vo-hero-copy > :nth-child(3) { animation-delay: .12s; }
.vo-hero-copy > :nth-child(4) { animation-delay: .18s; }
.vo-hero-copy > :nth-child(5) { animation-delay: .24s; }

.vo-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(15, 15, 15, .05), 0 6px 18px -10px rgba(15, 15, 15, .18);
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    transition: border-color .2s ease, color .2s ease;
}
.vo-hero-pill:hover { border-color: rgba(255, 0, 0, .35); color: var(--text); }
.vo-hero-pill-tag {
    padding: 3px 9px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--primary-ink);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .02em;
}
.vo-hero-pill i { font-size: 11px; color: var(--text-muted); transition: transform .2s ease; }
.vo-hero-pill:hover i { transform: translateX(3px); color: var(--primary); }

.vo-hero h1 {
    margin: 26px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6.2vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--text);
    text-wrap: balance;
}
.vo-hero h1 em {
    display: block;
    font-style: normal;
    background: linear-gradient(100deg, #FF1A1A 10%, #C00000 90%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    padding-bottom: .06em;
}
.vo-sub {
    margin: 22px auto 0;
    max-width: 38rem;
    font-size: clamp(1.02rem, 1.4vw, 1.15rem);
    line-height: 1.65;
    color: var(--text-secondary);
    text-wrap: pretty;
}

/* Shared by other /site pages — keep. */
.vo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    border-radius: var(--radius-full);
    background: var(--primary-surface);
    border: 1px solid rgba(255, 0, 0, 0.20);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.vo-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}
.vo-hero .vo-cta-row { justify-content: center; margin-top: 34px; }
.vo-hero .btn-lg { padding: 14px 26px; border-radius: 12px; }
.vo-hero-cta {
    box-shadow: 0 0 0 1px rgba(255, 0, 0, .35), 0 10px 26px -10px rgba(255, 0, 0, .55);
}
.vo-hero .btn-outline { background: #ffffff; color: var(--text); }
.vo-hero .btn-outline i { font-size: 12px; color: var(--primary); }

.vo-hero-meta {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    color: var(--text-muted);
    font-size: 13.5px;
}
.vo-hero-meta li { display: inline-flex; align-items: center; gap: 7px; }
.vo-hero-meta .fa-check { color: var(--success); }
.vo-hero-meta .fab { color: var(--text-secondary); font-size: 14px; }

.vo-compare-link {
    margin: 48px auto 0;
    display: flex; width: fit-content; align-items: center; justify-content: center; gap: 8px;
    text-align: center;
    color: var(--text-secondary); font-size: 14px; font-weight: 600;
}
.vo-compare-link i { color: var(--primary); }
.vo-compare-link .fa-arrow-right { font-size: 11px; transition: transform .2s ease; }
.vo-compare-link:hover { color: var(--primary); }
.vo-compare-link:hover .fa-arrow-right { transform: translateX(3px); }

/* ---------------------------------------------------------------------------
   The app window mock. Every value below is lifted from the desktop app's
   light theme (src/styles/globals.css) and its components, so the mock reads
   as the real product: rail 76px, #F9F9F9 page, white cards, #F2F2F2 chips,
   #E5E5E5 borders, #FF0000 fills and #C00000 red text.
   --------------------------------------------------------------------------- */
.vo-stage {
    position: relative;
    max-width: 1140px;
    margin: 64px auto 0;
    animation: vo-rise .9s .2s cubic-bezier(.2, .7, .2, 1) both;
}
.vo-stage::before {
    content: '';
    position: absolute;
    inset: 8% 6% -4%;
    z-index: -1;
    border-radius: 40px;
    background: radial-gradient(closest-side, rgba(255, 0, 0, .20), transparent);
    filter: blur(40px);
}

.vo-win {
    --a-bg: #F9F9F9;
    --a-surface: #FFFFFF;
    --a-surface-2: #F2F2F2;
    --a-border: #E5E5E5;
    --a-muted: #606060;
    --a-fg: #0F0F0F;
    --a-accent: #FF0000;
    --a-accent-soft: #C00000;
    --a-success: #0F7B31;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: var(--a-surface);
    color: var(--a-fg);
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    border: 1px solid rgba(15, 15, 15, .10);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, .7),
        0 1px 2px rgba(15, 15, 15, .06),
        0 30px 60px -24px rgba(15, 15, 15, .28),
        0 60px 120px -40px rgba(120, 0, 0, .22);
    user-select: none;
}

/* Native Windows title bar (tauri.conf.json: decorations on). */
.vo-win-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding-left: 12px;
    background: var(--a-surface);
    border-bottom: 1px solid var(--a-border);
    font-size: 12px;
    color: var(--a-fg);
}
.vo-win-icon { width: 16px; height: 16px; border-radius: 4px; object-fit: cover; }
.vo-win-ctrls { margin-left: auto; display: flex; height: 100%; }
.vo-win-ctrls i { position: relative; width: 46px; height: 100%; }
.vo-win-ctrls i::before,
.vo-win-ctrls i::after { content: ''; position: absolute; left: 50%; top: 50%; }
.vo-win-ctrls i:nth-child(1)::before { width: 10px; height: 1px; background: #1a1a1a; transform: translate(-50%, 0); }
.vo-win-ctrls i:nth-child(2)::before { width: 9px; height: 9px; border: 1px solid #1a1a1a; transform: translate(-50%, -50%); }
.vo-win-ctrls i:nth-child(3)::before,
.vo-win-ctrls i:nth-child(3)::after { width: 13px; height: 1px; background: #1a1a1a; transform: translate(-50%, -50%) rotate(45deg); }
.vo-win-ctrls i:nth-child(3)::after { transform: translate(-50%, -50%) rotate(-45deg); }

.vo-app {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    height: 640px;
    background: var(--a-bg);
}

/* Sidebar.tsx */
.vo-app-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 0;
    background: rgba(255, 255, 255, .5);
    border-right: 1px solid var(--a-border);
}
.vo-app-logo {
    width: 40px; height: 40px; margin-bottom: 12px;
    border-radius: 12px; overflow: hidden; background: #fff;
    box-shadow: 0 0 0 1px var(--a-border);
}
.vo-app-logo img { width: 100%; height: 100%; object-fit: cover; }
.vo-rail-btn {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    width: 60px; padding: 10px 0; border-radius: 12px;
    color: var(--a-muted); font-size: 10px; font-weight: 500; letter-spacing: .02em;
}
.vo-rail-btn > i { font-size: 17px; height: 20px; line-height: 20px; }
.vo-rail-btn.is-on {
    color: var(--a-accent-soft);
    background: rgba(255, 0, 0, .12);
    box-shadow: inset 0 0 0 1px rgba(255, 0, 0, .40);
}
.vo-rail-fill { flex: 1; min-height: 24px; }
.vo-theme {
    display: flex; align-items: center; width: 36px; height: 20px; padding: 0 2px;
    border-radius: 999px; border: 1px solid var(--a-border); background: var(--a-surface-2);
}
.vo-theme b {
    display: grid; place-items: center; width: 16px; height: 16px;
    border-radius: 50%; background: var(--a-accent); color: #fff; font-size: 8px;
}

.vo-app-main { min-width: 0; display: flex; flex-direction: column; overflow: hidden; }

/* ProjectView.tsx header */
.vo-proj-head {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 24px; border-bottom: 1px solid var(--a-border);
}
.vo-ico-btn {
    display: grid; place-items: center; flex-shrink: 0;
    width: 34px; height: 34px; border-radius: 8px;
    color: var(--a-muted); font-size: 13px;
}
.vo-proj-title {
    padding: 0 8px;
    font-family: var(--font-display); font-size: 16px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vo-proj-meta {
    margin-left: auto; display: flex; align-items: center; gap: 12px;
    font-size: 12px; color: var(--a-muted); white-space: nowrap;
}
.vo-proj-meta b { font-weight: 400; color: var(--a-fg); }
.vo-saved i { color: var(--a-success); font-size: 10px; margin-right: 2px; }

/* ProjectTabs.tsx */
.vo-tabs {
    display: flex; align-items: center; gap: 4px;
    padding: 0 24px; border-bottom: 1px solid var(--a-border);
    background: rgba(255, 255, 255, .3);
    white-space: nowrap; overflow: hidden;
}
.vo-tab {
    position: relative; display: flex; align-items: center; gap: 8px;
    padding: 11px 12px; font-size: 13.5px; font-weight: 500; color: var(--a-muted);
}
.vo-tab.is-on { color: var(--a-fg); }
.vo-tab.is-on::after {
    content: ''; position: absolute; left: 8px; right: 8px; bottom: 0;
    height: 2px; border-radius: 2px; background: var(--a-accent);
}
.vo-tab-line { width: 16px; height: 1px; flex-shrink: 0; background: var(--a-border); }
.vo-mark {
    display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%;
    border: 1px solid var(--a-border); font-size: 10px; font-weight: 600; color: var(--a-muted);
}
.vo-mark.is-done { border-color: transparent; background: rgba(255, 0, 0, .20); color: var(--a-accent-soft); font-size: 9px; }
.vo-mark.is-partial { border-color: rgba(255, 0, 0, .5); background: rgba(255, 0, 0, .10); color: var(--a-accent-soft); }

/* AutoRunBar.tsx */
.vo-autorun {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 24px; border-bottom: 1px solid var(--a-border);
    background: rgba(255, 0, 0, .05);
}
.vo-autorun-ico {
    display: grid; place-items: center; flex-shrink: 0;
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(255, 0, 0, .15); color: var(--a-accent-soft); font-size: 13px;
}
.vo-autorun-ico i { animation: vo-spin 1s linear infinite; }
.vo-autorun-text { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.vo-autorun-text b { font-weight: 500; font-size: 13.5px; }
.vo-autorun-text span { font-size: 12px; color: var(--a-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vo-lanes { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.vo-lane { display: flex; align-items: center; gap: 8px; color: var(--a-muted); font-size: 12px; }
.vo-meter { width: 96px; height: 6px; border-radius: 999px; background: var(--a-surface-2); overflow: hidden; }
.vo-meter > span {
    display: block; height: 100%; width: var(--w); border-radius: 999px; background: var(--a-accent);
    animation: vo-fill 1.6s .9s cubic-bezier(.2, .7, .2, 1) both;
}
.vo-lane em { width: 34px; text-align: right; font-style: normal; font-size: 11px; font-variant-numeric: tabular-nums; }
.vo-ghost-btn {
    display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
    height: 36px; padding: 0 14px; border-radius: 8px;
    color: var(--a-muted); font-size: 13.5px; font-weight: 500;
}

/* VisualsPanel.tsx */
.vo-panel {
    position: relative; flex: 1; min-height: 0; overflow: hidden;
    width: 100%; max-width: 896px; margin: 0 auto;
}
/* The scene list runs on below the fold, as it does in the app. */
.vo-panel::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
    background: linear-gradient(180deg, rgba(249, 249, 249, 0), var(--a-bg));
    pointer-events: none;
}
.vo-panel-head {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 14px 32px; border-bottom: 1px solid var(--a-border);
}
.vo-panel-head h3 { margin: 0; font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -.01em; color: var(--a-fg); }
.vo-panel-head p { margin: 0; font-size: 12px; color: var(--a-muted); white-space: nowrap; }
.vo-panel-actions { display: flex; align-items: center; gap: 8px; }
.vo-select {
    position: relative; display: flex; align-items: center;
    width: 118px; height: 36px; padding: 0 30px 0 12px; border-radius: 8px;
    background: var(--a-surface-2); border: 1px solid var(--a-border);
    font-size: 13px; white-space: nowrap; overflow: hidden;
}
.vo-select--wide { width: 164px; }
.vo-select::after {
    content: ''; position: absolute; right: 13px; top: 13px;
    width: 6px; height: 6px; border-right: 1.5px solid var(--a-muted); border-bottom: 1.5px solid var(--a-muted);
    transform: rotate(45deg);
}
.vo-btn1, .vo-btn2 {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px; flex-shrink: 0;
    height: 36px; padding: 0 14px; border-radius: 8px;
    font-size: 13px; font-weight: 500; white-space: nowrap;
}
.vo-btn2 { background: var(--a-surface-2); border: 1px solid var(--a-border); color: var(--a-fg); }
.vo-btn2 i { font-size: 12px; }
.vo-btn2.is-disabled { width: 36px; padding: 0; opacity: .5; }
.vo-btn1 {
    color: #fff;
    background: linear-gradient(135deg, var(--a-accent), var(--a-accent-soft));
    box-shadow: 0 0 0 1px rgba(255, 0, 0, .35), 0 8px 24px -8px rgba(255, 0, 0, .4);
}

.vo-acard { background: var(--a-surface); border: 1px solid var(--a-border); border-radius: 16px; }

/* ConsistencyToggle.tsx */
.vo-consist { display: flex; align-items: center; gap: 12px; margin: 14px 32px 0; padding: 11px 16px; }
.vo-consist > i { color: var(--a-accent-soft); font-size: 14px; }
.vo-consist div { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.vo-consist b { font-weight: 400; font-size: 13.5px; }
.vo-consist span { font-size: 12px; color: var(--a-muted); }
.vo-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; border-radius: 999px; background: var(--a-accent); }
.vo-switch::after {
    content: ''; position: absolute; top: 3px; left: 23px; width: 18px; height: 18px;
    border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}

/* SceneVisualRow.tsx */
.vo-rows { display: flex; flex-direction: column; gap: 10px; padding: 14px 32px 22px; }
.vo-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; }
.vo-num {
    display: grid; place-items: center; flex-shrink: 0; margin-top: 2px;
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--a-surface-2); color: var(--a-accent-soft); font-size: 12px; font-weight: 600;
}
.vo-th {
    position: relative; display: grid; place-items: center; flex-shrink: 0; overflow: hidden;
    width: 96px; height: 54px; border-radius: 8px;
    border: 1px solid var(--a-border); background-color: var(--a-surface-2);
    color: rgba(96, 96, 96, .45); font-size: 12px;
}
.vo-th.is-busy::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .06), transparent);
    transform: translateX(-100%);
    animation: vo-shimmer 1.6s infinite;
}
/* Painted stand-ins for generated images — no stock art to license. */
.vo-art-dawn {
    background:
        linear-gradient(#16161c, #16161c) 28% 60% / 36% 8% no-repeat,
        linear-gradient(#16161c, #16161c) 44% 44% / 2.5% 20% no-repeat,
        linear-gradient(#16161c, #16161c) 50% 38% / 16% 2.5% no-repeat,
        radial-gradient(circle at 74% 56%, #ffe2ae 0 7%, rgba(255, 196, 120, .45) 9%, transparent 22%),
        linear-gradient(180deg, #f3b07a 0%, #df7f6a 30%, #7a4f6e 52%, #1d2a48 58%, #0b1528 100%);
}
.vo-art-trench {
    background:
        radial-gradient(circle at 52% 46%, #fff6cf 0 3%, rgba(255, 236, 170, .55) 6%, transparent 16%),
        linear-gradient(104deg, transparent 38%, rgba(150, 215, 255, .22) 47%, transparent 56%),
        linear-gradient(76deg, transparent 52%, rgba(150, 215, 255, .14) 60%, transparent 68%),
        linear-gradient(180deg, #2a7aa6 0%, #0e3558 45%, #03101f 100%);
}
.vo-art-sonar {
    background:
        radial-gradient(circle at 63% 44%, #d4ffe6 0 3%, rgba(90, 255, 170, .6) 5%, transparent 11%),
        repeating-radial-gradient(circle at 50% 115%, rgba(90, 255, 170, .40) 0 1px, transparent 1.5px 8px),
        radial-gradient(circle at 50% 115%, #0f6a45 0%, #05291a 55%, #020c08 100%);
}
.vo-row-body { flex: 1; min-width: 0; }
.vo-row-body p {
    margin: 0; font-size: 13.5px; color: var(--a-fg);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vo-badge {
    display: inline-flex; align-items: center; gap: 4px; margin-top: 7px;
    padding: 2px 0; border-radius: 6px; font-size: 11px; font-weight: 500; letter-spacing: .02em;
    color: var(--a-muted);
}
.vo-badge--ok {
    padding: 2px 8px;
    background: rgba(15, 123, 49, .15); border: 1px solid rgba(15, 123, 49, .30); color: var(--a-success);
}
.vo-badge i { font-size: 9px; }
.vo-cast {
    display: inline-flex; align-items: center; gap: 5px; margin: 7px 0 0 6px;
    padding: 2px 8px; border-radius: 999px;
    background: rgba(255, 0, 0, .08); border: 1px solid rgba(255, 0, 0, .25);
    color: var(--a-accent-soft); font-size: 11px; font-weight: 500;
}
.vo-cast i { font-size: 9px; }

/* Floating proof cards around the window */
.vo-float {
    position: absolute; z-index: 2;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: 14px;
    animation: vo-bob 6s ease-in-out infinite;
}
.vo-float--captions {
    left: 120px; bottom: -34px;
    flex-direction: column; align-items: flex-start; gap: 6px;
    background: rgba(15, 15, 15, .92);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    box-shadow: 0 24px 48px -18px rgba(0, 0, 0, .55);
}
.vo-float-label { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #AAAAAA; }
.vo-float-label i { color: #FF6B6B; margin-right: 4px; }
.vo-karaoke { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.vo-karaoke b { padding: 0 6px; border-radius: 6px; background: var(--primary); }
.vo-float--export {
    right: -36px; top: -30px;
    background: #fff; border: 1px solid var(--border);
    box-shadow: 0 24px 48px -20px rgba(15, 15, 15, .30);
    animation-delay: -3s;
}
.vo-float-ico {
    display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, #FF0000, #C00000); color: #fff; font-size: 15px;
}
.vo-float--export > span:last-child { display: flex; flex-direction: column; }
.vo-float--export b { font-size: 13.5px; color: var(--text); }
.vo-float--export em { font-style: normal; font-size: 12px; color: var(--text-muted); }

@keyframes vo-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes vo-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes vo-spin { to { transform: rotate(360deg); } }
@keyframes vo-shimmer { to { transform: translateX(100%); } }
@keyframes vo-fill { from { width: 0; } }

/* The floating cards sit outside the window; only show them where the page
   has room beside it, so they never cover the mock. */
@media (max-width: 1260px) {
    .vo-float { display: none; }
}
@media (max-width: 1040px) {
    .vo-lanes, .vo-select--wide, .vo-proj-meta > span:not(.vo-saved) { display: none; }
}
@media (max-width: 820px) {
    .vo-hero { padding: 56px 0 56px; }
    .vo-stage { margin-top: 44px; }
    .vo-panel-actions .vo-select, .vo-panel-actions .vo-btn2 { display: none; }
    .vo-app { height: 560px; }
    .vo-panel-head, .vo-rows { padding-left: 18px; padding-right: 18px; }
    .vo-consist { margin-left: 18px; margin-right: 18px; }
    .vo-proj-head, .vo-tabs, .vo-autorun { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 640px) {
    .vo-app { grid-template-columns: minmax(0, 1fr); height: 500px; }
    .vo-app-rail, .vo-ghost-btn, .vo-consist span, .vo-tab-line { display: none; }
    .vo-tab { padding: 10px 8px; font-size: 12.5px; }
    .vo-th { width: 64px; height: 36px; }
    .vo-row { gap: 10px; padding: 12px; }
    .vo-num { display: none; }
    .vo-row-body p { font-size: 12.5px; }
    .vo-row > .vo-btn2:not(.is-disabled) { width: 36px; padding: 0; font-size: 0; gap: 0; }
    .vo-cast { display: none; }
    .vo-win-ctrls i { width: 34px; }
    .vo-hero-meta { gap: 6px 16px; font-size: 13px; }
    .vo-hero .vo-cta-row .btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .vo-hero-copy > *, .vo-stage, .vo-float, .vo-meter > span,
    .vo-autorun-ico i, .vo-th.is-busy::after, .vo-row .fa-spin { animation: none; }
}

/* ===========================================================================
   Homepage sections (below the hero). Homepage-only vh- classes, so none of
   this can move the shared vo- components other /site pages are built from.
   One rhythm throughout: kicker → heading → lead, 16px cards, the app's
   red for fills and #C00000 for red text.
   =========================================================================== */
.vh-sec { padding: 112px 0; position: relative; }
.vh-sec--tint { background: var(--surface-1); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.vh-sec--dark { background: #0F0F0F; color: #F1F1F1; overflow: hidden; }
.vh-sec--dark::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(700px 360px at 50% 0%, rgba(255, 0, 0, .22), transparent 70%);
}
.vh-sec--dark .container { position: relative; }

.vh-head { max-width: 44rem; margin: 0 auto 56px; text-align: center; }
.vh-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-size: 13px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
}
.vh-kicker::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: var(--primary); }
.vh-head h2, .vh-split-copy h2, .vh-faq-side h2, .vh-final h2 {
    margin: 14px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    line-height: 1.08; letter-spacing: -.035em;
    color: var(--text); text-wrap: balance;
}
.vh-head p, .vh-split-copy > p, .vh-faq-side > p {
    margin: 16px 0 0; color: var(--text-secondary);
    font-size: 1.08rem; line-height: 1.65; text-wrap: pretty;
}
.vh-sec--dark .vh-kicker { color: #FF6B6B; }
.vh-sec--dark .vh-head h2 { color: #fff; }
.vh-sec--dark .vh-head p { color: #AAAAAA; }

.vh-ico {
    display: grid; place-items: center; flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--primary-surface); color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(255, 0, 0, .14);
    font-size: 17px;
}
.vh-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-size: 14.5px; font-weight: 600;
}
.vh-link i { font-size: 11px; transition: transform .2s ease; }
.vh-link:hover { color: var(--primary); }
.vh-link:hover i, a:hover > .vh-link i { transform: translateX(3px); }
.vh-center-link { margin: 36px 0 0; text-align: center; }

/* Shared by the small app mocks in these sections — same palette as .vo-win. */
.vh-ui {
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 15, 15, .05), 0 30px 60px -30px rgba(15, 15, 15, .25);
    color: #0F0F0F; font-size: 13px; text-align: left;
    user-select: none;
}
.vh-screen-cap {
    position: absolute; left: 50%; bottom: 12%; transform: translateX(-50%);
    padding: 6px 12px; border-radius: 8px; white-space: nowrap;
    background: rgba(0, 0, 0, .55); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: clamp(12px, 1.4vw, 17px);
}
.vh-screen-cap b { color: #FF4D4D; }

/* --- proof: providers marquee + stats -------------------------------------- */
.vh-proof { padding: 20px 0 32px; background: #fff; }
.vh-proof-label {
    margin: 0 0 22px; text-align: center;
    font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: var(--text-muted);
}
.vh-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.vh-marquee-track { display: flex; width: max-content; gap: 56px; animation: vh-marquee 38s linear infinite; }
.vh-marquee:hover .vh-marquee-track { animation-play-state: paused; }
.vh-logo {
    display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
    font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -.02em;
    color: #8a8a8a; transition: color .2s ease;
}
.vh-logo i { font-size: 18px; }
.vh-logo:hover { color: var(--text); }
@keyframes vh-marquee { to { transform: translateX(calc(-50% - 28px)); } }

.vh-stats {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border); border-radius: 20px; background: #fff;
    box-shadow: 0 20px 50px -35px rgba(15, 15, 15, .25);
}
.vh-stat { padding: 28px 24px; text-align: center; }
.vh-stat + .vh-stat { border-left: 1px solid var(--border); }
.vh-stat b {
    display: block; font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -.04em; line-height: 1;
    color: var(--text);
}
.vh-stat:first-child b, .vh-stat:nth-child(3) b { color: var(--primary); }
.vh-stat span { display: block; margin-top: 10px; color: var(--text-secondary); font-size: 14px; line-height: 1.45; }

/* --- before / after -------------------------------------------------------- */
.vh-flow {
    display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr);
    align-items: center; gap: 28px;
    max-width: 1100px; margin: 0 auto;
}
.vh-doc, .vh-player {
    padding: 22px; border-radius: 20px; background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px -36px rgba(15, 15, 15, .28);
}
.vh-card-top {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
    font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--text-muted);
}
.vh-card-top i { color: var(--primary); }
.vh-doc p { margin: 0; font-size: 16px; line-height: 2; color: var(--text); }
.vh-sent {
    padding: 2px 4px; border-radius: 5px;
    -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.vh-sent::before {
    content: attr(data-n);
    display: inline-grid; place-items: center; vertical-align: 2px;
    width: 18px; height: 18px; margin-right: 6px; border-radius: 5px;
    background: var(--primary); color: #fff; font-size: 10.5px; font-weight: 700; line-height: 1;
}
.vh-sent[data-n="1"] { background: rgba(255, 0, 0, .07); }
.vh-sent[data-n="2"] { background: rgba(255, 150, 0, .10); }
.vh-sent[data-n="3"] { background: rgba(15, 123, 49, .08); }
.vh-doc-foot {
    margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--border);
    font-size: 13px; font-weight: 600; color: var(--success);
}
.vh-pipe { display: flex; flex-direction: column; gap: 10px; position: relative; }
.vh-pipe::before {
    content: ''; position: absolute; left: 50%; top: -20px; bottom: -20px; width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(255, 0, 0, .35), transparent);
}
.vh-pipe span {
    position: relative; display: flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 999px; white-space: nowrap;
    background: #fff; border: 1px solid var(--border);
    box-shadow: 0 6px 16px -10px rgba(15, 15, 15, .3);
    font-size: 13px; font-weight: 600; color: var(--text);
    animation: vh-pulse 3.2s ease-in-out infinite;
}
.vh-pipe span:nth-child(2) { animation-delay: .4s; }
.vh-pipe span:nth-child(3) { animation-delay: .8s; }
.vh-pipe span:nth-child(4) { animation-delay: 1.2s; }
.vh-pipe i { color: var(--primary); width: 14px; text-align: center; }
@keyframes vh-pulse {
    0%, 70%, 100% { border-color: var(--border); }
    20% { border-color: rgba(255, 0, 0, .55); box-shadow: 0 0 0 4px rgba(255, 0, 0, .08); }
}
.vh-screen { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; }
.vh-controls {
    display: flex; align-items: center; gap: 12px; margin-top: 12px;
    font-size: 13px; color: var(--text-secondary);
}
.vh-controls i { color: var(--text); }
.vh-controls em { font-style: normal; font-variant-numeric: tabular-nums; }
.vh-scrub { flex: 1; height: 5px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.vh-scrub span { display: block; width: 32%; height: 100%; background: var(--primary); border-radius: 999px; }

/* --- how it works ---------------------------------------------------------- */
.vh-steps {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
    position: relative;
}
.vh-steps::before {
    content: ''; position: absolute; left: 12%; right: 12%; top: 44px; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 0, 0, .35) 0 8px, transparent 8px 16px);
}
.vh-step {
    position: relative; padding: 26px 24px 28px;
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vh-step:hover { transform: translateY(-4px); border-color: rgba(255, 0, 0, .3); box-shadow: 0 24px 48px -30px rgba(15, 15, 15, .3); }
.vh-step-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vh-step-n {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
    background: linear-gradient(135deg, #FF1A1A, #C00000); color: #fff;
    font-family: var(--font-display); font-size: 17px; font-weight: 700;
    box-shadow: 0 8px 18px -8px rgba(255, 0, 0, .6);
}
.vh-step-tab {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px;
    background: var(--surface-3); color: var(--text-secondary);
    font-size: 12px; font-weight: 600;
}
.vh-step-tab i { font-size: 10.5px; color: var(--accent); }
.vh-step h3 { margin: 20px 0 8px; font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.vh-step p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.62; }
.vh-inline-cta {
    margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-align: center;
}
.vh-inline-cta span { color: var(--text-muted); font-size: 14px; }
.vh-inline-cta .btn { border-radius: 12px; box-shadow: 0 10px 26px -10px rgba(255, 0, 0, .55); }

/* --- split feature rows ---------------------------------------------------- */
.vh-split {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center; gap: 72px;
}
.vh-split > *, .vh-flow > *, .vh-faq-wrap > * { min-width: 0; }
.vh-split--rev .vh-split-copy { order: 2; }
.vh-split-copy .vh-kicker + h2 { margin-top: 14px; }
.vh-split-copy > p + p { margin-top: 12px; }
.vh-checks { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.vh-checks li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 500; color: var(--text); }
.vh-checks i {
    display: grid; place-items: center; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(15, 123, 49, .12); color: var(--success); font-size: 10px;
}
.vh-visual { position: relative; }
.vh-visual::before {
    content: ''; position: absolute; inset: 10% 5%; z-index: -1;
    background: radial-gradient(closest-side, rgba(255, 0, 0, .14), transparent); filter: blur(30px);
}
.vh-note {
    position: absolute; right: -12px; bottom: -18px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: 12px;
    background: #0F0F0F; color: #fff; font-size: 13px; font-weight: 600;
    box-shadow: 0 18px 36px -16px rgba(0, 0, 0, .5);
}
.vh-note i { color: #FF6B6B; }

/* AI Director shot plan */
.vh-plan { padding: 20px; }
.vh-plan-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.vh-plan-head b { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.vh-plan-head span { font-size: 12px; color: #606060; }
.vh-seg { display: inline-flex; padding: 3px; border-radius: 10px; background: #F2F2F2; border: 1px solid #E5E5E5; }
.vh-seg span { padding: 5px 11px; border-radius: 7px; font-size: 12px; font-weight: 500; color: #606060; }
.vh-seg .is-on { background: #fff; color: #0F0F0F; box-shadow: 0 1px 3px rgba(0, 0, 0, .12); }
.vh-plan-line {
    margin: 14px 0; padding: 10px 12px; border-radius: 10px;
    background: #F9F9F9; border: 1px solid #E5E5E5;
    font-size: 13px; color: #606060; font-style: italic;
}
.vh-shots { display: grid; gap: 8px; }
.vh-shot {
    display: flex; align-items: center; gap: 12px; padding: 10px;
    border: 1px solid #E5E5E5; border-radius: 12px; background: #fff;
}
.vh-shot > div { flex: 1; min-width: 0; }
.vh-shot b { display: block; font-size: 13px; font-weight: 600; }
.vh-shot span { font-size: 12px; color: #606060; }
.vh-shot-th {
    position: relative; display: grid !important; place-items: center; flex-shrink: 0;
    width: 72px; height: 40px; border-radius: 8px; color: #fff; font-size: 11px;
}
.vh-tag {
    padding: 3px 9px; border-radius: 6px; font-size: 11px !important; font-weight: 600;
    background: rgba(255, 0, 0, .08); color: #C00000 !important; border: 1px solid rgba(255, 0, 0, .2);
}
.vh-rhythm { display: flex; gap: 4px; margin-top: 14px; height: 8px; }
.vh-rhythm span { border-radius: 999px; background: #FF0000; }
.vh-rhythm span:nth-child(2) { background: #FF6B6B; }
.vh-rhythm span:nth-child(3) { background: #C00000; }

/* --- visual sources -------------------------------------------------------- */
.vh-sources { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.vh-source {
    overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 20px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.vh-source:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -34px rgba(15, 15, 15, .35); }
.vh-source-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.vh-source-media--0 {
    background:
        radial-gradient(circle at 70% 40%, rgba(255, 220, 160, .9) 0 6%, transparent 20%),
        linear-gradient(160deg, #3a1c71 0%, #d76d77 55%, #ffaf7b 100%);
}
.vh-source-media--1 { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: #F2F2F2; }
.vh-source-media--1 span { border-radius: 8px; }
.vh-source-media--2 {
    background:
        linear-gradient(104deg, transparent 38%, rgba(150, 215, 255, .22) 47%, transparent 56%),
        linear-gradient(180deg, #2a7aa6 0%, #0e3558 50%, #03101f 100%);
}
.vh-media-chip {
    position: absolute; left: 12px; bottom: 12px;
    padding: 4px 10px; border-radius: 8px; background: rgba(0, 0, 0, .6); color: #fff;
    font-size: 12px; font-weight: 600;
}
.vh-media-play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255, 255, 255, .92); color: var(--primary); font-size: 16px;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .5);
}
.vh-media-play i { margin-left: 3px; }
.vh-source-body { padding: 22px 24px 24px; }
.vh-source-body h3 { display: flex; align-items: center; gap: 10px; margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--text); }
.vh-source-body h3 i { color: var(--primary); font-size: 15px; }
.vh-source-body p { margin: 10px 0 0; color: var(--text-secondary); font-size: 15px; line-height: 1.62; }
.vh-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.vh-tags span {
    padding: 4px 10px; border-radius: 999px; background: var(--surface-3);
    color: var(--text-secondary); font-size: 12px; font-weight: 600;
}

/* --- captions & timeline --------------------------------------------------- */
.vh-points { margin-top: 28px; display: grid; gap: 22px; }
.vh-point { display: flex; gap: 16px; }
.vh-point h3 { margin: 2px 0 6px; font-size: 1.08rem; font-weight: 700; color: var(--text); }
.vh-point p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.62; }

.vh-tl { padding: 14px; background: #fff; }
.vh-tl-preview { position: relative; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; }
.vh-tl-fps {
    position: absolute; top: 10px; right: 10px; padding: 3px 8px; border-radius: 6px;
    background: rgba(0, 0, 0, .55); color: #fff; font-size: 11px; font-weight: 600;
}
.vh-tl-bar { display: flex; align-items: center; gap: 12px; padding: 12px 4px; font-size: 12px; color: #606060; }
.vh-tl-bar > i { color: #0F0F0F; }
.vh-tl-bar em { font-style: normal; font-variant-numeric: tabular-nums; color: #0F0F0F; }
.vh-tl-zoom { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 11px; }
.vh-tl-zoom span { width: 60px; height: 4px; border-radius: 999px; background: #E5E5E5; }
.vh-tracks { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; padding: 10px; border-radius: 10px; background: #F9F9F9; border: 1px solid #E5E5E5; }
.vh-track { display: flex; align-items: center; gap: 4px; height: 30px; }
.vh-track > span { min-width: 0; }
.vh-track > i { width: 26px; flex-shrink: 0; text-align: center; font-size: 11px; color: #606060; }
.vh-clip { height: 100%; border-radius: 6px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.vh-wave {
    height: 100%; border-radius: 6px; background-color: rgba(255, 0, 0, .08);
    background-image: repeating-linear-gradient(90deg, rgba(255, 0, 0, .55) 0 2px, transparent 2px 5px);
    -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 40px, rgba(0,0,0,.5) 40px 55px, #000 55px 90px, rgba(0,0,0,.35) 90px 110px);
            mask-image: repeating-linear-gradient(90deg, #000 0 40px, rgba(0,0,0,.5) 40px 55px, #000 55px 90px, rgba(0,0,0,.35) 90px 110px);
}
.vh-words { flex: 1; display: flex; gap: 3px; height: 100%; overflow: hidden; }
.vh-words span {
    display: grid; place-items: center; padding: 0 8px; border-radius: 6px;
    background: #fff; border: 1px solid #E5E5E5; font-size: 11px; font-weight: 500; color: #606060; white-space: nowrap;
}
.vh-words .is-on { background: #FF0000; border-color: #FF0000; color: #fff; }
.vh-music {
    display: flex; align-items: center; height: 100%; padding: 0 10px; border-radius: 6px;
    background: linear-gradient(90deg, rgba(15, 123, 49, .04), rgba(15, 123, 49, .16) 30%);
    border: 1px solid rgba(15, 123, 49, .25); color: #0F7B31; font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden;
}
.vh-playhead {
    position: absolute; top: 4px; bottom: 4px; left: 44%; width: 2px; z-index: 1;
    background: #FF0000; border-radius: 2px;
    animation: vh-play 8s linear infinite alternate;
}
.vh-playhead::before {
    content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 10px; border-radius: 3px; background: #FF0000;
}
@keyframes vh-play { from { left: 34%; } to { left: 62%; } }

/* --- features bento ---------------------------------------------------------- */
.vh-bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.vh-tile {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 18px;
    padding: 28px; border-radius: 20px;
    background: #fff; border: 1px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vh-tile:hover { transform: translateY(-4px); border-color: rgba(255, 0, 0, .28); box-shadow: 0 26px 52px -34px rgba(15, 15, 15, .32); }
.vh-tile h3 { margin: 0; font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.vh-tile p { margin: 8px 0 0; color: var(--text-secondary); font-size: 15px; line-height: 1.62; }

.vh-tile--0 {
    grid-column: span 2;
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 18px 36px;
    background: #0F0F0F; border-color: #0F0F0F; color: #fff;
}
.vh-tile--0::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(420px 220px at 100% 0%, rgba(255, 0, 0, .35), transparent 70%);
}
.vh-tile--0 > * { position: relative; }
.vh-tile--0 .vh-ico { grid-column: 1; grid-row: 1; background: #FF0000; color: #fff; box-shadow: 0 10px 24px -10px rgba(255, 0, 0, .8); }
.vh-tile--0 .vh-tile-copy { grid-column: 1; grid-row: 2; }
.vh-tile--0 .vh-auto { grid-column: 2; grid-row: 1 / 3; }
.vh-tile--0 h3 { color: #fff; font-size: 1.4rem; }
.vh-tile--0 p { color: #AAAAAA; }
.vh-tile--0:hover { border-color: #0F0F0F; }
.vh-auto { display: grid; gap: 10px; padding: 16px; border-radius: 14px; background: #212121; border: 1px solid #303030; }
.vh-auto-row { display: grid; grid-template-columns: 14px 64px 1fr 38px; align-items: center; gap: 8px; font-size: 12px; color: #AAAAAA; }
.vh-auto-row i { color: #FF6B6B; }
.vh-auto-row em { font-style: normal; text-align: right; font-variant-numeric: tabular-nums; }
.vh-auto-bar { height: 6px; border-radius: 999px; background: #303030; overflow: hidden; }
.vh-auto-bar span { display: block; height: 100%; width: var(--w); border-radius: 999px; background: #FF0000; }

.vh-faces { display: flex; align-items: center; margin-top: auto; }
.vh-face {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #f3b07a, #7a4f6e); color: rgba(255, 255, 255, .9); font-size: 17px;
    border: 3px solid #fff; box-shadow: 0 4px 10px -4px rgba(0, 0, 0, .3);
}
.vh-face + .vh-face { margin-left: -10px; }
.vh-faces em { margin-left: 12px; font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--success); }

.vh-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.vh-chips span {
    padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 600;
    background: var(--surface-3); color: var(--text-secondary);
}
.vh-chips span:first-child { background: #FF0000; color: #fff; }

.vh-ratios { display: flex; align-items: flex-end; gap: 14px; margin-top: auto; }
.vh-ratio {
    display: grid; place-items: center; border-radius: 8px;
    border: 2px solid var(--text); font-size: 12px; font-weight: 700; color: var(--text);
}
.vh-ratio--v { width: 40px; height: 70px; border-color: var(--primary); color: var(--accent); background: var(--primary-surface); }
.vh-ratio--h { width: 110px; height: 62px; }

.vh-tile--8 {
    grid-column: 1 / -1;
    flex-direction: row; align-items: center; gap: 20px;
}
.vh-tile--8 .vh-tile-copy { flex: 1; }
.vh-platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.vh-platforms .btn { border-radius: 10px; }

/* --- who it's for (dark) --------------------------------------------------- */
.vh-people { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.vh-person {
    padding: 28px; border-radius: 20px;
    background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.vh-person:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255, 107, 107, .4); transform: translateY(-4px); }
.vh-person .vh-ico { background: rgba(255, 0, 0, .16); color: #FF6B6B; box-shadow: inset 0 0 0 1px rgba(255, 0, 0, .3); }
.vh-person h3 { margin: 18px 0 8px; font-size: 1.1rem; font-weight: 700; color: #fff; }
.vh-person p { margin: 0; color: #AAAAAA; font-size: 15px; line-height: 1.62; }

/* --- compare teaser -------------------------------------------------------- */
.vh-compare { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.vh-vs {
    display: flex; flex-direction: column; padding: 26px; border-radius: 20px;
    background: #fff; border: 1px solid var(--border); color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vh-vs:hover { transform: translateY(-4px); border-color: rgba(255, 0, 0, .28); box-shadow: 0 26px 52px -34px rgba(15, 15, 15, .32); }
.vh-vs-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vh-vs-logos { display: flex; align-items: center; gap: 8px; }
.vh-vs-logos img, .vh-vs-logos > span {
    display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
    border: 1px solid var(--border); background: #fff; object-fit: cover;
}
.vh-vs-logos > span { background: var(--surface-3); color: var(--text-secondary); font-size: 15px; }
.vh-vs-logos em { font-style: normal; font-size: 12px; font-weight: 700; color: var(--text-muted); }
.vh-vs-cat { padding: 4px 10px; border-radius: 999px; background: var(--surface-3); font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.vh-vs h3 { margin: 20px 0 8px; font-size: 1.12rem; font-weight: 700; color: var(--text); }
.vh-vs p { margin: 0 0 18px; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.vh-vs .vh-link { margin-top: auto; }

/* --- pricing --------------------------------------------------------------- */
.vh-plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.vh-plan {
    position: relative; display: flex; flex-direction: column;
    padding: 28px 24px; border-radius: 20px;
    background: #fff; border: 1px solid var(--border);
}
.vh-plan h3 { margin: 0; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.vh-plan-note { margin: 6px 0 0; min-height: 44px; color: var(--text-secondary); font-size: 14px; }
.vh-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin: 22px 0 22px; font-family: var(--font-display); color: var(--text); }
.vh-price b { font-size: 2.6rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.vh-price span { font-family: var(--font-sans); color: var(--text-muted); font-size: 14px; }
.vh-save {
    font-family: var(--font-sans); font-style: normal; padding: 3px 8px; border-radius: 999px;
    background: rgba(15, 123, 49, .12); color: var(--success); font-size: 12px; font-weight: 700;
}
.vh-plan .btn { width: 100%; border-radius: 10px; }
.vh-plan .btn-outline { color: var(--text); background: #fff; }
.vh-plan ul { list-style: none; margin: 22px 0 0; padding: 22px 0 0; border-top: 1px solid var(--border-light); display: grid; gap: 11px; }
.vh-plan li { display: flex; gap: 10px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.45; }
.vh-plan li i { color: var(--success); margin-top: 4px; font-size: 11px; }
.vh-plan--best {
    background: #0F0F0F; border-color: #0F0F0F; color: #fff;
    box-shadow: 0 30px 60px -30px rgba(255, 0, 0, .45);
}
.vh-plan--best::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(300px 180px at 100% 0%, rgba(255, 0, 0, .35), transparent 70%);
}
.vh-plan--best > * { position: relative; }
.vh-plan--best h3, .vh-plan--best .vh-price { color: #fff; }
.vh-plan--best .vh-plan-note, .vh-plan--best li, .vh-plan--best .vh-price span { color: #AAAAAA; }
.vh-plan--best li i { color: #4ADE80; }
.vh-plan--best ul { border-top-color: #303030; }
.vh-plan-tag {
    position: absolute !important; top: 24px; right: 22px;
    padding: 4px 10px; border-radius: 999px; background: #FF0000; color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.vh-assure {
    list-style: none; margin: 36px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px;
    color: var(--text-secondary); font-size: 14.5px; font-weight: 500;
}
.vh-assure li { display: inline-flex; align-items: center; gap: 9px; }
.vh-assure i { color: var(--primary); }

/* --- faq ------------------------------------------------------------------- */
.vh-faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; }
.vh-faq-side { position: sticky; top: 100px; }
.vh-help {
    display: flex; gap: 14px; margin-top: 32px; padding: 20px;
    border-radius: 16px; background: var(--surface-1); border: 1px solid var(--border);
}
.vh-help b { display: block; color: var(--text); font-size: 15px; }
.vh-help div > span { display: block; margin: 4px 0 10px; color: var(--text-secondary); font-size: 14px; }
.vh-faq { display: grid; gap: 12px; }
.vh-faq details {
    border: 1px solid var(--border); border-radius: 14px; background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.vh-faq details[open] { border-color: rgba(255, 0, 0, .28); box-shadow: 0 16px 36px -28px rgba(15, 15, 15, .3); }
.vh-faq summary {
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 20px; font-size: 16px; font-weight: 600; color: var(--text);
}
.vh-faq summary::-webkit-details-marker { display: none; }
.vh-faq summary::after {
    content: '+'; display: grid; place-items: center; flex-shrink: 0;
    width: 28px; height: 28px; border-radius: 8px; background: var(--surface-3);
    font-size: 18px; font-weight: 500; color: var(--text-secondary); transition: transform .2s ease, background .2s ease;
}
.vh-faq details[open] summary::after { transform: rotate(45deg); background: var(--primary); color: #fff; }
.vh-faq summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 14px; }
.vh-faq p { margin: 0; padding: 0 20px 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* --- final cta ------------------------------------------------------------- */
.vh-final { padding: 24px 0 96px; background: #fff; }
.vh-final-card {
    position: relative; overflow: hidden; isolation: isolate;
    padding: 80px 32px; border-radius: 28px; text-align: center;
    background: #0F0F0F;
}
.vh-final-glow {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(600px 300px at 50% 120%, rgba(255, 0, 0, .55), transparent 70%),
        radial-gradient(400px 200px at 0% 0%, rgba(255, 0, 0, .18), transparent 70%);
}
.vh-final-glow::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 100%, #000, transparent 70%);
            mask-image: radial-gradient(ellipse at 50% 100%, #000, transparent 70%);
}
.vh-final-card .vh-kicker { color: #FF6B6B; }
.vh-final h2 { color: #fff; max-width: 20ch; margin-left: auto; margin-right: auto; }
.vh-final-card p { margin: 16px auto 0; color: #AAAAAA; font-size: 1.1rem; }
.vh-final .vo-cta-row { justify-content: center; margin-top: 32px; }
.vh-final .btn-lg { border-radius: 12px; }
.vh-final .btn-primary { box-shadow: 0 12px 30px -10px rgba(255, 0, 0, .7); }
.vh-btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .18); }
.vh-btn-ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.vh-legal {
    max-width: 52rem; margin: 28px auto 0; text-align: center;
    color: var(--text-muted); font-size: 13.5px; line-height: 1.65;
}
.vh-legal b { color: var(--text-secondary); }

/* ===========================================================================
   /pricing and /download. Same vh- system as the homepage: the page head
   reuses the hero's grid-and-glow background (.vo-hero-bg) at a smaller scale.
   =========================================================================== */
.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;
}
.vh-phero { position: relative; overflow: hidden; isolation: isolate; padding: 80px 0 96px; background: #fff; }
.vh-head--page { margin-bottom: 44px; }
.vh-head--page .vh-kicker, .vh-head--page h1, .vh-head--page p,
.vh-phero .vh-plans, .vh-phero .vh-builds, .vh-phero .vh-empty { animation: vo-rise .7s cubic-bezier(.2, .7, .2, 1) both; }
.vh-head--page h1 { animation-delay: .06s; }
.vh-head--page p { animation-delay: .12s; }
.vh-phero .vh-plans, .vh-phero .vh-builds, .vh-phero .vh-empty { animation-delay: .2s; }
.vh-head--page h1 {
    margin: 16px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 3.9rem);
    line-height: 1.04; letter-spacing: -.045em;
    color: var(--text); text-wrap: balance;
}
.vh-phero .vo-currency-row { margin-bottom: 32px; }
.vh-phero .vo-currency { background: #fff; }

.vh-promo {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    max-width: 640px; margin: 0 auto 28px; padding: 12px 18px; border-radius: 14px;
    background: rgba(15, 123, 49, .08); border: 1px solid rgba(15, 123, 49, .25);
    color: var(--text); font-size: 14.5px; text-align: left;
}
.vh-promo i { color: var(--success); }

.vh-plan-name { margin: 0; font-size: 1.05rem; font-weight: 700; color: var(--text); font-family: var(--font-sans); letter-spacing: 0; }
.vh-plan--best .vh-plan-name { color: #fff; }

/* Every plan includes */
.vh-included {
    list-style: none; margin: 0 auto; padding: 32px;
    max-width: 1000px;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 28px;
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
}
.vh-included li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-size: 15px; font-weight: 500; line-height: 1.45; }
.vh-included i {
    display: grid; place-items: center; flex-shrink: 0; width: 22px; height: 22px; margin-top: -1px; border-radius: 50%;
    background: rgba(15, 123, 49, .12); color: var(--success); font-size: 10px;
}

/* What you pay for */
.vh-costs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.vh-cost { padding: 28px; border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.vh-cost h3 { margin: 18px 0 8px; font-size: 1.12rem; font-weight: 700; color: var(--text); }
.vh-cost p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.62; }
.vh-cost:first-child { background: #0F0F0F; border-color: #0F0F0F; }
.vh-cost:first-child .vh-ico { background: #FF0000; color: #fff; box-shadow: none; }
.vh-cost:first-child h3 { color: #fff; }
.vh-cost:first-child p { color: #AAAAAA; }

/* Trial vs paid table */
.vh-table-wrap {
    position: relative; max-width: 900px; margin: 0 auto; overflow-x: auto;
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
}
.vh-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 15px; }
.vh-table th, .vh-table td { padding: 15px 22px; text-align: left; border-bottom: 1px solid var(--border-light); }
.vh-table tbody tr:last-child th, .vh-table tbody tr:last-child td { border-bottom: 0; }
.vh-table thead th {
    padding-top: 20px; padding-bottom: 20px;
    font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted);
}
.vh-table tbody th { font-weight: 500; color: var(--text); }
.vh-table td { width: 26%; text-align: center; color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.vh-table thead th:not(:first-child) { text-align: center; }
.vh-table .is-pro { background: rgba(255, 0, 0, .035); color: var(--text); font-weight: 600; }
.vh-table thead .is-pro { color: var(--accent); }
.vh-yes, .vh-no { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; font-size: 11px; }
.vh-yes { background: rgba(15, 123, 49, .12); color: var(--success); }
.vh-no { background: var(--surface-3); color: var(--text-disabled, #9a9a9a); }
.vh-table tbody tr:hover th, .vh-table tbody tr:hover td { background-color: var(--surface-1); }

/* Download builds */
.vh-builds { display: grid; gap: 20px; margin: 0 auto; }
.vh-builds--1 { grid-template-columns: minmax(0, 420px); justify-content: center; }
.vh-builds--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 860px; }
.vh-builds--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vh-build {
    position: relative; display: flex; flex-direction: column; align-items: flex-start;
    padding: 32px 28px 28px; border-radius: 20px;
    background: #fff; border: 1px solid var(--border);
    box-shadow: 0 24px 50px -40px rgba(15, 15, 15, .35);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vh-build:hover { transform: translateY(-4px); border-color: rgba(255, 0, 0, .28); box-shadow: 0 30px 60px -36px rgba(15, 15, 15, .35); }
.vh-build.is-suggested {
    border: 1.5px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #FF4D4D, #C00000) border-box;
    box-shadow: 0 30px 60px -30px rgba(255, 0, 0, .4);
}
.vh-build-ico {
    display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 20px; border-radius: 16px;
    background: var(--surface-3); color: var(--text); font-size: 28px;
}
.vh-build.is-suggested .vh-build-ico { background: #0F0F0F; color: #fff; }
.vh-build .vh-plan-name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: -.02em; }
.vh-build .vh-plan-note { min-height: 0; }
.vh-build-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.vh-build-meta:empty { display: none; }
.vh-build-meta span {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px;
    background: var(--surface-3); color: var(--text-secondary); font-size: 12.5px; font-weight: 600;
}
.vh-build-meta i { font-size: 10.5px; color: var(--accent); }
.vh-build .btn { width: 100%; margin-top: auto; border-radius: 12px; }
.vh-build .btn-outline { background: #fff; color: var(--text); }
.vh-build.is-suggested .btn-primary { box-shadow: 0 10px 26px -10px rgba(255, 0, 0, .55); }

.vh-notes {
    display: flex; gap: 16px; max-width: 860px; margin: 36px auto 0; padding: 24px;
    border-radius: 20px; background: var(--surface-1); border: 1px solid var(--border);
}
.vh-notes h3 { margin: 2px 0 6px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.vh-notes p { margin: 0 0 12px; color: var(--text-secondary); font-size: 15px; line-height: 1.65; }

.vh-empty {
    max-width: 560px; margin: 0 auto; padding: 44px 32px; text-align: center;
    border-radius: 24px; background: #fff; border: 1px solid var(--border);
    box-shadow: 0 30px 60px -40px rgba(15, 15, 15, .3);
}
.vh-empty .vh-ico { margin: 0 auto; width: 56px; height: 56px; font-size: 22px; }
.vh-empty h2 { margin: 18px 0 8px; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -.02em; color: var(--text); }
.vh-empty p { margin: 0 0 24px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.6; }
.vh-empty .btn { border-radius: 12px; }

.vh-steps.vh-steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vh-steps--3::before { left: 16%; right: 16%; }

.vh-reqs { list-style: none; margin: 0; padding: 8px; display: grid; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 30px 60px -40px rgba(15, 15, 15, .3); }
.vh-reqs li { display: flex; align-items: center; gap: 16px; padding: 16px; }
.vh-reqs li + li { border-top: 1px solid var(--border-light); }
.vh-reqs b { display: block; font-size: 15px; color: var(--text); }
.vh-reqs div span { display: block; margin-top: 2px; font-size: 14.5px; line-height: 1.5; color: var(--text-secondary); }
.vh-fine { font-size: 14px !important; color: var(--text-muted) !important; }
.vh-fine a { color: var(--accent); font-weight: 600; }

.vh-final--top { padding-top: 96px; }

@media (max-width: 960px) {
    .vh-included { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vh-builds--3 { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
    .vh-costs { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin: 0 auto; }
    .vh-steps.vh-steps--3 { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin: 0 auto; }
}
@media (max-width: 640px) {
    .vh-phero { padding: 56px 0 64px; }
    .vh-included, .vh-builds--2, .vh-builds--3 { grid-template-columns: minmax(0, 1fr); }
    .vh-included { padding: 22px; }
    .vh-table th, .vh-table td { padding: 13px 14px; }
    .vh-notes { flex-direction: column; }
    .vh-final--top { padding-top: 64px; }
}
@media (prefers-reduced-motion: reduce) {
    .vh-head--page .vh-kicker, .vh-head--page h1, .vh-head--page p,
    .vh-phero .vh-plans, .vh-phero .vh-builds, .vh-phero .vh-empty { animation: none; }
    .vh-build { transition: none; }
    .vh-build:hover { transform: none; }
}

/* ===========================================================================
   /blog, /blog/{slug}, /tutorials, /tutorials/{slug}. Listing pages share
   .vh-card; article pages share .vh-read (prose + sticky "On this page").
   =========================================================================== */
.vh-phero--compact { padding-bottom: 48px; }
.vh-phero--article { padding: 40px 0 0; overflow: visible; }
.vh-phero--article .vo-hero-bg { overflow: hidden; }
.vh-phero--bare { padding-bottom: 56px; border-bottom: 1px solid var(--border-light); }
/* These heads sit on a white section, so drop the hero's grey fade at the bottom. */
.vh-phero--compact .vo-hero-bg, .vh-phero--article .vo-hero-bg {
    background: radial-gradient(640px 320px at 50% 0%, rgba(255, 0, 0, .10), transparent 70%);
}
.vh-sec--flush { padding-top: 12px; }
.vh-sec--short { padding: 56px 0; }
.vh-sec--article { padding: 56px 0 96px; }

/* Filters + search */
.vh-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.vh-filter a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px;
    background: #fff; border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 14px; font-weight: 600;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.vh-filter a span {
    display: grid; place-items: center; min-width: 22px; height: 20px; padding: 0 6px; border-radius: 999px;
    background: var(--surface-3); color: var(--text-muted); font-size: 11.5px;
}
.vh-filter a:hover { border-color: rgba(255, 0, 0, .35); color: var(--text); }
.vh-filter a.is-on { background: #0F0F0F; border-color: #0F0F0F; color: #fff; }
.vh-filter a.is-on span { background: #FF0000; color: #fff; }

.vh-search { position: relative; max-width: 520px; margin: 0 auto 20px; }
.vh-search i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 15px; }
.vh-search input {
    width: 100%; height: 52px; padding: 0 18px 0 46px; border-radius: 14px;
    background: #fff; border: 1px solid var(--border);
    box-shadow: 0 12px 30px -24px rgba(15, 15, 15, .4);
    font-family: inherit; font-size: 15.5px; color: var(--text);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.vh-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 0, 0, .12); }

/* Shared meta line */
.vh-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; color: var(--text-muted); font-size: 13px; }
.vh-meta i { font-size: 11px; margin-right: 2px; }
.vh-cat {
    display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px;
    background: var(--primary-surface); color: var(--accent);
    font-size: 12px; font-weight: 700; letter-spacing: .02em;
}

/* Featured post */
.vh-feature {
    display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); overflow: hidden;
    margin-bottom: 28px; border-radius: 24px; background: #fff; border: 1px solid var(--border);
    color: inherit; transition: transform .25s ease, box-shadow .25s ease;
}
.vh-feature:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -36px rgba(15, 15, 15, .35); }
.vh-feature-art { position: relative; min-height: 320px; }
.vh-feature-badge {
    position: absolute; left: 20px; top: 20px; display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .92);
    color: var(--text); font-size: 12.5px; font-weight: 700;
}
.vh-feature-badge i { color: var(--primary); font-size: 11px; }
.vh-feature-body { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 44px; }
.vh-feature-body h2 {
    margin: 0; font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.12; letter-spacing: -.03em; color: var(--text); text-wrap: balance;
}
.vh-feature-body p { margin: 0; color: var(--text-secondary); font-size: 16px; line-height: 1.65; }
.vh-feature-body .vh-link { margin-top: 6px; }

/* Cards */
.vh-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.vh-card {
    display: flex; flex-direction: column; overflow: hidden;
    border-radius: 20px; background: #fff; border: 1px solid var(--border); color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vh-card[hidden] { display: none; }
.vh-card:hover { transform: translateY(-4px); border-color: rgba(255, 0, 0, .25); box-shadow: 0 28px 56px -36px rgba(15, 15, 15, .35); }
.vh-card-art { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background-color: var(--surface-3); }
.vh-card-art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.vh-card:hover .vh-card-art img { transform: scale(1.04); }
.vh-card-step {
    position: absolute; left: 14px; top: 14px; padding: 4px 9px; border-radius: 8px;
    background: rgba(0, 0, 0, .55); color: #fff; font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums;
}
.vh-card-play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255, 255, 255, .92); color: var(--primary); font-size: 15px;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .5); transition: transform .25s ease;
}
.vh-card-play i { margin-left: 3px; }
.vh-card:hover .vh-card-play { transform: translate(-50%, -50%) scale(1.08); }
.vh-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.vh-card-body h3 { margin: 14px 0 8px; font-size: 1.14rem; font-weight: 700; line-height: 1.35; letter-spacing: -.01em; color: var(--text); }
.vh-card-body p {
    margin: 0 0 18px; color: var(--text-secondary); font-size: 15px; line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.vh-card-foot {
    margin-top: auto; display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border-light);
    color: var(--text-muted); font-size: 13.5px; font-weight: 600;
}
.vh-card-foot i { color: var(--primary); font-size: 12px; transition: transform .2s ease; }
.vh-card:hover .vh-card-foot { color: var(--accent); }
.vh-card:hover .vh-card-foot i { transform: translateX(3px); }

/* Help strip */
.vh-strip {
    display: flex; align-items: center; gap: 20px; padding: 28px 32px;
    border-radius: 20px; background: #fff; border: 1px solid var(--border);
}
.vh-strip > div:not(.vh-strip-actions) { flex: 1; }
.vh-strip h2 { margin: 0; font-size: 1.2rem; font-weight: 700; color: var(--text); }
.vh-strip p { margin: 4px 0 0; color: var(--text-secondary); font-size: 15px; }
.vh-strip .btn { border-radius: 10px; }
.vh-strip .btn-outline { background: #fff; color: var(--text); }
.vh-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.vh-empty--inline { margin-top: 8px; }

/* Article head */
.vh-crumbs { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); font-size: 13.5px; }
.vh-crumbs a { color: var(--text-secondary); }
.vh-crumbs a:hover { color: var(--primary); }
.vh-crumbs i { font-size: 9px; }
.vh-article-head { max-width: 50rem; margin: 28px auto 0; text-align: center; animation: vo-rise .7s cubic-bezier(.2, .7, .2, 1) both; }
.vh-article-head h1 {
    margin: 16px 0 0; font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 1.06; letter-spacing: -.04em;
    color: var(--text); text-wrap: balance;
}
.vh-standfirst { margin: 18px auto 0; max-width: 40rem; color: var(--text-secondary); font-size: 1.15rem; line-height: 1.6; text-wrap: pretty; }
.vh-byline {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 12px;
    margin-top: 24px; color: var(--text-muted); font-size: 14px;
}
.vh-byline img { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); background: #fff; object-fit: cover; }
.vh-byline b { color: var(--text); font-weight: 600; }
.vh-byline i { color: var(--primary); margin-right: 3px; }
.vh-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.vh-cover {
    position: relative; max-width: 1040px; margin: 44px auto -1px; aspect-ratio: 21 / 8;
    border-radius: 24px 24px 0 0; overflow: hidden;
    box-shadow: 0 -20px 60px -40px rgba(15, 15, 15, .4);
    animation: vo-rise .9s .15s cubic-bezier(.2, .7, .2, 1) both;
}
.vh-cover--media { aspect-ratio: 16 / 9; max-width: 960px; border-radius: 24px; margin-bottom: 0; background: #0F0F0F; box-shadow: 0 40px 80px -40px rgba(15, 15, 15, .45); }
.vh-cover--media iframe, .vh-cover--media video, .vh-cover--media img { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }

/* Reading layout */
.vh-read { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; align-items: start; max-width: 1120px; }
.vh-read-main { min-width: 0; }
.vh-read-side { position: sticky; top: 96px; display: grid; gap: 20px; }

.vh-prose { max-width: 44rem; color: var(--text-secondary); font-size: 17px; line-height: 1.8; }
.vh-prose > :first-child { margin-top: 0; }
.vh-prose p { margin: 0 0 22px; }
.vh-prose h2 {
    margin: 48px 0 14px; scroll-margin-top: 96px;
    font-family: var(--font-display); font-size: 1.75rem; line-height: 1.2; letter-spacing: -.025em; color: var(--text);
}
.vh-prose h3 { margin: 34px 0 10px; scroll-margin-top: 96px; font-size: 1.25rem; font-weight: 700; line-height: 1.35; color: var(--text); }
.vh-prose ul, .vh-prose ol { margin: 0 0 22px; padding-left: 24px; }
.vh-prose li { margin-bottom: 8px; padding-left: 4px; }
.vh-prose li::marker { color: var(--primary); }
.vh-prose strong { color: var(--text); font-weight: 600; }
.vh-prose a { color: var(--accent); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(192, 0, 0, .3); text-underline-offset: 3px; }
.vh-prose a:hover { text-decoration-color: currentColor; }
.vh-prose code { padding: 2px 7px; border-radius: 6px; background: var(--surface-3); color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: .88em; }
.vh-prose pre { margin: 0 0 22px; padding: 18px 20px; border-radius: 14px; background: #0F0F0F; color: #F1F1F1; overflow-x: auto; font-size: 14px; line-height: 1.6; }
.vh-prose pre code { padding: 0; background: none; color: inherit; }
.vh-prose img { max-width: 100%; height: auto; margin: 8px 0 22px; border-radius: 14px; border: 1px solid var(--border); }
.vh-prose blockquote { margin: 0 0 22px; padding: 16px 22px; border-left: 3px solid var(--primary); border-radius: 0 12px 12px 0; background: var(--surface-1); color: var(--text); }
.vh-prose blockquote p:last-child { margin-bottom: 0; }

.vh-article-faq { max-width: 44rem; margin-top: 56px; scroll-margin-top: 96px; }
.vh-article-faq h2 { margin: 0 0 18px; font-family: var(--font-display); font-size: 1.75rem; letter-spacing: -.025em; color: var(--text); }

.vh-share {
    max-width: 44rem; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    color: var(--text-muted); font-size: 14px; font-weight: 600;
}
.vh-share > span { margin-right: 4px; }
.vh-share > a:not(.vh-link) {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid var(--border); color: var(--text-secondary); transition: color .2s ease, border-color .2s ease;
}
.vh-share > a:not(.vh-link):hover { color: var(--primary); border-color: rgba(255, 0, 0, .35); }
.vh-share .vh-link { margin-left: auto; }
.vh-share .vh-link--back { margin-left: 0; margin-right: auto; }
.vh-share .vh-link--back + .vh-link { margin-left: 0; }
.vh-link--back:hover i { transform: translateX(-3px); }

.vh-toc { padding: 20px 22px; border-radius: 16px; background: var(--surface-1); border: 1px solid var(--border); }
.vh-toc b { display: block; margin-bottom: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.vh-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; counter-reset: toc; }
.vh-toc li { counter-increment: toc; }
.vh-toc a {
    display: flex; gap: 10px; padding: 6px 8px; border-radius: 8px;
    color: var(--text-secondary); font-size: 14px; line-height: 1.4;
    transition: background .2s ease, color .2s ease;
}
.vh-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--text-muted); font-size: 12px; font-weight: 600; padding-top: 1px; font-variant-numeric: tabular-nums; }
.vh-toc a:hover { background: #fff; color: var(--text); }
.vh-toc a.is-on { background: #fff; color: var(--accent); box-shadow: inset 2px 0 0 var(--primary); }

.vh-side-cta {
    position: relative; overflow: hidden; padding: 24px; border-radius: 16px;
    background: #0F0F0F; color: #fff; text-align: left;
}
.vh-side-cta::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(260px 160px at 100% 0%, rgba(255, 0, 0, .4), transparent 70%);
}
.vh-side-cta > * { position: relative; }
.vh-side-cta img { width: 40px; height: 40px; border-radius: 10px; background: #fff; object-fit: cover; }
.vh-side-cta b { display: block; margin-top: 14px; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.25; }
.vh-side-cta p { margin: 8px 0 16px; color: #AAAAAA; font-size: 14px; line-height: 1.55; }
.vh-side-cta .btn { width: 100%; border-radius: 10px; }
.vh-side-cta span { display: block; margin-top: 10px; text-align: center; color: #AAAAAA; font-size: 12.5px; }

@media (max-width: 1100px) {
    .vh-read { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    /* Stacked: the contents list moves above the article, the trial card stays after it. */
    .vh-read-side { display: contents; }
    .vh-toc { order: -1; max-width: 44rem; }
    .vh-side-cta { order: 2; max-width: 44rem; }
}
@media (max-width: 960px) {
    .vh-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vh-feature { grid-template-columns: minmax(0, 1fr); }
    .vh-feature-art { min-height: 0; aspect-ratio: 16 / 9; }
    .vh-feature-body { padding: 28px; }
    .vh-strip { flex-wrap: wrap; }
}
@media (max-width: 640px) {
    .vh-cards { grid-template-columns: minmax(0, 1fr); }
    .vh-byline .vh-dot { display: none; }
    .vh-prose { font-size: 16px; }
    .vh-prose h2 { font-size: 1.45rem; }
    .vh-cover { aspect-ratio: 16 / 9; margin-top: 32px; border-radius: 18px 18px 0 0; }
    .vh-cover--media { border-radius: 16px; }
    .vh-strip { padding: 22px; }
    .vh-strip .btn { flex: 1 1 auto; }
    .vh-share .vh-link { margin-left: 0; }
    .vh-filter { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; margin: 0 -16px; padding: 2px 16px 6px; scrollbar-width: none; }
    .vh-filter::-webkit-scrollbar { display: none; }
    .vh-filter a { flex-shrink: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .vh-article-head, .vh-cover { animation: none; }
    .vh-card, .vh-feature { transition: none; }
    .vh-card:hover, .vh-feature:hover { transform: none; }
}

/* ===========================================================================
   /windows and /mac. The hero mock is an OS window around the app's encoder
   card and a running export; everything else reuses the homepage sections.
   =========================================================================== */
.vh-phero--platform { padding-bottom: 0; }
.vh-phero--platform .vh-head--page { max-width: 48rem; }
.vh-phero--platform .vh-kicker i { font-size: 14px; }
.vh-phero--platform .vo-cta-row { justify-content: center; margin-top: 30px; }
.vh-phero--platform .btn-outline { background: #fff; color: var(--text); }
.vh-proof--platform { padding: 72px 0 8px; }
.vh-proof--platform .vh-stats { margin-top: 0; }

.vh-os-stage {
    position: relative; max-width: 980px; margin: 56px auto 0;
    animation: vo-rise .9s .2s cubic-bezier(.2, .7, .2, 1) both;
}
.vh-os-stage::before {
    content: ''; position: absolute; inset: 10% 6% -10%; z-index: -1;
    background: radial-gradient(closest-side, rgba(255, 0, 0, .2), transparent); filter: blur(40px);
}
.vh-os-win {
    overflow: hidden; background: #F9F9F9; color: #0F0F0F; font-size: 13px; text-align: left;
    border: 1px solid rgba(15, 15, 15, .1); border-bottom: 0; border-radius: 14px 14px 0 0;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .7), 0 40px 80px -30px rgba(15, 15, 15, .35);
    user-select: none;
}
.vh-os-win.is-mac { border-radius: 12px 12px 0 0; }
.vh-os-bar { display: flex; align-items: center; gap: 8px; height: 38px; padding-left: 14px; background: #fff; border-bottom: 1px solid #E5E5E5; }
.vh-os-win.is-mac .vh-os-bar { justify-content: center; position: relative; background: linear-gradient(#f6f6f6, #ececec); }
.vh-lights { position: absolute; left: 14px; display: flex; gap: 8px; }
.vh-lights i { width: 12px; height: 12px; border-radius: 50%; background: #FF5F57; box-shadow: inset 0 0 0 .5px rgba(0, 0, 0, .15); }
.vh-lights i:nth-child(2) { background: #FEBC2E; }
.vh-lights i:nth-child(3) { background: #28C840; }
.vh-os-title { font-size: 12.5px; font-weight: 500; color: #3a3a3a; }
.vh-os-win.is-mac .vh-os-title { font-weight: 600; }

.vh-os-body { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 20px; padding: 22px; }
.vh-os-preview { display: grid; gap: 14px; align-content: start; }
.vh-os-frame { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; }
.vh-os-export { padding: 14px 16px; border-radius: 14px; background: #fff; border: 1px solid #E5E5E5; }
.vh-os-export-top { display: flex; justify-content: space-between; align-items: baseline; }
.vh-os-export-top b { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.vh-os-export-top span { font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }
.vh-os-bar-track { display: block; height: 6px; margin: 10px 0 8px; border-radius: 999px; background: #F2F2F2; overflow: hidden; }
.vh-os-bar-track span { display: block; width: 64%; height: 100%; border-radius: 999px; background: #FF0000; animation: vh-render 2.4s .6s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes vh-render { from { width: 8%; } }
.vh-os-export-label { font-size: 12px; color: #606060; }

.vh-os-panel { display: grid; gap: 10px; align-content: start; padding: 16px; border-radius: 16px; background: #fff; border: 1px solid #E5E5E5; }
.vh-os-label { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #606060; }
.vh-os-using {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 10px 12px; border-radius: 10px; background: #F2F2F2; border: 1px solid #E5E5E5;
}
.vh-os-using b { display: block; margin-top: 3px; font-size: 14px; font-weight: 600; }
.vh-os-using b i { color: #0F7B31; font-size: 12px; margin-right: 4px; }
.vh-os-badge { padding: 2px 8px; border-radius: 6px; background: rgba(15, 123, 49, .15); border: 1px solid rgba(15, 123, 49, .3); color: #0F7B31; font-size: 11px; font-weight: 600; }
.vh-os-tests { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.vh-os-tests li { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; border: 1px solid #E5E5E5; }
.vh-os-tests li > i { width: 14px; text-align: center; color: #606060; font-size: 12px; }
.vh-os-tests li > span { flex: 1; font-weight: 500; }
.vh-os-tests em { margin-left: 4px; font-style: normal; color: #606060; font-size: 12px; font-weight: 400; }
.vh-os-tests li > b { font-size: 11.5px; font-weight: 600; color: #606060; }
.vh-os-tests li.is-best { border-color: rgba(255, 0, 0, .35); background: rgba(255, 0, 0, .04); }
.vh-os-tests li.is-best > i { color: #FF0000; }
.vh-os-tests li.is-best > b { color: #C00000; }
.vh-os-tests li.is-off { opacity: .55; border-style: dashed; }
.vh-os-select {
    position: relative; display: flex; align-items: center; height: 36px; padding: 0 32px 0 12px;
    border-radius: 8px; background: #F2F2F2; border: 1px solid #E5E5E5; font-size: 13px;
    white-space: nowrap; overflow: hidden;
}
.vh-os-select::after {
    content: ''; position: absolute; right: 13px; top: 13px; width: 6px; height: 6px;
    border-right: 1.5px solid #606060; border-bottom: 1.5px solid #606060; transform: rotate(45deg);
}

.vh-checks--card {
    margin: 0; padding: 32px; border-radius: 20px; background: #fff; border: 1px solid var(--border);
    box-shadow: 0 30px 60px -40px rgba(15, 15, 15, .3); gap: 18px;
}
.vh-checks--card li { font-size: 16px; }

.vh-people--light .vh-person { background: #fff; border-color: var(--border); }
.vh-people--light .vh-person:hover { background: #fff; border-color: rgba(255, 0, 0, .28); box-shadow: 0 26px 52px -34px rgba(15, 15, 15, .32); }
.vh-people--light .vh-person .vh-ico { background: var(--primary-surface); color: var(--primary); box-shadow: inset 0 0 0 1px rgba(255, 0, 0, .14); }
.vh-people--light .vh-person h3 { color: var(--text); }
.vh-people--light .vh-person p { color: var(--text-secondary); }

.vh-other {
    display: flex; align-items: center; gap: 14px; margin-top: 28px; padding: 16px 18px;
    border-radius: 16px; background: #fff; border: 1px solid var(--border); color: inherit;
    transition: border-color .2s ease, transform .2s ease;
}
.vh-other:hover { border-color: rgba(255, 0, 0, .3); transform: translateY(-2px); }
.vh-other > span:not(.vh-ico) { flex: 1; color: var(--text-secondary); font-size: 14px; }
.vh-other b { display: block; color: var(--text); font-size: 15px; }
.vh-other > i { color: var(--primary); font-size: 13px; }

@media (max-width: 820px) {
    .vh-os-body { grid-template-columns: minmax(0, 1fr); }
    .vh-os-preview .vh-os-export { display: none; }
}
@media (max-width: 640px) {
    .vh-os-stage { margin-top: 40px; }
    .vh-os-body { padding: 14px; gap: 14px; }
    .vh-os-tests li:nth-child(n+3) { display: none; }
    .vh-checks--card { padding: 22px; }
    .vh-proof--platform { padding-top: 48px; }
}
@media (prefers-reduced-motion: reduce) {
    .vh-os-stage, .vh-os-bar-track span { animation: none; }
}

/* ===========================================================================
   /about, /contact, /compare(/{slug}), /use-cases(/{slug}). Same vh- system.
   =========================================================================== */
.vh-phero--compact .vo-cta-row { justify-content: center; margin-top: 30px; }
.vh-phero--compact .btn-outline { background: #fff; color: var(--text); }
.vh-phero--compact .vh-crumbs { margin-bottom: 24px; }
.vh-inline-link, .vh-field-hint a, .vh-disclaimer a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(192, 0, 0, .3); }
.vh-link--light { color: #FF6B6B; }
.vh-link--light:hover { color: #fff; }
.vh-disclaimer {
    display: flex; align-items: flex-start; justify-content: center; gap: 10px;
    max-width: 50rem; margin: 32px auto 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; text-align: left;
}
.vh-disclaimer i { margin-top: 4px; color: var(--text-muted); }

/* --- about ----------------------------------------------------------------- */
.vh-diff { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.vh-diff-col { padding: 24px; border-radius: 20px; background: var(--surface-1); border: 1px solid var(--border); }
.vh-diff-col b { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 15px; color: var(--text-secondary); }
.vh-diff-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.vh-diff-col li { display: flex; gap: 10px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.45; }
.vh-diff-col li i { display: grid; place-items: center; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: var(--surface-3); color: var(--text-muted); font-size: 10px; }
.vh-diff-col.is-us { background: #0F0F0F; border-color: #0F0F0F; box-shadow: 0 30px 60px -30px rgba(255, 0, 0, .35); }
.vh-diff-col.is-us b { color: #fff; }
.vh-diff-col.is-us img { border-radius: 6px; background: #fff; }
.vh-diff-col.is-us li { color: #F1F1F1; }
.vh-diff-col.is-us li i { background: rgba(74, 222, 128, .15); color: #4ADE80; }

.vh-pipeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; position: relative; }
.vh-pipeline::before {
    content: ''; position: absolute; left: 8%; right: 8%; top: 50px; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 0, 0, .35) 0 8px, transparent 8px 16px);
}
.vh-pipeline li { position: relative; padding: 22px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--border); }
.vh-pipeline-n { position: absolute; top: 14px; right: 16px; color: var(--text-muted); font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }
.vh-pipeline h3 { margin: 16px 0 6px; font-size: 1rem; font-weight: 700; color: var(--text); }
.vh-pipeline p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.5; }
.vh-pipeline .vh-tags { margin-top: 12px; gap: 4px; }
.vh-pipeline .vh-tags span { padding: 3px 8px; font-size: 11px; }
.vh-pipeline li:last-child { background: #0F0F0F; border-color: #0F0F0F; }
.vh-pipeline li:last-child h3 { color: #fff; }
.vh-pipeline li:last-child p { color: #AAAAAA; }
.vh-pipeline li:last-child .vh-ico { background: #FF0000; color: #fff; box-shadow: none; }

.vh-see { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 980px; margin: 0 auto; }
.vh-see-col { padding: 30px; border-radius: 20px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); }
.vh-see-col h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; font-size: 1.15rem; color: #fff; }
.vh-see-col h3 i { color: #AAAAAA; }
.vh-see-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.vh-see-col li { display: flex; gap: 12px; color: #D6D6D6; font-size: 15px; line-height: 1.5; }
.vh-see-col li i { margin-top: 4px; color: #AAAAAA; font-size: 13px; }
.vh-see-col.is-never { background: rgba(74, 222, 128, .06); border-color: rgba(74, 222, 128, .25); }
.vh-see-col.is-never h3 i, .vh-see-col.is-never li i { color: #4ADE80; }

.vh-help--big { margin-top: 0; padding: 32px; background: #fff; box-shadow: 0 30px 60px -40px rgba(15, 15, 15, .3); }
.vh-help--big b { font-size: 1.25rem; font-family: var(--font-display); }
.vh-help--big div > span { margin-bottom: 18px; font-size: 15px; line-height: 1.6; }
.vh-help--big .btn { border-radius: 10px; }

/* --- contact --------------------------------------------------------------- */
.vh-contact { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 28px; align-items: start; }
.vh-contact > * { min-width: 0; }
.vh-contact-form {
    padding: 36px; border-radius: 24px; background: #fff; border: 1px solid var(--border);
    box-shadow: 0 30px 60px -40px rgba(15, 15, 15, .3);
}
.vh-form-head h2 { margin: 0; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -.02em; color: var(--text); }
.vh-form-head p { margin: 6px 0 0; color: var(--text-muted); font-size: 14.5px; }
.vh-form-head p::before { content: ''; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 3px rgba(34, 197, 94, .2); vertical-align: 1px; }
.vh-alert { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; padding: 12px 16px; border-radius: 12px; font-size: 14.5px; }
.vh-alert i { margin-top: 3px; }
.vh-alert.is-ok { background: rgba(15, 123, 49, .08); border: 1px solid rgba(15, 123, 49, .25); color: var(--success); }
.vh-alert.is-error { background: var(--danger-bg); border: 1px solid rgba(180, 35, 24, .25); color: var(--danger); }
.vh-form { display: grid; gap: 18px; margin-top: 26px; }
.vh-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.vh-field { display: grid; gap: 8px; margin: 0; padding: 0; border: 0; min-width: 0; }
.vh-field label, .vh-field legend { padding: 0; font-size: 14px; font-weight: 600; color: var(--text); }
.vh-field legend { margin-bottom: 10px; }
.vh-field input, .vh-field textarea {
    width: 100%; padding: 13px 15px; border-radius: 12px;
    background: var(--surface-1); border: 1px solid var(--border); color: var(--text);
    font-family: inherit; font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.vh-field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.vh-field input:focus, .vh-field textarea:focus { outline: none; background: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 0, 0, .12); }
.vh-field-hint { margin: -8px 0 0; color: var(--text-muted); font-size: 13px; line-height: 1.55; }
.vh-form > .vh-field-hint:last-child { margin-top: 0; }
.vh-topics > div { display: flex; flex-wrap: wrap; gap: 8px; }
.vh-topic { position: relative; cursor: pointer; }
.vh-topic input { position: absolute; opacity: 0; pointer-events: none; }
.vh-topic span {
    display: inline-flex; padding: 8px 14px; border-radius: 999px;
    background: #fff; border: 1px solid var(--border); color: var(--text-secondary);
    font-size: 13.5px; font-weight: 500; transition: all .2s ease;
}
.vh-topic:hover span { border-color: rgba(255, 0, 0, .35); color: var(--text); }
.vh-topic input:checked + span { background: #0F0F0F; border-color: #0F0F0F; color: #fff; }
.vh-topic input:focus-visible + span { outline: 2px solid var(--primary); outline-offset: 2px; }
.vh-form .btn { width: 100%; border-radius: 12px; box-shadow: 0 10px 26px -10px rgba(255, 0, 0, .55); }

.vh-contact-side { display: grid; gap: 20px; position: sticky; top: 96px; }
.vh-channels { display: grid; gap: 10px; }
.vh-channel {
    display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px;
    background: #fff; border: 1px solid var(--border); color: inherit;
    transition: border-color .2s ease, transform .2s ease;
}
.vh-channel:not(.is-static):hover { border-color: rgba(255, 0, 0, .3); transform: translateY(-2px); }
.vh-channel > span:not(.vh-ico) { flex: 1; min-width: 0; }
.vh-channel b { display: block; color: var(--text); font-size: 15px; }
.vh-channel em { display: block; margin-top: 2px; font-style: normal; color: var(--text-secondary); font-size: 14px; overflow-wrap: anywhere; }
.vh-channel > i { color: var(--primary); font-size: 13px; }
.vh-ico--wa { background: rgba(37, 211, 102, .12); color: #128C7E; box-shadow: inset 0 0 0 1px rgba(37, 211, 102, .25); }
.vh-quick { padding: 22px; border-radius: 20px; background: var(--surface-1); border: 1px solid var(--border); }
.vh-quick > b { display: block; margin-bottom: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.vh-quick-item { display: flex; gap: 14px; padding: 14px 0; color: var(--text-secondary); font-size: 14px; line-height: 1.5; }
.vh-quick-item + .vh-quick-item { border-top: 1px solid var(--border); }
.vh-quick-item > i { margin-top: 3px; width: 16px; text-align: center; color: var(--primary); }
.vh-quick-item b { display: block; color: var(--text); font-size: 15px; }
.vh-quick-item em { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-style: normal; color: var(--accent); font-weight: 600; }
.vh-quick-item em i { font-size: 10px; transition: transform .2s ease; }
.vh-quick-item:hover em i { transform: translateX(3px); }

/* --- compare --------------------------------------------------------------- */
.vh-vs-title { margin: 20px 0 8px; font-size: 1.12rem; font-weight: 700; color: var(--text); font-family: var(--font-sans); letter-spacing: 0; }
.vh-costs--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vh-costs--4 .vh-cost:first-child { background: #fff; border-color: var(--border); }
.vh-costs--4 .vh-cost:first-child .vh-ico { background: var(--primary-surface); color: var(--primary); box-shadow: inset 0 0 0 1px rgba(255, 0, 0, .14); }
.vh-costs--4 .vh-cost:first-child h3 { color: var(--text); }
.vh-costs--4 .vh-cost:first-child p { color: var(--text-secondary); }

.vh-head--vs { max-width: 50rem; }
.vh-vs-hero { display: flex; width: fit-content; align-items: center; gap: 14px; margin: 0 auto 22px; }
.vh-vs-hero > span {
    display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px;
    background: #fff; border: 1px solid var(--border); box-shadow: 0 14px 30px -18px rgba(15, 15, 15, .35);
    color: var(--text-secondary); font-size: 26px; overflow: hidden;
}
.vh-vs-hero > span img { width: 100%; height: 100%; object-fit: cover; }
.vh-vs-hero > span.is-us { box-shadow: 0 0 0 3px rgba(255, 0, 0, .15), 0 14px 30px -18px rgba(255, 0, 0, .5); }
.vh-vs-hero em { font-style: normal; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-muted); }

.vh-verdict {
    max-width: 960px; margin: 0 auto; padding: 32px; border-radius: 24px;
    background: #fff; border: 1px solid var(--border); box-shadow: 0 30px 60px -40px rgba(15, 15, 15, .3);
}
.vh-verdict-head { display: flex; gap: 18px; }
.vh-verdict-head p { margin: 8px 0 0; color: var(--text); font-size: 1.15rem; line-height: 1.6; font-weight: 500; }
.vh-verdict-picks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
.vh-verdict-picks > div { padding: 20px; border-radius: 16px; background: var(--surface-1); border: 1px solid var(--border); }
.vh-verdict-picks > div.is-us { background: rgba(255, 0, 0, .035); border-color: rgba(255, 0, 0, .25); }
.vh-verdict-picks b { display: flex; align-items: center; gap: 8px; color: var(--text); font-size: 15px; }
.vh-verdict-picks b img { border-radius: 6px; }
.vh-verdict-picks b i { color: var(--text-muted); }
.vh-verdict-picks p { margin: 8px 0 0; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.vh-prose--center { margin: 64px auto 0; }

.vh-table-wrap--wide { max-width: 1040px; }
.vh-table--vs { min-width: 640px; }
.vh-table--vs td { width: 36%; text-align: left; font-size: 14.5px; line-height: 1.5; font-variant-numeric: normal; }
.vh-table--vs thead th:not(:first-child) { text-align: left; }
.vh-table--vs tbody th { width: 28%; vertical-align: top; }
.vh-table--vs td { vertical-align: top; }
.vh-table--vs .is-pro { font-weight: 500; }

.vh-wins { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 1040px; margin: 0 auto; align-items: start; }
.vh-wins-col { padding: 30px; border-radius: 22px; background: var(--surface-1); border: 1px solid var(--border); }
.vh-wins-col.is-us { background: #fff; border-color: rgba(255, 0, 0, .25); box-shadow: 0 30px 60px -40px rgba(255, 0, 0, .35); }
.vh-wins-col h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; font-size: 1.2rem; color: var(--text); }
.vh-wins-col h3 img { border-radius: 8px; }
.vh-wins-icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--surface-3); color: var(--text-secondary); font-size: 13px; }
.vh-wins-col .vh-point + .vh-point { margin-top: 18px; }
.vh-point h4 { margin: 2px 0 4px; font-size: 1.02rem; font-weight: 700; color: var(--text); }
.vh-wins-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.vh-wins-col li { display: flex; gap: 12px; color: var(--text); font-size: 15px; line-height: 1.5; }
.vh-wins-col li i { display: grid; place-items: center; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--surface-3); color: var(--text-secondary); font-size: 10px; }
.vh-wins-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 14px; }

.vh-price-vs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 960px; margin: 0 auto; }
.vh-price-card { padding: 28px; border-radius: 22px; background: #fff; border: 1px solid var(--border); }
.vh-price-card b { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; color: var(--text); }
.vh-price-card b img { border-radius: 6px; }
.vh-price-card b i { color: var(--text-muted); }
.vh-price-card p { margin: 12px 0 0; color: var(--text-secondary); font-size: 15.5px; line-height: 1.65; }
.vh-price-card .vh-link { margin-top: 16px; }
.vh-price-card.is-us { background: #0F0F0F; border-color: #0F0F0F; box-shadow: 0 30px 60px -30px rgba(255, 0, 0, .35); }
.vh-price-card.is-us b { color: #fff; }
.vh-price-card.is-us p { color: #D6D6D6; }
.vh-price-card.is-us .vh-link { color: #FF6B6B; }

/* --- use cases ------------------------------------------------------------- */
.vh-card-badge {
    position: absolute; left: 16px; bottom: 16px; display: grid; place-items: center;
    width: 48px; height: 48px; border-radius: 14px; background: #fff; color: var(--primary);
    font-size: 20px; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .5);
}
.vh-card--use .vh-card-art { aspect-ratio: 16 / 7; }
.vh-card-title { margin: 14px 0 8px; font-size: 1.14rem; font-weight: 700; line-height: 1.35; letter-spacing: -.01em; color: var(--text); font-family: var(--font-sans); }

.vh-before-after { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 20px; max-width: 1080px; margin: 0 auto; align-items: start; }
.vh-ba-col { padding: 30px; border-radius: 22px; border: 1px solid var(--border); }
.vh-ba-col h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; font-size: 1.2rem; color: var(--text); }
.vh-ba-col.is-before { background: var(--surface-1); }
.vh-ba-col.is-before h3 i { color: var(--text-muted); }
.vh-ba-item { padding: 16px 0; }
.vh-ba-item + .vh-ba-item { border-top: 1px dashed var(--border); }
.vh-ba-item b { display: block; color: var(--text); font-size: 15.5px; }
.vh-ba-item p { margin: 6px 0 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; }
.vh-ba-col.is-after { background: #fff; border-color: rgba(255, 0, 0, .25); box-shadow: 0 30px 60px -40px rgba(255, 0, 0, .35); }
.vh-ba-col.is-after h3 img { border-radius: 8px; }
.vh-ba-col ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; position: relative; }
.vh-ba-col ol::before { content: ''; position: absolute; left: 18px; top: 20px; bottom: 20px; width: 2px; background: repeating-linear-gradient(180deg, rgba(255, 0, 0, .3) 0 6px, transparent 6px 12px); }
.vh-ba-col ol li { position: relative; display: flex; gap: 16px; }
.vh-ba-col ol .vh-step-n { flex-shrink: 0; }
.vh-ba-col ol b { display: block; margin-top: 7px; color: var(--text); font-size: 15.5px; }
.vh-ba-col ol p { margin: 4px 0 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 1100px) {
    .vh-pipeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .vh-pipeline::before { display: none; }
    .vh-costs--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
}
@media (max-width: 960px) {
    .vh-contact, .vh-before-after, .vh-wins { grid-template-columns: minmax(0, 1fr); }
    .vh-contact-side { position: static; }
    .vh-see, .vh-price-vs, .vh-verdict-picks { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
    .vh-pipeline, .vh-costs--4, .vh-diff, .vh-form-row { grid-template-columns: minmax(0, 1fr); }
    .vh-contact-form, .vh-verdict, .vh-wins-col, .vh-ba-col, .vh-see-col { padding: 22px; }
    .vh-verdict-head { flex-direction: column; gap: 12px; }
    .vh-vs-hero > span { width: 52px; height: 52px; font-size: 22px; }
}

/* ===========================================================================
   /privacy and /terms (views/partials/legal-page.php). Reuses the article
   reading layout; adds the summary card and the legal side card.
   =========================================================================== */
.vh-phero--legal .vh-byline { margin-top: 22px; }
.vh-phero--legal .vh-byline i { color: var(--text-muted); }
.vh-sec--legal-summary { padding-bottom: 0; }
.vh-legal-summary {
    max-width: 1120px; margin: 0 auto; padding: 28px 32px; border-radius: 24px;
    background: #0F0F0F; color: #fff; position: relative; overflow: hidden;
}
.vh-legal-summary::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(460px 240px at 100% 0%, rgba(255, 0, 0, .3), transparent 70%);
}
.vh-legal-summary > * { position: relative; }
.vh-legal-summary-head { display: flex; align-items: center; gap: 14px; }
.vh-legal-summary-head .vh-ico { background: #FF0000; color: #fff; box-shadow: none; }
.vh-legal-summary-head b { display: block; font-family: var(--font-display); font-size: 1.25rem; }
.vh-legal-summary-head span { color: #AAAAAA; font-size: 14px; }
.vh-legal-summary ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.vh-legal-summary li {
    display: flex; gap: 12px; padding: 16px; border-radius: 14px;
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09);
}
.vh-legal-summary li > i { margin-top: 3px; width: 16px; text-align: center; color: #FF6B6B; }
.vh-legal-summary li b { display: block; font-size: 14.5px; }
.vh-legal-summary li span { display: block; margin-top: 3px; color: #AAAAAA; font-size: 13.5px; line-height: 1.5; }

.vh-sec--legal { padding-top: 64px; }
.vh-prose--legal { font-size: 16px; line-height: 1.75; }
.vh-prose--legal h2 {
    margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border-light);
    font-size: 1.5rem;
}
.vh-prose--legal > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.vh-prose--legal h3 { font-size: 1.08rem; margin-top: 26px; }
.vh-prose--legal li { margin-bottom: 10px; }
.vh-prose--legal li strong:first-child { color: var(--text); }

.vh-legal-side { padding: 22px; border-radius: 16px; background: #fff; border: 1px solid var(--border); }
.vh-legal-side > b { display: block; color: var(--text); font-size: 15px; }
.vh-legal-side > p { margin: 4px 0 12px; color: var(--text-secondary); font-size: 14px; }
.vh-legal-side > .vh-link { font-size: 13.5px; overflow-wrap: anywhere; }
.vh-legal-side > .vh-link i { font-size: 12px; }
.vh-legal-related { display: grid; margin-top: 16px; padding-top: 10px; border-top: 1px solid var(--border-light); }
.vh-legal-related a { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.vh-legal-related a i:first-child { width: 16px; text-align: center; color: var(--primary); }
.vh-legal-related a i:last-child { margin-left: auto; font-size: 10px; color: var(--text-muted); transition: transform .2s ease; }
.vh-legal-related a:hover { color: var(--text); }
.vh-legal-related a:hover i:last-child { transform: translateX(3px); color: var(--primary); }

@media (max-width: 960px) {
    .vh-legal-summary ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .vh-legal-summary { padding: 22px; }
    .vh-legal-summary ul { grid-template-columns: minmax(0, 1fr); }
    .vh-sec--legal { padding-top: 40px; }
    .vh-prose--legal h2 { font-size: 1.3rem; }
}

/* ===========================================================================
   /affiliate, /team, /changelog and the standalone /offer page.
   =========================================================================== */

/* --- affiliate ------------------------------------------------------------- */
.vh-payouts { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; max-width: 1040px; margin: 0 auto; }
.vh-payout {
    display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
    padding: 26px 18px 22px; border-radius: 20px; background: #fff; border: 1px solid var(--border);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.vh-payout:hover { transform: translateY(-4px); border-color: rgba(255, 0, 0, .28); box-shadow: 0 24px 48px -32px rgba(15, 15, 15, .32); }
.vh-payout .vh-ico { width: 52px; height: 52px; margin-bottom: 8px; font-size: 20px; }
.vh-payout b { color: var(--text); font-size: 15.5px; }
.vh-payout > span:not(.vh-ico) { color: var(--text-secondary); font-size: 14px; }
.vh-payout em {
    margin-top: 6px; padding: 3px 10px; border-radius: 999px; font-style: normal;
    background: var(--surface-3); color: var(--text-secondary); font-size: 12px; font-weight: 600;
}

.vh-table--earn td { width: auto; }
.vh-table--earn td small { color: var(--text-muted); font-size: 12.5px; }
.vh-table--earn .is-pro b { color: var(--accent); font-size: 1.05rem; }
.vh-example {
    display: flex; align-items: center; gap: 16px; max-width: 900px; margin: 24px auto 0; padding: 20px 24px;
    border-radius: 18px; background: #0F0F0F; color: #D6D6D6;
}
.vh-example .vh-ico { background: #FF0000; color: #fff; box-shadow: none; }
.vh-example p { margin: 0; font-size: 15.5px; line-height: 1.6; }
.vh-example b { color: #fff; }

/* --- team ------------------------------------------------------------------ */
.vh-team { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.vh-member {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 34px 26px 28px; border-radius: 22px; background: #fff; border: 1px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vh-member:hover { transform: translateY(-4px); border-color: rgba(255, 0, 0, .25); box-shadow: 0 28px 56px -36px rgba(15, 15, 15, .35); }
.vh-member-photo {
    width: 112px; height: 112px; border-radius: 50%; overflow: hidden; margin-bottom: 18px;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(255, 0, 0, .18), 0 18px 36px -18px rgba(15, 15, 15, .4);
}
.vh-member-photo img { width: 100%; height: 100%; object-fit: cover; }
.vh-member-photo span {
    display: grid; place-items: center; width: 100%; height: 100%;
    background: linear-gradient(135deg, #FF1A1A, #C00000); color: #fff;
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
}
.vh-member h2 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.02em; color: var(--text); }
.vh-member p { margin: 14px 0 0; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.vh-member-social { display: flex; gap: 8px; margin-top: 18px; }
.vh-member-social a {
    display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
    border: 1px solid var(--border); color: var(--text-secondary); transition: color .2s ease, border-color .2s ease;
}
.vh-member-social a:hover { color: var(--primary); border-color: rgba(255, 0, 0, .35); }

/* --- changelog ------------------------------------------------------------- */
.vh-releases { list-style: none; margin: 0 auto; padding: 0; max-width: 960px; position: relative; }
.vh-releases::before { content: ''; position: absolute; left: 150px; top: 12px; bottom: 12px; width: 2px; background: var(--border); }
.vh-release { position: relative; display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 36px; padding-bottom: 28px; scroll-margin-top: 96px; }
.vh-release-side { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding-top: 18px; }
.vh-release-dot {
    position: absolute; right: -7px; top: 24px; width: 14px; height: 14px; border-radius: 50%;
    background: #fff; border: 2px solid var(--border);
}
.vh-release.is-latest .vh-release-dot { border-color: #FF0000; background: #FF0000; box-shadow: 0 0 0 5px rgba(255, 0, 0, .15); }
.vh-release-side b { font-family: 'JetBrains Mono', monospace; font-size: 1rem; color: var(--text); }
.vh-release-side time { color: var(--text-muted); font-size: 13px; }
.vh-release-latest {
    margin-top: 4px; padding: 2px 9px; border-radius: 999px; background: #FF0000; color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.vh-release-card { padding: 24px 28px; border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.vh-release.is-latest .vh-release-card { border-color: rgba(255, 0, 0, .25); box-shadow: 0 28px 56px -40px rgba(255, 0, 0, .35); }
.vh-release-head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 14px; }
.vh-release-head h2 { margin: 0; font-size: 1.2rem; font-weight: 700; color: var(--text); }
.vh-change { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.vh-change i { font-size: 10px; }
.vh-change.is-new { background: rgba(15, 123, 49, .12); color: var(--success); }
.vh-change.is-imp { background: rgba(37, 99, 235, .1); color: #1D4ED8; }
.vh-change.is-fix { background: rgba(150, 96, 10, .12); color: var(--warning); }
.vh-change.is-rem { background: var(--danger-bg); color: var(--danger); }
.vh-release-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vh-release-card li { display: flex; gap: 12px; color: var(--text-secondary); font-size: 15px; line-height: 1.55; }
.vh-release-card li i { display: grid; place-items: center; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: rgba(15, 123, 49, .12); color: var(--success); font-size: 9px; }
.vh-release-card p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* --- offer (standalone) ----------------------------------------------------- */
.vh-offer { margin: 0; background: #fff; }
.vh-offer-ref {
    display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 16px;
    background: rgba(15, 123, 49, .1); color: var(--success); font-size: 14px; text-align: center;
}
.vh-offer-bar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .88); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.vh-offer-bar .container { display: flex; align-items: center; gap: 18px; min-height: 64px; }
.vh-offer-logo img { height: 28px; width: auto; display: block; }
.vh-offer-bar-text { flex: 1; color: var(--text-secondary); font-size: 14px; text-align: right; }
.vh-offer-bar-text b { color: var(--text); }
.vh-offer-bar .btn { border-radius: 10px; padding: 10px 18px; }
.vh-offer .vh-proof { padding-top: 32px; }

.vh-ico--muted { background: var(--surface-3); color: var(--text-secondary); box-shadow: none; }
.vh-costs--plain .vh-cost:first-child { background: #fff; border-color: var(--border); }
.vh-costs--plain .vh-cost:first-child .vh-ico { background: var(--surface-3); color: var(--text-secondary); }
.vh-costs--plain .vh-cost:first-child h3 { color: var(--text); }
.vh-costs--plain .vh-cost:first-child p { color: var(--text-secondary); }

.vh-quote { position: relative; padding: 36px; border-radius: 24px; background: #0F0F0F; color: #fff; overflow: hidden; }
.vh-quote::before { content: ''; position: absolute; inset: 0; background: radial-gradient(360px 200px at 100% 0%, rgba(255, 0, 0, .35), transparent 70%); pointer-events: none; }
.vh-quote > * { position: relative; }
.vh-quote > i { color: #FF6B6B; font-size: 26px; }
.vh-quote p { margin: 16px 0 22px; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.45; letter-spacing: -.01em; }
.vh-quote span { display: flex; align-items: center; gap: 10px; color: #AAAAAA; font-size: 14px; font-weight: 600; }
.vh-quote img { border-radius: 8px; background: #fff; }

.vh-offer-price { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 24px; max-width: 1000px; margin: 0 auto; align-items: start; }
.vh-offer-price .vh-plan { padding: 36px 32px; }
.vh-offer-price .vh-plan .btn { width: 100%; }
.vh-offer-price .vh-plan-note { min-height: 0; }
.vh-offer-price .vh-plan-note s { color: #777; }
.vh-offer-list { list-style: none; margin: 26px 0 0; padding: 24px 0 0; border-top: 1px solid #303030; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 18px; }
.vh-offer-list li { display: flex; gap: 10px; color: #D6D6D6; font-size: 14.5px; line-height: 1.45; }
.vh-offer-list li i { color: #4ADE80; margin-top: 4px; font-size: 11px; }
.vh-offer-side { display: grid; gap: 16px; }
.vh-offer-side .vh-help { margin-top: 0; background: #fff; }
.vh-offer .vh-legal a { color: var(--accent); }

/* Reveal on scroll (offer page only; it doesn't load AOS). */
.vh-offer [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1); }
.vh-offer [data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 960px) {
    .vh-offer-price { grid-template-columns: minmax(0, 1fr); }
    .vh-offer-bar-text { display: none; }
    .vh-offer-bar .container { justify-content: space-between; }
}
@media (max-width: 640px) {
    .vh-releases::before { display: none; }
    .vh-release { grid-template-columns: minmax(0, 1fr); gap: 10px; }
    .vh-release-side { flex-direction: row; align-items: center; gap: 10px; padding-top: 0; }
    .vh-release-dot { display: none; }
    .vh-release-card { padding: 20px; }
    .vh-offer-list { grid-template-columns: minmax(0, 1fr); }
    .vh-offer-price .vh-plan { padding: 28px 22px; }
    .vh-example { flex-direction: column; align-items: flex-start; }
    .vh-offer-bar .btn { font-size: 13px; padding: 9px 14px; }
}
@media (prefers-reduced-motion: reduce) {
    .vh-offer [data-reveal] { opacity: 1; transform: none; transition: none; }
    .vh-payout, .vh-member { transition: none; }
}

/* ===========================================================================
   Guest checkout (views/guest/checkout.php). The summary, payment methods and
   their script are shared partials styled in views/partials/checkout-styles.php;
   this is only the page around them.
   =========================================================================== */
.vh-checkout { position: relative; isolation: isolate; overflow: hidden; padding: 56px 0 96px; background: #fff; }
.vh-checkout .vo-hero-bg { background: radial-gradient(640px 320px at 50% 0%, rgba(255, 0, 0, .10), transparent 70%); }
.vh-checkout-head { max-width: 44rem; margin: 0 auto 40px; text-align: center; }
.vh-checkout-back { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.vh-checkout-back:hover { color: var(--primary); }
.vh-checkout-head h1 {
    margin: 18px 0 0; font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.08; letter-spacing: -.04em; color: var(--text);
}
.vh-checkout-head > p { margin: 12px 0 0; color: var(--text-secondary); font-size: 1.05rem; }
.vh-checkout-steps { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; }
.vh-checkout-steps li {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; border-radius: 999px;
    background: #fff; border: 1px solid var(--border); color: var(--text-muted); font-size: 13.5px; font-weight: 500;
}
.vh-checkout-steps li span {
    display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
    background: var(--surface-3); color: var(--text-muted); font-size: 11.5px; font-weight: 700;
}
.vh-checkout-steps li.is-on { color: var(--text); }
.vh-checkout-steps li.is-on span { background: var(--primary); color: #fff; }

.vh-checkout-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 24px; max-width: 1080px; margin: 0 auto; align-items: start; }
.vh-checkout-grid > * { min-width: 0; }
.vh-checkout-card {
    padding: 28px; border-radius: 22px; background: #fff; border: 1px solid var(--border);
    box-shadow: 0 30px 60px -44px rgba(15, 15, 15, .35);
}
.vh-checkout-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border-light); }
.vh-checkout-card-head h2 { margin: 0; font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.02em; color: var(--text); }
.vh-checkout-card-head p { margin: 2px 0 0; color: var(--text-muted); font-size: 14px; }

.vh-checkout .email-section { margin: 4px 0 18px; }
.vh-checkout .email-section label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--text); }
.vh-checkout .email-section label i { color: var(--primary); }
.vh-checkout .email-section input {
    width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--border);
    background: var(--surface-1); color: var(--text); font-family: inherit; font-size: 15.5px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.vh-checkout .email-section input:focus { outline: none; background: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 0, 0, .12); }
.vh-checkout .email-section small { display: block; margin-top: 6px; color: var(--text-muted); font-size: 13px; }
.vh-checkout .currency-note { margin: 8px 0 18px; }
.vh-checkout .method-panel .btn { border-radius: 12px; }
.vh-checkout-login { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--border-light); text-align: center; color: var(--text-muted); font-size: 14px; }
.vh-checkout-login a { color: var(--accent); font-weight: 600; }

.vh-checkout-side { display: grid; gap: 16px; position: sticky; top: 96px; }
.vh-checkout-trust { padding: 22px; border-radius: 20px; background: var(--surface-1); border: 1px solid var(--border); }
.vh-checkout-trust > b { display: block; margin-bottom: 12px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.vh-checkout-trust ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.vh-checkout-trust li { display: flex; gap: 12px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.45; }
.vh-checkout-trust li i { width: 18px; margin-top: 2px; text-align: center; color: var(--primary); }
.vh-checkout-secure {
    display: flex; gap: 10px; align-items: center; margin-top: 16px; padding: 12px 14px; border-radius: 12px;
    background: #fff; border: 1px solid var(--border); color: var(--text-secondary); font-size: 13.5px;
}
.vh-checkout-secure i { color: var(--success); }
.vh-checkout-help { margin: 14px 0 0; color: var(--text-muted); font-size: 13.5px; }
.vh-checkout-help a { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
    .vh-checkout-grid { grid-template-columns: minmax(0, 1fr); }
    .vh-checkout-side { position: static; order: -1; }
    .vh-checkout-trust { display: none; }
}
@media (max-width: 640px) {
    .vh-checkout { padding: 36px 0 64px; }
    .vh-checkout-card { padding: 20px; border-radius: 18px; }
}

/* --- checkout success (views/guest/success.php) ------------------------------ */
.vh-success { --state: #0F7B31; --state-bg: rgba(15, 123, 49, .1); }
.vh-success.is-pending { --state: #96600A; --state-bg: rgba(150, 96, 10, .12); }
.vh-success.is-processing { --state: #1D4ED8; --state-bg: rgba(37, 99, 235, .1); }
.vh-success-head { max-width: 42rem; margin: 0 auto 40px; text-align: center; }
.vh-success-icon {
    display: grid; place-items: center; width: 84px; height: 84px; margin: 0 auto; border-radius: 50%;
    background: var(--state); color: #fff; font-size: 34px;
    box-shadow: 0 0 0 10px var(--state-bg), 0 18px 40px -12px var(--state);
    animation: vh-pop .5s cubic-bezier(.2, .9, .3, 1.3) both;
}
@keyframes vh-pop { from { transform: scale(.6); opacity: 0; } to { transform: none; opacity: 1; } }
.vh-success-head h1 {
    margin: 28px 0 0; font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.08; letter-spacing: -.04em; color: var(--text);
}
.vh-success-head > p { margin: 12px auto 0; max-width: 36rem; color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; }
.vh-success .vh-checkout-steps li.is-on span { background: var(--success); }
.vh-success .vh-checkout-steps li span i { font-size: 10px; }

.vh-success-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 24px; max-width: 1080px; margin: 0 auto; align-items: start; }
.vh-success-grid > * { min-width: 0; }
.vh-success-h2 { margin: 28px 0 12px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }

.vh-key { padding: 22px; border-radius: 18px; background: rgba(15, 123, 49, .06); border: 1px solid rgba(15, 123, 49, .25); }
.vh-key-label { display: flex; align-items: center; gap: 8px; color: var(--success); font-size: 13.5px; font-weight: 700; }
.vh-key-row { display: flex; gap: 10px; margin-top: 12px; }
.vh-key-row code {
    flex: 1; min-width: 0; display: flex; align-items: center; padding: 12px 16px; border-radius: 12px;
    background: #fff; border: 1px solid rgba(15, 123, 49, .25); color: var(--text);
    font-family: 'JetBrains Mono', monospace; font-size: 17px; font-weight: 600; letter-spacing: .04em; overflow-wrap: anywhere;
}
.vh-key-row .btn { border-radius: 12px; white-space: nowrap; }
.vh-key > p { margin: 10px 0 0; color: var(--text-secondary); font-size: 13.5px; }
.vh-copy.is-copied { background: var(--success) !important; border-color: var(--success) !important; color: #fff !important; }

.vh-status-note { display: flex; gap: 14px; padding: 20px; border-radius: 18px; background: var(--state-bg); border: 1px solid var(--state-bg); }
.vh-status-note .vh-ico { background: #fff; color: var(--state); box-shadow: none; }
.vh-status-note b { display: block; color: var(--text); font-size: 15.5px; }
.vh-status-note span { display: block; margin-top: 4px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; }

.vh-order { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; }
.vh-order > div { padding: 14px 16px; border-radius: 14px; background: var(--surface-1); border: 1px solid var(--border); min-width: 0; }
.vh-order dt { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.vh-order dd { margin: 4px 0 0; font-size: 15px; font-weight: 600; color: var(--text); overflow-wrap: anywhere; }
.vh-status-pill { display: inline-block; padding: 2px 10px; border-radius: 999px; background: var(--state-bg); color: var(--state); font-size: 13px; font-weight: 700; }

.vh-account { padding: 6px 18px; border-radius: 14px; background: var(--surface-1); border: 1px solid var(--border); }
.vh-account-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.vh-account-row + .vh-account-row { border-top: 1px solid var(--border); }
.vh-account-row > span { width: 80px; flex-shrink: 0; color: var(--text-muted); font-size: 13.5px; font-weight: 600; }
.vh-account-row code { flex: 1; min-width: 0; font-family: 'JetBrains Mono', monospace; font-size: 14.5px; color: var(--text); overflow-wrap: anywhere; }
.vh-account .copy-btn {
    flex: none; padding: 5px 12px; border-radius: 8px; border: 1px solid var(--border); background: #fff;
    color: var(--text); font-family: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}
.vh-account .copy-btn:hover { border-color: rgba(255, 0, 0, .35); color: var(--accent); }
.vh-status-note .vh-ico { width: 44px; height: 44px; font-size: 18px; }
.vh-account-row em { font-style: normal; color: var(--text-secondary); font-size: 14px; }
.vh-account-note { display: flex; gap: 8px; margin: 0; padding: 12px 0; border-top: 1px solid var(--border); color: var(--text-secondary); font-size: 13px; }
.vh-account-note i { margin-top: 3px; color: var(--warning); }

.vh-spam { display: flex; gap: 12px; margin-top: 18px; padding: 14px 16px; border-radius: 14px; background: rgba(150, 96, 10, .08); border: 1px solid rgba(150, 96, 10, .22); color: var(--text-secondary); font-size: 14px; line-height: 1.55; }
.vh-spam i { margin-top: 3px; color: var(--warning); }
.vh-spam strong { color: var(--text); }

.vh-success-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 24px; }
.vh-success-actions .btn { border-radius: 12px; }
.vh-success-actions .btn-outline { background: #fff; color: var(--text); }

.vh-success-next { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 14px; }
.vh-success-next li { display: flex; gap: 12px; }
.vh-success-next .vh-step-n { width: 30px; height: 30px; border-radius: 9px; font-size: 13px; flex-shrink: 0; }
.vh-success-next strong { display: block; color: var(--text); font-size: 14.5px; }
.vh-success-next div span { display: block; margin-top: 2px; color: var(--text-secondary); font-size: 13.5px; line-height: 1.5; }
.vh-success .vh-checkout-side .vh-checkout-trust { display: block; }

@media (max-width: 900px) {
    .vh-success-grid { grid-template-columns: minmax(0, 1fr); }
    .vh-success .vh-checkout-side { order: 0; position: static; }
}
@media (max-width: 640px) {
    .vh-order, .vh-success-actions { grid-template-columns: minmax(0, 1fr); }
    .vh-key-row { flex-direction: column; }
    .vh-account-row { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) { .vh-success-icon { animation: none; } }

/* --- responsive ------------------------------------------------------------ */
@media (max-width: 1100px) {
    .vh-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vh-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vh-steps::before { display: none; }
    .vh-tile--0 { grid-template-columns: minmax(0, 1fr); }
    .vh-tile--0 .vh-auto { grid-column: 1; grid-row: 3; }
}
@media (max-width: 960px) {
    .vh-sec { padding: 80px 0; }
    .vh-split, .vh-faq-wrap { grid-template-columns: minmax(0, 1fr); gap: 48px; }
    .vh-split--rev .vh-split-copy { order: 0; }
    .vh-faq-side { position: static; }
    .vh-flow { grid-template-columns: minmax(0, 1fr); gap: 20px; }
    .vh-pipe { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .vh-pipe::before { display: none; }
    .vh-sources, .vh-compare, .vh-people { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .vh-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vh-tile--8 { flex-direction: column; align-items: flex-start; }
    .vh-stats { grid-template-columns: repeat(2, 1fr); }
    .vh-stat:nth-child(3) { border-left: 0; }
    .vh-stat:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 640px) {
    .vh-sec { padding: 64px 0; }
    .vh-head { margin-bottom: 40px; }
    .vh-proof { padding-bottom: 64px; }
    .vh-logo { font-size: 17px; }
    .vh-steps, .vh-sources, .vh-compare, .vh-people, .vh-bento, .vh-plans { grid-template-columns: minmax(0, 1fr); }
    .vh-tile--0 { grid-column: auto; grid-template-columns: minmax(0, 1fr); }
    .vh-stat { padding: 22px 14px; }
    .vh-note { right: 8px; bottom: -16px; }
    .vh-seg span { padding: 5px 8px; }
    .vh-final-card { padding: 56px 20px; border-radius: 22px; }
    .vh-final .btn-lg { flex: 1 1 100%; }
    .vh-doc p { font-size: 15px; }
    .vh-person { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 16px; padding: 20px; }
    .vh-person .vh-ico { grid-row: 1 / 3; }
    .vh-person h3 { margin: 0 0 4px; }
    .vh-tile { padding: 22px; }
    .vh-plan-note { min-height: 0; }
    .vh-assure { flex-direction: column; align-items: flex-start; max-width: 340px; margin-left: auto; margin-right: auto; }
}
@media (prefers-reduced-motion: reduce) {
    .vh-marquee-track, .vh-pipe span, .vh-playhead { animation: none; }
    .vh-step, .vh-source, .vh-tile, .vh-person, .vh-vs { transition: none; }
    .vh-step:hover, .vh-source:hover, .vh-tile:hover, .vh-person:hover, .vh-vs:hover { transform: none; }
}

/* --- generic section ----------------------------------------------------- */
.vo-section { padding: 84px 0; }
.vo-section.alt { background: var(--surface-1); }
.vo-head { max-width: 46rem; margin: 0 auto 48px; text-align: center; }
.vo-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: -0.028em;
    line-height: 1.15;
    color: var(--text);
    text-wrap: balance;
}
.vo-head p { margin: 14px 0 0; color: var(--text-secondary); font-size: 1.02rem; line-height: 1.6; }

/* --- steps --------------------------------------------------------------- */
.vo-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.vo-step {
    padding: 26px 24px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
}
.vo-step-n {
    width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--primary); color: #fff;
    font-size: 13px; font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.vo-step h3 { margin: 16px 0 8px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.vo-step p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; }

/* --- features ------------------------------------------------------------ */
.vo-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.vo-feat {
    padding: 24px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.vo-feat:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 0, 0, .30);
    box-shadow: 0 14px 32px -18px rgba(16, 20, 28, .30);
}
.vo-feat-ico {
    width: 40px; height: 40px; border-radius: 11px;
    display: grid; place-items: center;
    background: var(--primary-surface); color: var(--primary);
    font-size: 16px;
}
.vo-feat h3 { margin: 15px 0 8px; font-size: 1rem; font-weight: 700; color: var(--text); }
.vo-feat p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.62; }

/* --- pricing preview ----------------------------------------------------- */
.vo-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; align-items: start; }
.vo-plan {
    padding: 28px 26px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 6px;
}
.vo-plan.best {
    border-color: transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #FF4D4D, #C00000) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 20px 48px -28px rgba(255, 0, 0, .75);
    position: relative;
}
.vo-plan-tag {
    position: absolute; top: -11px; left: 26px;
    padding: 3px 11px; border-radius: var(--radius-full);
    background: var(--primary); color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.vo-plan h3 { margin: 0; font-size: 1.02rem; font-weight: 700; color: var(--text); }
.vo-price {
    display: flex; align-items: baseline; gap: 5px;
    margin: 10px 0 2px;
    font-family: var(--font-display);
    color: var(--text);
}
.vo-price b { font-size: 2.3rem; font-weight: 800; letter-spacing: -.03em; }
.vo-price span { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.vo-plan-note { margin: 0 0 14px; color: var(--text-secondary); font-size: 13.5px; min-height: 20px; }
.vo-plan ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.vo-plan li { display: flex; gap: 10px; color: var(--text-secondary); font-size: 14px; line-height: 1.5; }
.vo-plan li i { color: var(--success); margin-top: 3px; font-size: 12.5px; }
.vo-plan .btn { margin-top: auto; }

/* --- currency switch -------------------------------------------------------
   Shared by the homepage and /pricing. Prices are authored per currency
   rather than converted, so this is a switch between two price lists — not a
   display filter over one. */
.vo-currency-row { text-align: center; margin-bottom: 28px; }
.vo-currency {
    display: inline-flex;
    border: 2px solid var(--border, #e5e7eb);
    border-radius: 10px;
    overflow: hidden;
}
.vo-currency__option {
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--text-muted, #6b7280);
}
.vo-currency__option + .vo-currency__option {
    border-left: 2px solid var(--border, #e5e7eb);
}
.vo-currency__option.is-active {
    background: var(--primary, #111827);
    color: #fff;
}

/* --- faq ----------------------------------------------------------------- */
.vo-faq { max-width: 50rem; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.vo-faq details {
    border: 1px solid var(--border); border-radius: var(--radius-md);
    background: #fff; overflow: hidden;
}
.vo-faq summary {
    cursor: pointer; list-style: none;
    padding: 17px 20px;
    font-weight: 600; font-size: 15px; color: var(--text);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.vo-faq summary::-webkit-details-marker { display: none; }
.vo-faq summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 11px; color: var(--text-muted); transition: transform .2s;
}
.vo-faq details[open] summary::after { transform: rotate(180deg); }
.vo-faq details[open] summary { color: var(--primary); }
.vo-faq p { margin: 0; padding: 0 20px 18px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.68; }

/* --- final cta ----------------------------------------------------------- */
.vo-final {
    padding: 88px 0;
    text-align: center;
    background:
        radial-gradient(700px 320px at 50% 0%, rgba(255, 0, 0, .14), transparent 70%),
        var(--surface-1);
    border-top: 1px solid var(--border);
}
.vo-final h2 {
    margin: 0 auto;
    max-width: 22ch;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    letter-spacing: -.03em; line-height: 1.1;
    color: var(--text); text-wrap: balance;
}
.vo-final p { margin: 16px auto 0; max-width: 40rem; color: var(--text-secondary); font-size: 1.03rem; }
@media (max-width: 900px) {
    .vo-section { padding: 62px 0; }
}
@media (prefers-reduced-motion: reduce) {
    .vo-feat { transition: none; }
    .vo-feat:hover { transform: none; }
}

/* --- comparison table ----------------------------------------------------
   Used on /pricing. Wrapped in .vo-table-wrap so it scrolls on its own
   instead of pushing the page sideways on a phone. */
.vo-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; }
.vo-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14.5px; }
.vo-table th, .vo-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border-light); }
.vo-table thead th {
    background: var(--surface-1);
    font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--text-muted);
}
.vo-table thead th:not(:first-child), .vo-table td:not(:first-child) { text-align: center; width: 20%; }
.vo-table tbody tr:last-child td { border-bottom: none; }
.vo-table tbody tr:hover td { background: var(--surface-1); }
.vo-table td:first-child { color: var(--text); font-weight: 500; }
.vo-table .yes { color: var(--success); }
.vo-table .no  { color: var(--text-disabled); }
.vo-table .val { color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.vo-table .col-pro { background: rgba(255, 0, 0, .035); }

/* --- referral / promo banner --------------------------------------------- */
.vo-promo {
    max-width: 46rem; margin: 0 auto 36px;
    padding: 14px 20px; border-radius: var(--radius-md);
    background: var(--primary-surface);
    border: 1px solid rgba(255, 0, 0, .22);
    color: var(--text); font-size: 14.5px; text-align: center;
}
.vo-promo b { color: var(--primary); }

/* --- prose pages (privacy, terms, about) --------------------------------- */
.vo-prose { max-width: 46rem; margin: 0 auto; }
.vo-prose h2 {
    margin: 42px 0 12px;
    font-family: var(--font-display);
    font-size: 1.35rem; letter-spacing: -.02em; color: var(--text);
}
.vo-prose h2:first-child { margin-top: 0; }
.vo-prose h3 { margin: 26px 0 8px; font-size: 1.02rem; font-weight: 700; color: var(--text); }
.vo-prose p { margin: 0 0 14px; color: var(--text-secondary); font-size: 15px; line-height: 1.72; }
.vo-prose ul { margin: 0 0 16px; padding-left: 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.72; }
.vo-prose li { margin-bottom: 7px; }
.vo-prose strong { color: var(--text); font-weight: 600; }
.vo-prose a { color: var(--primary); }
.vo-updated {
    display: inline-block; margin-bottom: 34px;
    padding: 5px 12px; border-radius: var(--radius-full);
    background: var(--surface-1); border: 1px solid var(--border);
    font-size: 12.5px; color: var(--text-muted);
}
.vo-toc {
    margin: 0 0 38px; padding: 18px 22px;
    border-radius: var(--radius-md); background: var(--surface-1);
    border: 1px solid var(--border);
}
.vo-toc h4 { margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.vo-toc ol { margin: 0; padding-left: 18px; color: var(--text-secondary); font-size: 14px; line-height: 1.9; }
.vo-toc a { color: var(--text-secondary); }
.vo-toc a:hover { color: var(--primary); }

/* --- page header for inner pages ----------------------------------------- */
.vo-page-head {
    padding: 68px 0 44px;
    background: linear-gradient(180deg, #fff 0%, var(--surface-1) 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.vo-page-head h1 {
    margin: 0 auto; max-width: 24ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    letter-spacing: -.032em; line-height: 1.08; color: var(--text); text-wrap: balance;
}
.vo-page-head p { margin: 16px auto 0; max-width: 40rem; color: var(--text-secondary); font-size: 1.03rem; line-height: 1.62; }

/* --- contact ------------------------------------------------------------- */
.vo-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 40px; align-items: start; }
.vo-card { padding: 26px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); }
.vo-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.vo-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.vo-field input, .vo-field textarea, .vo-field select {
    width: 100%; padding: 11px 13px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: #fff; color: var(--text);
    font-family: inherit; font-size: 14.5px;
    transition: border-color .18s, box-shadow .18s;
}
.vo-field textarea { min-height: 132px; resize: vertical; }
.vo-field input:focus, .vo-field textarea:focus, .vo-field select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, .18);
}
.vo-contact-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.vo-contact-item:last-child { border-bottom: none; }
.vo-contact-item i { color: var(--primary); font-size: 15px; margin-top: 3px; }
.vo-contact-item h4 { margin: 0 0 3px; font-size: 14.5px; font-weight: 700; color: var(--text); }
.vo-contact-item p, .vo-contact-item a { margin: 0; font-size: 14px; color: var(--text-secondary); }
.vo-contact-item a:hover { color: var(--primary); }

@media (max-width: 860px) {
    .vo-contact-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* --- download page ------------------------------------------------------- */
.vo-dl-card {
    max-width: 42rem; margin: 0 auto; text-align: center;
    padding: 44px 34px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
    box-shadow: 0 2px 6px -2px rgba(16,20,28,.06), 0 30px 60px -34px rgba(16,20,28,.30);
}
.vo-dl-mark {
    width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 16px;
    background-image: linear-gradient(135deg, #FF4D4D, #C00000);
    box-shadow: 0 10px 26px -10px rgba(255, 0, 0,.8), inset 0 1px 0 rgba(255,255,255,.35);
    position: relative;
}
.vo-dl-mark::after {
    content: ''; position: absolute; inset: 0; margin: auto;
    width: 38px; height: 38px; background-color: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M12 2.6c-4.64 0-8.4 3.76-8.4 8.4v6.4q2.8 3.2 5.6 0 2.8 3.2 5.6 0 2.8 3.2 5.6 0V11c0-4.64-3.76-8.4-8.4-8.4ZM9.1 9.15a1.15 1.55 0 1 0 0 3.1 1.15 1.55 0 0 0 0-3.1ZM14.9 9.15a1.15 1.55 0 1 0 0 3.1 1.15 1.55 0 0 0 0-3.1ZM12 13.1a1.7 1.3 0 1 0 0 2.6 1.7 1.3 0 0 0 0-2.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M12 2.6c-4.64 0-8.4 3.76-8.4 8.4v6.4q2.8 3.2 5.6 0 2.8 3.2 5.6 0 2.8 3.2 5.6 0V11c0-4.64-3.76-8.4-8.4-8.4ZM9.1 9.15a1.15 1.55 0 1 0 0 3.1 1.15 1.55 0 0 0 0-3.1ZM14.9 9.15a1.15 1.55 0 1 0 0 3.1 1.15 1.55 0 0 0 0-3.1ZM12 13.1a1.7 1.3 0 1 0 0 2.6 1.7 1.3 0 0 0 0-2.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.vo-dl-card h2 {
    margin: 0 0 12px; font-family: var(--font-display);
    font-size: 1.6rem; letter-spacing: -.028em; color: var(--text);
}
.vo-dl-btn { min-width: 260px; }
.vo-dl-sub { margin: 16px 0 0; color: var(--text-muted); font-size: 13.5px; }

/* --- build cards (download page) -----------------------------------------
   One card per platform row in download_links. The grid is auto-fit so one
   build centres nicely and four still line up. */
.vo-builds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
    gap: 20px;
    max-width: 62rem;
    margin: 0 auto;
}
.vo-build {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 24px 26px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border);
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.vo-build:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 0, 0, .30);
    box-shadow: 0 16px 36px -20px rgba(16, 20, 28, .34);
}
.vo-build.suggested {
    border-color: transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #FF4D4D, #C00000) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 20px 46px -28px rgba(255, 0, 0, .75);
}
.vo-build-tag {
    position: absolute;
    top: -11px; left: 50%; transform: translateX(-50%);
    white-space: nowrap;
    padding: 3px 11px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.vo-build-ico {
    width: 52px; height: 52px; margin-bottom: 16px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--primary-surface);
    color: var(--primary);
    font-size: 22px;
}
.vo-build h3 {
    margin: 0 0 4px;
    font-size: 1.03rem; font-weight: 700; color: var(--text);
}
.vo-build-detail { margin: 0 0 12px; font-size: 13px; color: var(--text-muted); }
.vo-build-meta {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px;
    margin: 0 0 20px;
    font-size: 12.5px; color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}
.vo-build-meta span { display: inline-flex; align-items: center; gap: 6px; }
.vo-build-meta i { color: var(--primary); }
.vo-build .btn { width: 100%; margin-top: auto; }
.vo-build-foot {
    margin: 26px auto 0; text-align: center;
    color: var(--text-muted); font-size: 13.5px; line-height: 1.7;
}
.vo-build-foot a { color: var(--primary); }
.vo-release {
    max-width: 46rem; margin: 40px auto 0;
    padding: 22px 26px; border-radius: var(--radius-md);
    background: var(--surface-1); border: 1px solid var(--border);
}
.vo-release h4 {
    margin: 0 0 8px;
    font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    color: var(--text-muted);
}
.vo-release p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.65; }

@media (prefers-reduced-motion: reduce) {
    .vo-build { transition: none; }
    .vo-build:hover { transform: none; }
}

/* --- comparison cards (/compare) ----------------------------------------- */
.vo-compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 20px; }
.vo-compare-card {
    display: flex; flex-direction: column; gap: 10px;
    padding: 26px 24px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border); color: inherit;
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.vo-compare-card:hover {
    transform: translateY(-3px); color: inherit;
    border-color: rgba(255, 0, 0, .30);
    box-shadow: 0 16px 36px -20px rgba(16, 20, 28, .32);
}
.vo-compare-top { display: flex; align-items: center; gap: 11px; }
.vo-compare-ico {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--primary-surface); color: var(--primary); font-size: 15px;
}
.vo-compare-cat {
    font-size: 11px; font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; color: var(--text-muted);
}
.vo-compare-card h3 {
    margin: 4px 0 0; font-size: 1.08rem; font-weight: 700; color: var(--text);
    font-family: var(--font-display); letter-spacing: -.02em;
}
.vo-compare-card h3 span { color: var(--text-muted); font-weight: 500; }
.vo-compare-card p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.vo-compare-more {
    margin-top: auto; padding-top: 8px;
    color: var(--primary); font-size: 13.5px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 7px;
}
.vo-compare-card:hover .vo-compare-more i { transform: translateX(3px); }
.vo-compare-more i { font-size: 11px; transition: transform .2s; }

/* --- verdict box --------------------------------------------------------- */
.vo-verdict {
    max-width: 46rem; margin: 0 auto;
    padding: 26px 30px; border-radius: var(--radius-lg);
    background: var(--primary-surface);
    border: 1px solid rgba(255, 0, 0, .22);
}
.vo-verdict h2 {
    margin: 0 0 10px; font-family: var(--font-display);
    font-size: 1.15rem; letter-spacing: -.015em; color: var(--primary);
}
.vo-verdict p { margin: 0; color: var(--text); font-size: 15.5px; line-height: 1.68; }

/* --- fair-play list + who-should-pick ------------------------------------ */
.vo-fair-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.vo-fair-list li { display: flex; gap: 11px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; }
.vo-fair-list li i { color: var(--success); margin-top: 4px; font-size: 12.5px; }
.vo-who { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; margin-top: 26px; }
.vo-who h4 { margin: 0 0 8px; font-size: 14.5px; font-weight: 700; color: var(--text); }
.vo-who p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.62; }
.vo-pricing-note {
    max-width: 46rem; margin: 22px auto 0; padding: 13px 18px;
    border-radius: var(--radius-md); background: var(--surface-1); border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 13.5px; line-height: 1.6;
}
.vo-pricing-note i { color: var(--primary); margin-right: 6px; }

/* --- use-case pages ------------------------------------------------------ */
.vo-usecase-emoji {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--surface-1); border: 1px solid var(--border);
    font-size: 17px; line-height: 1;
}
/* Problem cards use the warning colour so they read as "before", not "feature". */
.vo-feat-ico.vo-pain-ico { background: var(--warning-bg); color: var(--warning); }

/* --- platform pages ------------------------------------------------------ */
.vo-platform-highlight {
    display: inline-block; margin: 26px auto 0;
    padding: 11px 18px; border-radius: var(--radius-md);
    background: var(--primary-surface); border: 1px solid rgba(255, 0, 0, .20);
    color: var(--text-secondary); font-size: 13.5px; line-height: 1.55;
}
.vo-platform-highlight i { color: var(--primary); margin-right: 7px; }

/* --- blog ----------------------------------------------------------------
   The index uses one featured card above a grid; the post page uses the shared
   .vo-prose rules plus a slightly larger measure for long-form reading. */
.vo-post-featured {
    display: block; margin-bottom: 26px;
    padding: 34px 36px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border); color: inherit;
    box-shadow: 0 2px 6px -2px rgba(16,20,28,.06), 0 26px 54px -34px rgba(16,20,28,.28);
    transition: transform .22s cubic-bezier(.2,.8,.3,1), border-color .22s;
}
.vo-post-featured:hover { transform: translateY(-3px); color: inherit; border-color: rgba(255, 0, 0,.30); }
.vo-post-featured h2 {
    margin: 12px 0 10px; font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.028em;
    line-height: 1.16; color: var(--text); text-wrap: balance;
}
.vo-post-featured p { margin: 0 0 16px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.65; max-width: 52rem; }

.vo-post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 20px; }
.vo-post-card {
    display: flex; flex-direction: column; gap: 9px;
    padding: 24px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border); color: inherit;
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.vo-post-card:hover {
    transform: translateY(-3px); color: inherit;
    border-color: rgba(255, 0, 0, .30);
    box-shadow: 0 16px 36px -20px rgba(16, 20, 28, .32);
}
.vo-post-card h3 {
    margin: 2px 0 0; font-size: 1.05rem; font-weight: 700; line-height: 1.32;
    color: var(--text); font-family: var(--font-display); letter-spacing: -.018em;
}
.vo-post-card p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.vo-post-date { margin-top: auto; padding-top: 8px; color: var(--text-muted); font-size: 12.5px; }

.vo-post-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
    color: var(--text-muted); font-size: 12.5px;
}
.vo-post-cat {
    padding: 3px 10px; border-radius: var(--radius-full);
    background: var(--primary-surface); color: var(--primary);
    font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}

.vo-post-head {
    padding: 64px 0 40px; text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--surface-1) 100%);
    border-bottom: 1px solid var(--border);
}
.vo-post-head h1 {
    margin: 18px auto 0; max-width: 22ch;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    letter-spacing: -.032em; line-height: 1.1; color: var(--text); text-wrap: balance;
}
.vo-post-standfirst {
    margin: 18px auto 0; max-width: 42rem;
    color: var(--text-secondary); font-size: 1.06rem; line-height: 1.62;
}

/* Long-form body: a touch wider and looser than the legal-page prose. */
.vo-article { max-width: 44rem; }
.vo-article p { font-size: 16px; line-height: 1.78; }
.vo-article ul, .vo-article ol { font-size: 16px; line-height: 1.78; margin-bottom: 20px; }
.vo-article h2 {
    margin: 44px 0 14px; font-size: 1.45rem;
    font-family: var(--font-display); letter-spacing: -.022em; color: var(--text);
}
.vo-article h3 { margin: 30px 0 10px; font-size: 1.08rem; font-weight: 700; color: var(--text); }
.vo-article code {
    padding: 2px 6px; border-radius: 5px;
    background: var(--surface-1); border: 1px solid var(--border);
    font-family: var(--font-mono); font-size: .88em; color: var(--text);
}
.vo-article-h2 {
    margin: 0 0 18px; font-family: var(--font-display);
    font-size: 1.45rem; letter-spacing: -.022em; color: var(--text);
    max-width: 44rem; margin-inline: auto;
}
.vo-faq { max-width: 44rem; }

@media (prefers-reduced-motion: reduce) {
    .vo-post-card, .vo-post-featured, .vo-compare-card { transition: none; }
    .vo-post-card:hover, .vo-post-featured:hover, .vo-compare-card:hover { transform: none; }
}

/* --- filter chips (tutorials) -------------------------------------------- */
.vo-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.vo-chip {
    padding: 7px 15px; border-radius: var(--radius-full);
    background: #fff; border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 13.5px; font-weight: 500;
    transition: border-color .18s, color .18s, background .18s;
}
.vo-chip:hover { border-color: rgba(255, 0, 0,.32); color: var(--primary); }
.vo-chip.on { background: var(--primary); border-color: transparent; color: #fff; }

/* --- empty states -------------------------------------------------------- */
.vo-empty {
    max-width: 34rem; margin: 0 auto; text-align: center;
    padding: 52px 30px; border-radius: var(--radius-lg);
    background: #fff; border: 1px dashed var(--border-active);
}
.vo-empty-mark {
    width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 15px;
    display: grid; place-items: center;
    background: var(--primary-surface); color: var(--primary); font-size: 21px;
}
.vo-empty h3 { margin: 0 0 8px; font-size: 1.12rem; font-weight: 700; color: var(--text); }
.vo-empty p { margin: 0 0 20px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.62; }
.vo-empty a:not(.btn) { color: var(--primary); }

/* --- changelog timeline --------------------------------------------------- */
.vo-timeline { max-width: 52rem; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.vo-release-entry {
    display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 24px;
    padding: 26px 28px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
}
.vo-release-side { display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.vo-release-version {
    font-family: var(--font-mono); font-size: 15px; font-weight: 700;
    color: var(--text); font-variant-numeric: tabular-nums;
}
.vo-release-date { color: var(--text-muted); font-size: 12.5px; }
.vo-release-latest {
    margin-top: 4px; padding: 2px 9px; border-radius: var(--radius-full);
    background: var(--primary); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.vo-release-body h3 { margin: 10px 0 10px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.vo-release-body p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.65; }
.vo-change-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 10px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.vo-change-chip i { font-size: 9px; }
.vo-change-chip.add { background: var(--success-bg); color: var(--success); }
.vo-change-chip.imp { background: var(--info-bg); color: var(--info); }
.vo-change-chip.fix { background: var(--warning-bg); color: var(--warning); }
.vo-change-chip.rem { background: var(--danger-bg); color: var(--danger); }

/* --- team ---------------------------------------------------------------- */
.vo-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.vo-team-card {
    text-align: center; padding: 30px 22px;
    border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border);
}
.vo-team-photo {
    width: 78px; height: 78px; margin: 0 auto 16px;
    border-radius: 50%; object-fit: cover; display: block;
}
.vo-team-initials {
    display: grid; place-items: center;
    background-image: linear-gradient(135deg, #FF4D4D, #C00000);
    color: #fff; font-family: var(--font-display);
    font-size: 26px; font-weight: 700; letter-spacing: -.01em;
}
.vo-team-card h3 { margin: 0 0 3px; font-size: 1.02rem; font-weight: 700; color: var(--text); }
.vo-team-role { margin: 0 0 10px; color: var(--primary); font-size: 13px; font-weight: 600; }
.vo-team-bio { margin: 0; color: var(--text-secondary); font-size: 13.5px; line-height: 1.6; }

@media (max-width: 640px) {
    .vo-release-entry { grid-template-columns: 1fr; gap: 12px; }
    .vo-release-side { flex-direction: row; align-items: center; gap: 10px; }
}
