/* -- VoltaContent Homepage (redesign) ---------------------------------- */

.vc-home {
    --h-ink: #0B0B0F;
    --h-paper: #F6F4EE;
    --h-paper-2: #EFEBDF;
    --h-line: #E3DFD1;
    --h-muted: #6B6860;
    --h-mutedB: #9B978C;
    --h-yellow: #F5B400;
    --h-yellow-soft: #FFE48A;
    --h-yellow-hot: #FFD84D;
    --h-ok: #1F8F5F;
    --h-x: #C44545;
    --h-card: #ffffff;
    background: var(--h-paper);
    color: var(--h-ink);
}
.vc-home :is(h1, h2, h3, h4) {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.vc-home em { font-style: italic; font-weight: 500; }

[data-theme="dark"] .vc-home {
    --h-paper: #0A0A0E;
    --h-paper-2: #111116;
    --h-surface-2: #16161C;
    --h-surface-3: #1D1D25;
    --h-line: #26262F;
    --h-line-2: #33333F;
    --h-muted: #8C8A82;
    --h-mutedB: #6B6860;
    --h-card: #111116;
    --h-ink: #F4F1E8;
    --h-fg-soft: #C9C5BA;
    --h-ok: #3DBC7E;
    --h-x: #E06B6B;
}

/* Dark mode inversions to match darktheme doc:
   - chip, hero-cell of features, and proof card go YELLOW with black text
   - feature viz wrappers use the elevated surface color */
[data-theme="dark"] .vc-home .vc-h-chip {
    background: var(--h-yellow);
    color: #0B0B0F;
    box-shadow: 0 20px 40px -12px rgba(245,180,0,0.4);
}
[data-theme="dark"] .vc-home .vc-h-chip .mini-bolt {
    background: #0B0B0F;
}

[data-theme="dark"] .vc-home .vc-h-cell.hero-cell {
    background: var(--h-yellow);
    color: #0B0B0F;
}
[data-theme="dark"] .vc-home .vc-h-cell.hero-cell h3,
[data-theme="dark"] .vc-home .vc-h-cell.hero-cell h3 em { color: #0B0B0F; }
[data-theme="dark"] .vc-home .vc-h-cell.hero-cell p { color: rgba(0,0,0,0.75); }
[data-theme="dark"] .vc-home .vc-h-cell.hero-cell .vc-h-eyebrow { color: rgba(0,0,0,0.6); }

[data-theme="dark"] .vc-home .vc-h-proof {
    background: var(--h-yellow);
    color: #0B0B0F;
}
[data-theme="dark"] .vc-home .vc-h-proof h3,
[data-theme="dark"] .vc-home .vc-h-proof h3 em { color: #0B0B0F; }
[data-theme="dark"] .vc-home .vc-h-proof .stat .n { color: #0B0B0F; }
[data-theme="dark"] .vc-home .vc-h-proof .stat p { color: rgba(0,0,0,0.75); }
[data-theme="dark"] .vc-home .vc-h-proof-cta {
    background: #ffffff;
    color: #0B0B0F;
}
[data-theme="dark"] .vc-home .vc-h-proof-cta:hover { background: #F4F1E8; }

/* Feature cells viz background on dark: elevated surface rather than the paper-2 */
[data-theme="dark"] .vc-home .vc-h-cell .viz { background: var(--h-surface-2); border: 1px solid var(--h-line); }
[data-theme="dark"] .vc-home .vc-h-cell .viz.voice .row .v {
    background: var(--h-surface-2);
    border-color: var(--h-line-2);
    color: var(--h-fg-soft);
}
[data-theme="dark"] .vc-home .vc-h-cell .viz.voice .row .v.accent {
    background: var(--h-yellow);
    border-color: var(--h-yellow);
    color: #0B0B0F;
}
[data-theme="dark"] .vc-home .vc-h-cell .viz.export .col {
    background: var(--h-surface-2);
    border-color: var(--h-line-2);
    color: var(--h-fg-soft);
}

/* Workflow step card elevation on dark */
[data-theme="dark"] .vc-home .vc-h-wf-step { background: var(--h-card); border-color: var(--h-line); }
[data-theme="dark"] .vc-home .vc-h-wf-step .mini { background: var(--h-paper); border: 1px solid var(--h-line); }

/* Hero preview elevation + shadow on dark */
[data-theme="dark"] .vc-home .vc-h-preview {
    background: var(--h-card);
    border-color: var(--h-line);
    box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8);
}

/* Extra yellow radial at bottom-left of hero on dark */
[data-theme="dark"] .vc-home .vc-h-hero {
    background:
        radial-gradient(ellipse at 85% 15%, rgba(245,180,0,0.18), transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(245,180,0,0.06), transparent 40%),
        var(--h-paper);
}

/* Dark mode: status badges and workflow keywords need explicit colors
   (since --h-paper-2 / --h-yellow-soft flip or wash out against dark bg) */
[data-theme="dark"] .vc-home .vc-h-proof-cta { color: #0B0B0F; }
[data-theme="dark"] .vc-home .vc-h-wf-step .mini .kw {
    background: var(--h-yellow);
    color: #0B0B0F;
}
[data-theme="dark"] .vc-home .vc-hp-row .st.ok {
    background: rgba(13,220,131,0.12);
    color: #0ddc83;
}
[data-theme="dark"] .vc-home .vc-hp-row .st.run {
    background: rgba(255,192,18,0.15);
    color: #ffc012;
}
[data-theme="dark"] .vc-home .vc-hp-row .st.wait {
    background: #29313d;
    color: #a2b1c6;
}

/* -- shared frame -- */
.vc-home .vc-h-frame {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}
.vc-home .vc-h-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--h-muted);
    font-weight: 500;
}

/* ====================================================================== */
/* HERO                                                                   */
/* ====================================================================== */
.vc-home .vc-h-hero {
    position: relative;
    padding: 40px 0 0;
    background:
        radial-gradient(ellipse at 85% 20%, rgba(245,180,0,0.18), transparent 55%),
        var(--h-paper);
    border-bottom: 1px solid var(--h-line);
}
.vc-home .vc-h-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0 80px;
}
.vc-home .vc-h-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 100px;
    background: var(--h-card);
    border: 1px solid var(--h-line);
    font-size: 11px;
    color: var(--h-ink);
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: uppercase;
}
.vc-home .vc-h-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--h-ok);
    box-shadow: 0 0 0 3px rgba(31,143,95,0.15);
}
.vc-home .vc-h-headline {
    font-size: 68px;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-top: 22px;
    isolation: isolate;
}
.vc-home .vc-h-headline .hl {
    position: relative;
    color: #0B0B0F;
    padding: 0 8px;
    white-space: nowrap;
}
.vc-home .vc-h-headline .hl::before {
    content: '';
    position: absolute;
    inset: 0.14em 0 0.06em 0;
    background: var(--h-yellow);
    z-index: -1;
    transform: skewX(-6deg);
    border-radius: 3px;
}
.vc-home .vc-h-sub {
    margin-top: 24px;
    max-width: 520px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--h-ink);
    opacity: 0.8;
}
.vc-home .vc-h-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.vc-home .vc-h-cta {
    background: var(--h-ink);
    color: var(--h-paper);
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.15s ease;
}
.vc-home .vc-h-cta:hover { transform: translateY(-1px); text-decoration: none; }
.vc-home .vc-h-cta .arrow { color: var(--h-yellow); }
.vc-home .vc-h-cta-ghost {
    font-size: 14px;
    color: var(--h-muted);
    text-decoration: underline;
    text-decoration-color: var(--h-line);
    text-underline-offset: 4px;
}
.vc-home .vc-h-cta-ghost:hover { color: var(--h-ink); }

.vc-home .vc-h-social {
    margin-top: 36px;
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: 12px;
    color: var(--h-muted);
    letter-spacing: 0.5px;
    flex-wrap: wrap;
}
.vc-home .vc-h-social .num {
    font-size: 18px;
    color: var(--h-ink);
    font-weight: 600;
    display: block;
    letter-spacing: -0.01em;
}

/* preview card */
.vc-home .vc-h-preview {
    position: relative;
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 30px 60px -30px rgba(11,11,15,0.18);
}
.vc-home .vc-h-chip {
    position: absolute;
    right: -12px;
    top: -12px;
    background: var(--h-ink);
    color: #fff;
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 10.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: rotate(3deg);
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.vc-home .vc-h-chip .mini-bolt {
    width: 10px;
    height: 12px;
    background: var(--h-yellow);
    clip-path: polygon(58% 0, 10% 55%, 42% 55%, 24% 100%, 78% 42%, 46% 42%, 68% 0);
}
.vc-home .vc-hp-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--h-line);
    gap: 10px;
    flex-wrap: wrap;
}
.vc-home .vc-hp-head .title { font-size: 13px; font-weight: 500; }
.vc-home .vc-hp-head .meta { font-size: 11px; color: var(--h-muted); }
.vc-home .vc-hp-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--h-line);
    align-items: center;
}
.vc-home .vc-hp-row:last-child { border-bottom: none; }
.vc-home .vc-hp-row .q { font-size: 13.5px; color: var(--h-ink); }
.vc-home .vc-hp-row .q .k {
    display: block;
    font-size: 10.5px;
    color: var(--h-muted);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.vc-home .vc-hp-row .st {
    font-size: 10.5px;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: lowercase;
    white-space: nowrap;
}
.vc-home .vc-hp-row .st.ok { background: rgba(31,143,95,0.1); color: var(--h-ok); }
.vc-home .vc-hp-row .st.run { background: rgba(245,180,0,0.15); color: #8a6500; }
.vc-home .vc-hp-row .st.wait { background: var(--h-paper-2); color: var(--h-muted); }
.vc-home .vc-hp-row .ct { font-size: 11px; color: var(--h-muted); white-space: nowrap; }
.vc-home .vc-hp-foot {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--h-muted);
    gap: 12px;
    flex-wrap: wrap;
}

/* ====================================================================== */
/* FEATURES                                                               */
/* ====================================================================== */
.vc-home .vc-h-features-wrap {
    background: #E3DFD1;
    border-top: 1px solid var(--h-line);
    border-bottom: 1px solid var(--h-line);
}
[data-theme="dark"] .vc-home .vc-h-features-wrap {
    background: rgba(255,255,255,0.08);
}
.vc-home .vc-h-features {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 1px;
    background: var(--h-line);
}
.vc-home .vc-h-cell { background: var(--h-card); padding: 40px 36px; }
.vc-home .vc-h-cell.hero-cell {
    background: var(--h-ink);
    color: #fff;
}
.vc-home .vc-h-cell.hero-cell .vc-h-eyebrow { color: var(--h-mutedB); }
.vc-home .vc-h-cell.hero-cell h3 {
    font-size: 32px;
    letter-spacing: -0.025em;
    font-weight: 600;
    line-height: 1.05;
    margin-top: 14px;
}
.vc-home .vc-h-cell.hero-cell h3 em { color: var(--h-yellow-hot); }
.vc-home .vc-h-cell.hero-cell p {
    color: #D9D6CF;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 14px;
    max-width: 32ch;
}
.vc-home .vc-h-cell .num {
    font-size: 11px;
    color: var(--h-muted);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}
.vc-home .vc-h-cell h3 {
    font-size: 21px;
    letter-spacing: -0.01em;
    margin-top: 10px;
}
.vc-home .vc-h-cell > p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--h-ink);
    opacity: 0.78;
    margin-top: 10px;
}
.vc-home .vc-h-cell .viz {
    margin-top: 18px;
    min-height: 120px;
    border-radius: 8px;
    background: var(--h-paper);
    position: relative;
    overflow: hidden;
    padding: 16px;
}
.vc-home .vc-h-cell .viz.voice .row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    margin-bottom: 8px;
    color: var(--h-ink);
    flex-wrap: wrap;
}
.vc-home .vc-h-cell .viz.voice .row .k {
    color: var(--h-muted);
    width: 80px;
    flex-shrink: 0;
}
.vc-home .vc-h-cell .viz.voice .row .v {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10.5px;
}
.vc-home .vc-h-cell .viz.voice .row .v.accent {
    background: var(--h-yellow);
    border-color: var(--h-yellow);
    color: var(--h-ink);
    font-weight: 500;
}
.vc-home .vc-h-cell.wide { grid-column: 2 / span 2; }
.vc-home .vc-h-cell .viz.export {
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.vc-home .vc-h-cell .viz.export .col {
    flex: 1;
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: 6px;
    padding: 12px;
    font-size: 10.5px;
    color: var(--h-ink);
    font-family: 'SF Mono', Consolas, Monaco, monospace;
    min-width: 0;
}
.vc-home .vc-h-cell .viz.export .col .h {
    color: var(--h-yellow);
    font-size: 10px;
    margin-bottom: 6px;
    font-family: 'Inter Tight', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}
.vc-home .vc-h-cell .viz.export .col .ln {
    display: block;
    color: var(--h-muted);
    line-height: 1.55;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ====================================================================== */
/* WORKFLOW                                                               */
/* ====================================================================== */
.vc-home .vc-h-wf { padding: 72px 0; background: var(--h-paper-2); }
.vc-home .vc-h-wf-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 36px;
}
.vc-home .vc-h-wf-head h3 {
    font-size: 30px;
    letter-spacing: -0.025em;
    max-width: 520px;
}
.vc-home .vc-h-wf-head p { font-size: 13.5px; color: var(--h-muted); }
.vc-home .vc-h-wf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.vc-home .vc-h-wf-step {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: 10px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.vc-home .vc-h-wf-step .num {
    font-style: italic;
    font-size: 48px;
    font-weight: 500;
    color: var(--h-yellow);
    line-height: 1;
}
.vc-home .vc-h-wf-step h4 { font-size: 17px; margin: 6px 0 8px; font-weight: 600; }
.vc-home .vc-h-wf-step p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--h-ink);
    opacity: 0.78;
    margin: 0;
}
.vc-home .vc-h-wf-step .mini {
    margin-top: 16px;
    min-height: 72px;
    background: var(--h-paper);
    border-radius: 6px;
    font-size: 11px;
    color: var(--h-ink);
    padding: 12px;
    line-height: 1.7;
    overflow: hidden;
    font-family: 'SF Mono', Consolas, Monaco, monospace;
}
.vc-home .vc-h-wf-step .mini .kw {
    background: var(--h-yellow-soft);
    padding: 1px 4px;
    border-radius: 2px;
    color: var(--h-ink);
}
.vc-home .vc-h-wf-step .mini .tag { color: var(--h-muted); }

/* ====================================================================== */
/* COMPARE                                                                */
/* ====================================================================== */
.vc-home .vc-h-cmp { padding: 72px 0; background: var(--h-card); }
.vc-home .vc-h-cmp h3 {
    font-size: 30px;
    letter-spacing: -0.025em;
    max-width: 700px;
}
.vc-home .vc-h-cmp-tbl {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.1fr;
    border-top: 1px solid var(--h-line);
}
.vc-home .vc-h-cmp-tbl .r { display: contents; }
.vc-home .vc-h-cmp-tbl .c {
    padding: 18px 14px;
    border-bottom: 1px solid var(--h-line);
    font-size: 13.5px;
}
.vc-home .vc-h-cmp-tbl .c.h {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--h-muted);
    padding-bottom: 14px;
    font-weight: 500;
}
.vc-home .vc-h-cmp-tbl .c.h.us { color: var(--h-ink); }
.vc-home .vc-h-cmp-tbl .c.feat-name { color: var(--h-ink); }
.vc-home .vc-h-cmp-tbl .c.yes { color: var(--h-ok); font-weight: 600; }
.vc-home .vc-h-cmp-tbl .c.no { color: var(--h-x); }
.vc-home .vc-h-cmp-tbl .c.us { background: #FFF8DC; }
[data-theme="dark"] .vc-home .vc-h-cmp-tbl .c.us { background: rgba(255,216,77,0.08); }
.vc-home .vc-h-cmp-tbl .c.us.yes { color: var(--h-ink); }
.vc-home .vc-h-cmp-tbl .c.us.yes::before {
    content: '\2713 ';
    color: var(--h-yellow);
    font-weight: 700;
}

/* Mobile-only stacked compare cards (hidden on desktop) */
.vc-home .vc-h-cmp-mobile { display: none; }
.vc-home .vc-h-cmp-card {
    background: var(--h-card);
    border: 1px solid var(--h-line);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 10px;
}
.vc-home .vc-h-cmp-card.us {
    background: #FFF8DC;
    border-color: var(--h-yellow);
}
[data-theme="dark"] .vc-home .vc-h-cmp-card.us {
    background: var(--h-yellow);
    border-color: var(--h-yellow);
    color: #0B0B0F;
}
.vc-home .vc-h-cmp-card .hdr h4 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
[data-theme="dark"] .vc-home .vc-h-cmp-card.us .hdr h4 { color: #0B0B0F; }
.vc-home .vc-h-cmp-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.vc-home .vc-h-cmp-card ul li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    padding: 6px 0;
    font-size: 12.5px;
    color: var(--h-ink);
    opacity: 0.9;
    align-items: start;
    line-height: 1.45;
}
.vc-home .vc-h-cmp-card ul li .mark {
    line-height: 1.3;
    font-weight: 700;
}
.vc-home .vc-h-cmp-card ul li.ok .mark { color: var(--h-ok); }
.vc-home .vc-h-cmp-card ul li.no .mark { color: var(--h-x); }
.vc-home .vc-h-cmp-card ul li.no { opacity: 0.5; text-decoration: line-through; text-decoration-color: var(--h-mutedB); }
.vc-home .vc-h-cmp-card.us ul li { opacity: 1; }
.vc-home .vc-h-cmp-card.us ul li .mark { color: var(--h-yellow); }
[data-theme="dark"] .vc-home .vc-h-cmp-card.us ul li { color: rgba(0,0,0,0.85); opacity: 1; }
[data-theme="dark"] .vc-home .vc-h-cmp-card.us ul li .mark { color: #0B0B0F; }

/* ====================================================================== */
/* PROOF                                                                  */
/* ====================================================================== */
.vc-home .vc-h-proof-wrap { padding: 72px 0; background: var(--h-paper); }
.vc-home .vc-h-proof {
    padding: 56px 48px;
    background: var(--h-ink);
    color: #fff;
    border-radius: 12px;
}
.vc-home .vc-h-proof h3 {
    font-size: 36px;
    letter-spacing: -0.025em;
    max-width: 620px;
}
.vc-home .vc-h-proof h3 em {
    color: var(--h-yellow-hot);
}
.vc-home .vc-h-proof .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.vc-home .vc-h-proof .stat .n {
    font-size: 80px;
    line-height: 1;
    color: var(--h-yellow-hot);
    letter-spacing: -0.03em;
    font-weight: 500;
}
.vc-home .vc-h-proof .stat p {
    color: #D9D6CF;
    font-size: 14px;
    margin-top: 12px;
    max-width: 26ch;
    line-height: 1.5;
}
.vc-home .vc-h-proof-cta {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--h-yellow);
    color: var(--h-ink);
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.15s ease;
}
.vc-home .vc-h-proof-cta:hover { transform: translateY(-1px); text-decoration: none; }

/* ====================================================================== */
/* RESPONSIVE                                                             */
/* ====================================================================== */
@media (max-width: 960px) {
    .vc-home .vc-h-frame { padding: 0 28px; }

    /* Hero */
    .vc-home .vc-h-hero { padding: 20px 0 0; }
    .vc-home .vc-h-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 48px;
    }
    .vc-home .vc-h-headline { font-size: 44px; line-height: 1.02; }
    .vc-home .vc-h-sub { font-size: 15px; margin-top: 18px; }
    .vc-home .vc-h-social { gap: 16px 24px; margin-top: 26px; }
    .vc-home .vc-h-social .num { font-size: 16px; }
    .vc-home .vc-h-chip { font-size: 9.5px; padding: 6px 10px; right: -6px; top: -8px; }
    .vc-home .vc-h-preview { padding: 14px; }
    .vc-home .vc-hp-head .meta { display: none; }
    .vc-home .vc-hp-row { grid-template-columns: 1fr auto; font-size: 12px; padding: 10px 0; }
    .vc-home .vc-hp-row .ct { grid-column: 1 / -1; margin-top: 2px; }

    /* Features */
    .vc-home .vc-h-features-wrap { overflow: hidden; }
    .vc-home .vc-h-features { grid-template-columns: 1fr; }
    .vc-home .vc-h-cell {
        padding: 28px 24px;
        min-width: 0;
        overflow: hidden;
    }
    .vc-home .vc-h-cell h3,
    .vc-home .vc-h-cell p {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .vc-home .vc-h-cell.hero-cell h3 { font-size: 26px; }
    .vc-home .vc-h-cell.wide { grid-column: auto; }

    /* Workflow */
    .vc-home .vc-h-wf { padding: 48px 0; }
    .vc-home .vc-h-wf-head { flex-direction: column; align-items: flex-start; gap: 8px; }
    .vc-home .vc-h-wf-head h3 { font-size: 24px; }
    .vc-home .vc-h-wf-grid { grid-template-columns: 1fr; gap: 12px; }
    .vc-home .vc-h-wf-step { padding: 20px; }
    .vc-home .vc-h-wf-step .num { font-size: 36px; }

    /* Compare — stacked competitor cards (replaces the desktop table) */
    .vc-home .vc-h-cmp { padding: 48px 0; }
    .vc-home .vc-h-cmp h3 { font-size: 22px; }
    .vc-home .vc-h-cmp-tbl { display: none; }
    .vc-home .vc-h-cmp-mobile { display: block; margin-top: 24px; }

    /* Proof */
    .vc-home .vc-h-proof-wrap { padding: 48px 0; }
    .vc-home .vc-h-proof { padding: 36px 24px; border-radius: 10px; }
    .vc-home .vc-h-proof h3 { font-size: 24px; }
    .vc-home .vc-h-proof .stats { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; }
    .vc-home .vc-h-proof .stat .n { font-size: 56px; }
}

@media (max-width: 480px) {
    .vc-home .vc-h-frame { padding: 0 20px; }
    .vc-home .vc-h-headline { font-size: 36px; }
    .vc-home .vc-h-cell.hero-cell h3 { font-size: 22px; }
}

/* ====================================================================== */
/* PRICING PAGE                                                           */
/* ====================================================================== */

/* Pricing hero — single column, centered */
.vc-home .vc-h-hero--pricing { padding: 40px 0 0; }
.vc-home .vc-p-hero-inner {
    max-width: 820px;
    padding: 72px 0 88px;
}
.vc-home .vc-p-headline { font-size: 60px; }
.vc-home .vc-p-sub { max-width: 640px; font-size: 17px; }

/* Pricing rate cards — 3-col with black thesis cell + 2 rate cells */
.vc-home .vc-h-features--pricing {
    grid-template-columns: 1.1fr 1fr 1fr;
}
.vc-home .vc-p-rate .vc-p-amount {
    margin-top: 18px;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--h-ink);
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.vc-home .vc-p-rate .vc-p-volt {
    font-size: 32px;
    color: var(--h-yellow);
}
.vc-home .vc-p-rate h3 {
    margin-top: 14px;
    font-size: 21px;
}
.vc-home .vc-p-math {
    margin-top: 18px;
    padding: 16px;
    background: var(--h-paper);
    border-radius: 8px;
    font-size: 12px;
    color: var(--h-ink);
    opacity: 0.85;
    display: grid;
    gap: 6px;
}
.vc-home .vc-p-math-line { display: block; }
.vc-home .vc-p-math-line strong {
    color: var(--h-ink);
    opacity: 1;
    font-weight: 600;
}

/* Beta proof strip (3 stats inside the dark block) */
.vc-home .vc-p-proof { padding: 56px 48px; }
.vc-home .vc-p-beta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.vc-home .vc-p-beta-n {
    font-size: 52px;
    font-weight: 500;
    color: var(--h-yellow-hot);
    letter-spacing: -0.03em;
    line-height: 1;
}
.vc-home .vc-p-beta-item p {
    color: #D9D6CF;
    font-size: 13.5px;
    margin-top: 10px;
    line-height: 1.5;
    max-width: 28ch;
}

/* FAQ */
.vc-home .vc-p-faq {
    padding: 72px 0;
    background: var(--h-paper);
}
.vc-home .vc-p-faq-head {
    max-width: 780px;
    margin-bottom: 32px;
}
.vc-home .vc-p-faq-head h3 {
    font-size: 30px;
    letter-spacing: -0.025em;
}
.vc-home .vc-p-faq-head p {
    margin-top: 10px;
    font-size: 14px;
    color: var(--h-muted);
}

.vc-home .vc-p-faq-list {
    max-width: 780px;
    border-top: 1px solid var(--h-line);
}
.vc-home .vc-p-faq-item {
    border-bottom: 1px solid var(--h-line);
}
.vc-home .vc-p-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--h-ink);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.005em;
    transition: color 0.15s ease;
}
.vc-home .vc-p-faq-item summary::-webkit-details-marker { display: none; }
.vc-home .vc-p-faq-item summary:hover { color: var(--h-yellow); }
.vc-home .vc-p-faq-icon {
    flex-shrink: 0;
    color: var(--h-muted);
    display: inline-flex;
    transition: transform 0.2s ease, color 0.15s ease;
}
.vc-home .vc-p-faq-item[open] .vc-p-faq-icon {
    transform: rotate(180deg);
    color: var(--h-yellow);
}
.vc-home .vc-p-faq-item p {
    padding: 0 4px 22px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--h-ink);
    opacity: 0.78;
    max-width: 68ch;
    margin: 0;
}

@media (max-width: 960px) {
    .vc-home .vc-p-hero-inner { padding: 32px 0 48px; }
    .vc-home .vc-p-headline { font-size: 40px; }
    .vc-home .vc-p-sub { font-size: 15px; }

    .vc-home .vc-h-features--pricing { grid-template-columns: 1fr; }
    .vc-home .vc-p-rate .vc-p-amount { font-size: 52px; }

    .vc-home .vc-p-proof { padding: 36px 24px; }
    .vc-home .vc-p-beta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 28px;
        padding-top: 24px;
    }
    .vc-home .vc-p-beta-n { font-size: 42px; }

    .vc-home .vc-p-faq { padding: 48px 0; }
    .vc-home .vc-p-faq-head h3 { font-size: 22px; }
    .vc-home .vc-p-faq-item summary { font-size: 15px; padding: 18px 2px; }
}

@media (max-width: 480px) {
    .vc-home .vc-p-headline { font-size: 32px; }
}
