:root {
    /* Monochrome brand. The mark and wordmark are pure black on white, so the site
       carries no hue at all — hierarchy comes from weight, scale, and rule work. */
    --ink: #0b0b0c;
    --ink-2: #4a4a4e;
    --muted: #78787e;
    --paper: #ffffff;
    --paper-2: #f6f6f4;
    --panel: #ffffff;
    --line: #e4e4e1;
    --line-strong: #cfcfca;
    --black: #0b0b0c;
    --shadow: 0 24px 60px rgba(11, 11, 12, 0.09);
    --shadow-sm: 0 2px 10px rgba(11, 11, 12, 0.05);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Instrument Sans", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 0.9rem clamp(1rem, 4vw, 3rem);
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 2.8rem;
    height: 2.8rem;
    display: block;
    overflow: hidden;
    border-radius: 0.9rem;
    background: #fff9f3;
    box-shadow: 0 12px 24px rgba(160, 103, 48, 0.16);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.05rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--ink);
    font-weight: 800;
}

.site-nav a {
    padding: 0.75rem 0.8rem;
    border-radius: 999px;
    white-space: nowrap;
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--ink);
    background: var(--paper);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.site-nav-toggle svg {
    width: 1.15rem;
    height: 1.15rem;
}

.site-nav-toggle:focus-visible,
.site-nav a:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

/* Two sections were added to the page; at narrow-desktop widths the nav would otherwise
   overflow the header rather than wrap. */
@media (max-width: 1180px) {
    .site-nav a { padding: 0.7rem 0.6rem; font-size: .93rem; }
}

.site-nav a:hover,
.nav-cta {
    background: var(--black);
    color: white;
}

.site-footer {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 1.6rem;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}

.site-footer-tagline {
    display: block;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.hero,
.section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
    gap: 1.4rem;
    align-items: stretch;
    padding: 6rem 0 2rem;
}

.hero-copy,
.hero-card,
.intro-grid article,
.pricing-card,
.matrix-shell,
.launch-panel,
.status-page {
    border: 1px solid var(--line);
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 255, 0.74)),
        var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.start-form {
    display: grid;
    gap: 1rem;
    width: min(100%, 56rem);
    margin: 1.5rem auto 0;
    text-align: left;
}

.start-page {
    display: flex;
    min-height: calc(100svh - 7rem);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: clamp(1.5rem, 3vh, 3rem) auto 3rem;
    width: min(1180px, calc(100% - 2rem));
}

.start-page > p {
    max-width: 58rem;
    margin-inline: auto;
}

.start-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.start-field { display: grid; gap: 0.35rem; }
.start-field > span { font-weight: 700; font-size: 0.92rem; color: var(--ink); }

.start-field input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 0.8rem;
    border: 1px solid var(--line);
    background: var(--surface-input, rgba(255, 255, 255, 0.85));
    font-size: 1rem;
    color: var(--ink);
}

.start-field input:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(92, 68, 255, 0.16);
}

.start-form .button.primary { width: 100%; margin-top: 0.4rem; }
.start-fineprint { font-size: 0.82rem; color: var(--muted); text-align: center; margin: 0; }

.hero-copy {
    padding: clamp(1.5rem, 4vw, 3.2rem);
}

.eyebrow,
.card-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    color: #245ac8;
    background: rgba(85, 199, 247, 0.18);
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Newsreader", serif;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 48rem;
    margin-top: 1.1rem;
    font-size: clamp(3.3rem, 8vw, 6.6rem);
    line-height: 0.9;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 0.95;
}

h3 {
    font-size: 1.55rem;
}

p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-copy p {
    max-width: 43rem;
    font-size: 1.15rem;
}

.hero-actions,
.checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.button:disabled,
.button[aria-disabled="true"] {
    cursor: not-allowed;
}

.button.primary {
    color: white;
    background: var(--black);
    box-shadow: 0 18px 34px rgba(11, 11, 12, 0.16);
}

.button.secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.66);
}

.button.secondary.dark {
    color: white;
    background: var(--black);
}

.hero-card {
    display: grid;
    gap: 1rem;
    align-content: end;
    padding: 1.25rem;
    background:
        radial-gradient(circle at 15% 10%, rgba(85, 199, 247, 0.32), transparent 14rem),
        linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(225, 239, 255, 0.78));
    color: var(--ink);
}

.hero-card-top {
    min-height: 14rem;
    padding: 1.25rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(11, 11, 12, 0.16), transparent 15rem),
        radial-gradient(circle at 85% 80%, rgba(255, 138, 107, 0.24), transparent 13rem),
        rgba(255, 255, 255, 0.5);
}

.hero-card span,
.product-metric span {
    display: block;
    color: #6382b6;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card strong {
    display: block;
    margin-top: 0.4rem;
    font-size: 1.45rem;
}

.product-metric {
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(11, 11, 12, 0.10);
}

.section {
    padding: 3.5rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.intro-grid article {
    padding: 1.35rem;
}

.intro-grid h2 {
    margin-top: 1rem;
    font-size: 2.15rem;
}

.section-heading {
    display: grid;
    gap: 1rem;
    max-width: 48rem;
    margin-bottom: 1.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.pricing-card {
    display: flex;
    min-height: 35rem;
    flex-direction: column;
    padding: 1.2rem;
}

.pricing-card.featured {
    transform: translateY(-0.6rem);
    border-color: rgba(11, 11, 12, 0.16);
    background:
        linear-gradient(180deg, rgba(85, 199, 247, 0.18), rgba(255, 255, 255, 0.9)),
        var(--panel);
}

.pricing-header {
    display: grid;
    min-height: 8rem;
    align-content: end;
    padding: 1rem;
    border-radius: 1.4rem;
    color: white;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.22), transparent 6rem),
        var(--black);
}

.pricing-header span {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pricing-header strong {
    margin-top: 0.4rem;
    font-family: "Newsreader", serif;
    font-size: 1.7rem;
}

.price {
    margin-top: 1.2rem;
}

.price span {
    font-family: "Newsreader", serif;
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.price small,
.annual {
    color: var(--muted);
    font-weight: 800;
}

.pricing-card ul {
    display: grid;
    gap: 0.65rem;
    margin: 1rem 0 1.4rem;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    color: #42567d;
    line-height: 1.55;
}

.pricing-card li::before {
    content: "•";
    margin-right: 0.45rem;
    color: var(--ink);
    font-weight: 900;
}

.checkout-actions {
    margin-top: auto;
}

.checkout-actions .button {
    width: 100%;
}

.matrix-shell {
    overflow-x: auto;
}

.feature-matrix {
    width: 100%;
    min-width: 58rem;
    border-collapse: collapse;
}

.feature-matrix th,
.feature-matrix td {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.feature-matrix th:first-child,
.feature-matrix td:first-child {
    text-align: left;
}

.feature-matrix thead th {
    color: #657ba6;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-matrix tbody th {
    width: 38%;
}

.feature-matrix tr:hover {
    background: rgba(85, 199, 247, 0.1);
}

.yes,
.no {
    display: inline-flex;
    min-width: 6.5rem;
    justify-content: center;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
}

.yes {
    color: #245ac8;
    background: rgba(85, 199, 247, 0.18);
}

.no {
    color: #7181a3;
    background: rgba(99, 102, 241, 0.08);
}

.launch-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.launch-steps {
    display: grid;
    gap: 0.7rem;
}

.launch-steps span {
    padding: 1rem;
    border-radius: 1rem;
    color: white;
    background: var(--black);
    font-weight: 900;
}

.status-page {
    width: min(760px, calc(100% - 2rem));
    margin: 8rem auto;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.status-page.start-page {
    min-height: calc(100svh - 7rem);
    margin: clamp(1.5rem, 3vh, 3rem) auto 3rem;
}

.status-page.warning {
    border-color: rgba(255, 138, 107, 0.34);
}

.muted {
    color: var(--muted);
}

.status-page-note {
    margin-top: 0.75rem;
    font-size: 0.86rem;
    color: var(--muted);
}

.embedded-checkout-shell {
    display: grid;
    grid-template-columns: minmax(20rem, 0.72fr) minmax(28rem, 1fr);
    gap: 1.5rem;
    align-items: start;
    width: min(1180px, calc(100% - 2rem));
    margin: 4rem auto;
}

.embedded-checkout-copy,
.embedded-checkout-card {
    border: 1px solid var(--line);
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 255, 0.8)),
        var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.embedded-checkout-copy {
    position: sticky;
    top: 6rem;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.embedded-checkout-copy h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.embedded-checkout-summary {
    display: grid;
    gap: 0.7rem;
    margin: 1.4rem 0;
}

.embedded-checkout-summary div {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(11, 11, 12, 0.10);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.62);
}

.embedded-checkout-summary dt {
    color: #6382b6;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.embedded-checkout-summary dd {
    margin: 0.25rem 0 0;
    color: var(--ink);
    font-weight: 800;
}

.embedded-checkout-card {
    min-height: 42rem;
    padding: clamp(1rem, 2vw, 1.5rem);
}

.embedded-checkout-frame {
    min-height: 38rem;
}

.embedded-checkout-error {
    grid-column: 1 / -1;
    margin-top: 0;
}

.embedded-checkout-runtime-error {
    color: #b42318;
    font-weight: 800;
}

code {
    padding: 0.1rem 0.35rem;
    border-radius: 0.35rem;
    background: rgba(11, 11, 12, 0.16);
}

@media (max-width: 980px) {
    .site-nav,
    .hero-actions,
    .checkout-actions {
        border-radius: 1.4rem;
    }

    .site-header {
        align-items: center;
        flex-flow: row wrap;
    }

    .site-header.nav-enhanced .site-nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.5rem;
        border: 1px solid var(--line);
        background: var(--paper);
        box-shadow: var(--shadow-sm);
    }

    .site-header.nav-enhanced .site-nav {
        display: none;
    }

    .site-header.nav-enhanced.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        width: 100%;
    }

    .hero,
    .intro-grid,
    .pricing-grid,
    .launch-panel,
    .embedded-checkout-shell {
        grid-template-columns: 1fr;
    }

    .embedded-checkout-copy {
        position: static;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 640px) {
    .hero,
    .section {
        width: min(100% - 1rem, 1180px);
    }

    h1 {
        font-size: 3rem;
    }

    .hero-copy,
    .hero-card,
    .intro-grid article,
    .pricing-card,
    .launch-panel,
    .status-page,
    .embedded-checkout-copy,
    .embedded-checkout-card {
        border-radius: 1.4rem;
    }
}

@media (max-width: 720px) {
    .start-field-row {
        grid-template-columns: 1fr;
    }
}

/* Annual savings / included-value badge */
.save-badge {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--ink);
    background: var(--paper-2);
    border: 1px solid rgba(26, 143, 94, 0.25);
    vertical-align: middle;
    white-space: nowrap;
}

/* ════════════════════════ Storefront redesign (zv-) ════════════════════════ */
.zv-section { width: min(1180px, calc(100% - 2rem)); margin: 5.5rem auto 0; }
.zv-heading { max-width: 46rem; margin: 0 auto 2.5rem; text-align: center; }
.zv-heading h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); line-height: 1.1; margin: .5rem 0 .6rem; letter-spacing: -0.02em; }
.zv-heading p { color: var(--muted); font-size: 1.06rem; margin: 0; }
.zv-eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }

/* Buttons */
.zv-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: .98rem; border: 1px solid transparent; transition: transform .12s ease, box-shadow .12s ease, background .12s ease; cursor: pointer; }
.zv-btn:hover { transform: translateY(-1px); }
.zv-btn.primary { color: #fff; background: var(--black); box-shadow: 0 14px 30px rgba(11, 11, 12, 0.16); }
.zv-btn.primary:hover { box-shadow: 0 18px 38px rgba(11, 11, 12, 0.16); }
.zv-btn.ghost { background: rgba(255,255,255,.7); border-color: var(--line); color: var(--ink); }
.zv-btn.light { color: var(--black); background: #fff; box-shadow: 0 14px 30px rgba(11, 11, 12, 0.16); }
.zv-btn.block { display: flex; width: 100%; margin-top: 1.1rem; }

/* Hero */
.zv-hero { width: min(1180px, calc(100% - 2rem)); margin: 3rem auto 0; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.zv-hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.04; letter-spacing: -0.03em; margin: .8rem 0 1rem; }
.zv-lead { color: var(--muted); font-size: 1.18rem; line-height: 1.55; max-width: 34rem; margin: 0 0 1.8rem; }
.zv-hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.zv-trust { margin: 1.2rem 0 0; color: var(--muted); font-size: .92rem; font-weight: 600; }

/* Hero mockup */
.zv-mock { background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 1.5rem; padding: 1.3rem 1.4rem; box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.zv-mock-head { display: flex; align-items: center; gap: .6rem; font-size: 1.02rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); margin-bottom: .4rem; }
.zv-mock-dot { width: .7rem; height: .7rem; border-radius: 50%; background: var(--black); }
.zv-mock-row { display: grid; grid-template-columns: 3rem 1fr auto auto; align-items: center; gap: .7rem; padding: .7rem 0; border-bottom: 1px solid rgba(11, 11, 12, 0.10); font-size: .95rem; }
.zv-mock-row.muted { color: var(--muted); }
.zv-mock-time { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink); }
.zv-mock-tech { color: var(--muted); font-size: .85rem; }
.zv-pill { font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .18rem .6rem; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--paper); color: var(--muted); white-space: nowrap; }
.zv-pill.ok { background: var(--black); border-color: var(--black); color: #fff; }
.zv-pill.new { background: var(--paper); border-color: var(--ink); color: var(--ink); font-style: italic; }
.zv-mock-foot { display: flex; justify-content: space-between; align-items: center; padding-top: .9rem; font-size: .85rem; color: var(--muted); }
.zv-mock-rev { font-weight: 800; color: var(--ink); }

/* Value props */
.zv-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.zv-value { background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 1.3rem; padding: 1.8rem; box-shadow: 0 18px 44px rgba(11, 11, 12, 0.10); }
.zv-value-ic { width: 3rem; height: 3rem; border-radius: .9rem; display: grid; place-items: center; color: var(--ink); background: var(--paper-2); margin-bottom: 1rem; }
.zv-value-ic svg { width: 1.6rem; height: 1.6rem; }
.zv-value h3 { font-size: 1.2rem; margin: 0 0 .5rem; }
.zv-value p { color: var(--muted); margin: 0; line-height: 1.55; }

/* Steps */
.zv-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.zv-step { position: relative; padding: 1.6rem; border-radius: 1.2rem; background: rgba(255,255,255,.6); border: 1px solid var(--line); }
.zv-step-n { display: grid; place-items: center; width: 2.3rem; height: 2.3rem; border-radius: 50%; font-weight: 800; color: #fff; background: var(--black); margin-bottom: .9rem; }
.zv-step h4 { margin: 0 0 .4rem; font-size: 1.12rem; }
.zv-step p { margin: 0; color: var(--muted); line-height: 1.5; }

/* Pricing + CSS-only billing toggle */
.zv-bill-input { position: absolute; left: -9999px; opacity: 0; }
.zv-toggle { display: inline-flex; gap: .25rem; margin: 0 auto 2.2rem; padding: .3rem; border-radius: 999px; background: rgba(255,255,255,.7); border: 1px solid var(--line); width: fit-content; }
.zv-billing { display: flex; flex-direction: column; align-items: center; }
.zv-toggle-opt { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.2rem; border-radius: 999px; font-weight: 700; color: var(--muted); cursor: pointer; transition: background .15s ease, color .15s ease; }
#bill-monthly:checked ~ .zv-toggle .opt-monthly,
#bill-annual:checked ~ .zv-toggle .opt-annual { background: var(--black); color: #fff; }
.zv-save { font-size: .7rem; font-weight: 800; padding: .12rem .5rem; border-radius: 999px; color: var(--ink); background: var(--paper-2); border: 1px solid rgba(26,143,94,.25); white-space: nowrap; }
.zv-toggle-opt .zv-save { color: var(--ink); }
#bill-annual:checked ~ .zv-toggle .opt-annual .zv-save { background: #fff; }

.zv-plan-grid { width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; align-items: stretch; }
.zv-plan { position: relative; display: flex; flex-direction: column; background: rgba(255,255,255,.85); border: 1px solid var(--line); border-radius: 1.3rem; padding: 1.7rem 1.5rem; box-shadow: 0 18px 44px rgba(11, 11, 12, 0.10); }
.zv-plan.featured { border-color: var(--black); border-width: 2px; box-shadow: 0 26px 60px rgba(11, 11, 12, 0.14); background: #fff; }
.zv-flag { position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--black); padding: .25rem .8rem; border-radius: 999px; }
.zv-plan-top { margin-bottom: 1rem; }
.zv-plan-name { font-size: 1.3rem; font-weight: 800; }
.zv-plan-tag { display: block; color: var(--muted); font-size: .9rem; margin-top: .15rem; }
.zv-price { display: block; }
.zv-amt { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; }
.zv-per { color: var(--muted); font-weight: 600; }
.zv-price-note { margin: .35rem 0 0; color: var(--muted); font-size: .85rem; }
/* Toggle hide/show — element-qualified so they beat .zv-btn.block { display:flex }. */
.zv-price.annual-only { display: none; }
.zv-btn.annual-only { display: none; }
#bill-annual:checked ~ .zv-plan-grid .zv-price.monthly-only { display: none; }
#bill-annual:checked ~ .zv-plan-grid .zv-btn.monthly-only { display: none; }
#bill-annual:checked ~ .zv-plan-grid .zv-price.annual-only { display: block; }
#bill-annual:checked ~ .zv-plan-grid .zv-btn.annual-only { display: flex; }
.zv-seats { margin: 1rem 0 0; font-weight: 700; font-size: .92rem; color: var(--ink); }
.zv-feats { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .55rem; }
.zv-feats li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: .94rem; line-height: 1.4; }
.zv-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--ink); font-weight: 800; }
.zv-plan .zv-btn.block { margin-top: auto; }
.zv-plan .zv-feats { margin-bottom: 1.2rem; }

/* Comparison */
.zv-matrix-shell { overflow-x: auto; border: 1px solid var(--line); border-radius: 1.3rem; background: rgba(255,255,255,.8); box-shadow: var(--shadow); }
.zv-matrix { width: 100%; border-collapse: collapse; table-layout: fixed; min-width: 760px; }
.zv-matrix-feature-column { width: 36%; }
.zv-matrix-plan-column { width: 16%; }
.zv-matrix th, .zv-matrix td { padding: .95rem 1.1rem; text-align: center; vertical-align: middle; border-bottom: 1px solid rgba(11, 11, 12, 0.10); font-size: .95rem; }
.zv-matrix thead th + th,
.zv-matrix tbody tr:not(.zv-matrix-band) > :not(:first-child) { border-left: 1px solid rgba(11, 11, 12, 0.08); }
.zv-matrix thead th { font-size: 1.02rem; color: var(--ink); background: rgba(238,244,251,.7); }
.zv-matrix th[scope="row"] { text-align: left; font-weight: 600; color: var(--ink); }
.zv-matrix tbody tr:last-child td, .zv-matrix tbody tr:last-child th { border-bottom: none; }
.zv-yes { color: var(--ink); font-weight: 800; }
.zv-no { color: var(--line-strong); }

/* FAQ */
.zv-faq { max-width: 50rem; margin: 0 auto; display: grid; gap: .8rem; }
.zv-faq-item { background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 1rem; padding: 0 1.3rem; }
.zv-faq-item summary { list-style: none; cursor: pointer; padding: 1.1rem 0; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.zv-faq-item summary::-webkit-details-marker { display: none; }
.zv-faq-item summary::after { content: "+"; color: var(--ink); font-size: 1.4rem; font-weight: 700; transition: transform .2s ease; }
.zv-faq-item[open] summary::after { transform: rotate(45deg); }
.zv-faq-item p { margin: 0 0 1.1rem; color: var(--muted); line-height: 1.6; }

/* Final CTA */
.zv-cta-band { width: min(1180px, calc(100% - 2rem)); margin: 5.5rem auto 4rem; text-align: center; padding: 3.5rem 2rem; border-radius: 1.8rem; color: #fff; background: var(--black); box-shadow: 0 30px 70px rgba(11, 11, 12, 0.22); }
.zv-cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin: 0 0 .6rem; letter-spacing: -0.02em; }
.zv-cta-band p { margin: 0 0 1.6rem; color: rgba(255,255,255,.92); font-size: 1.08rem; }

@media (max-width: 920px) {
    .zv-hero { grid-template-columns: 1fr; gap: 2rem; }
    .zv-value-grid, .zv-steps { grid-template-columns: 1fr; }
    .zv-plan-grid { grid-template-columns: repeat(2, 1fr); }
    .zv-plan.featured { transform: none; }
}
@media (max-width: 560px) {
    .zv-plan-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   Capability areas — the 88 catalog rows folded into five blocks an owner can
   scan. Three tiers of depth: a sentence, five example chips, then every row as
   its own card. Nothing is dropped; the counts on each block sum to the total.
   ============================================================================ */

/* Alternating section ground gives rhythm without introducing colour. */
.zv-band { background: var(--paper-2); border-block: 1px solid var(--line); }
.zv-band .zv-section { margin-block: 0; padding-block: 4.5rem; }

/* One accent per area, inherited from the capability card each block replaces so
   the hue keeps the meaning it already had on this page. Colour is confined to the
   count, the rules, and the card rails — type and body copy stay monochrome. */
.accent-amber { --accent: #b0721f; --accent-tint: rgba(176, 114, 31, .075); --accent-line: rgba(176, 114, 31, .28); }
.accent-blue { --accent: #2f5f96; --accent-tint: rgba(47, 95, 150, .075); --accent-line: rgba(47, 95, 150, .28); }
.accent-sea { --accent: #2e7469; --accent-tint: rgba(46, 116, 105, .075); --accent-line: rgba(46, 116, 105, .28); }
.accent-violet { --accent: #6b4f95; --accent-tint: rgba(107, 79, 149, .075); --accent-line: rgba(107, 79, 149, .28); }
.accent-bronze { --accent: #8a5a2b; --accent-tint: rgba(138, 90, 43, .075); --accent-line: rgba(138, 90, 43, .28); }

.zv-areas { display: flex; flex-direction: column; gap: .55rem; }

.zv-area {
    border: 1px solid var(--line);
    border-radius: .9rem;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.zv-area > summary {
    list-style: none;
    cursor: pointer;
    padding: 1.35rem 1.5rem;
    display: grid;
    grid-template-columns: 1rem 4.2rem 1fr auto;
    gap: 1.1rem;
    align-items: start;
}

.zv-area > summary::-webkit-details-marker { display: none; }

.zv-area > summary::before {
    content: "+";
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.35;
}

.zv-area[open] > summary::before { content: "\2212"; }
.zv-area[open] > summary { border-bottom: 1px solid var(--accent-line, var(--line)); }
.zv-area > summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: .9rem; }

.zv-area-count {
    font-family: "Newsreader", Georgia, serif;
    font-variant-numeric: tabular-nums;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: .95;
    color: var(--accent, var(--ink));
    background: var(--accent-tint);
    border: 1px solid var(--accent-line, var(--line));
    border-radius: .7rem;
    width: 4.2rem;
    padding: .6rem .2rem .5rem;
    text-align: center;
}

.zv-area-count span {
    display: block;
    margin-top: .2rem;
    font-family: "Instrument Sans", system-ui, sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: .75;
}

.zv-area-main h3 {
    margin: 0;
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
}

.zv-area-desc { margin: .45rem 0 0; font-size: .96rem; color: var(--ink-2); max-width: 54ch; }

.zv-area-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .9rem; }

.zv-chip {
    font-size: .78rem;
    font-weight: 600;
    padding: .25rem .6rem;
    border-radius: .45rem;
    background: var(--paper-2);
    color: var(--ink-2);
    border: 1px solid var(--line);
}

.zv-chip.more { background: transparent; color: var(--muted); border-style: dashed; font-weight: 500; }

.zv-area-hint { font-size: .82rem; font-weight: 700; color: var(--muted); white-space: nowrap; padding-top: .5rem; }
.zv-area-hint-close { display: none; }
.zv-area[open] .zv-area-hint-open { display: none; }
.zv-area[open] .zv-area-hint-close { display: inline; }

.zv-area-body { padding: 1.5rem; display: grid; gap: 1.7rem; }

.zv-sub h4 {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: baseline;
    margin: 0;
    padding-bottom: .55rem;
    border-bottom: 1px solid var(--accent-line, var(--line));
    font-family: "Instrument Sans", system-ui, sans-serif;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--accent, var(--muted));
}

.zv-sub-count { color: var(--muted); font-weight: 700; }

/* Seamless grid: 1px gaps over a paper ground with each card drawing its own
   hairline ring, so cards touch without doubling the rule between them. */
.zv-feat-grid {
    margin-top: .85rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
    gap: 1px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: .9rem;
    overflow: hidden;
}

.zv-feat {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .38rem;
    padding: .95rem 1.9rem 1rem 1.2rem;
    background: var(--paper);
    box-shadow: 0 0 0 1px var(--line);
    cursor: pointer;
    user-select: none;
    transition: background .15s ease, box-shadow .15s ease;
}

.zv-feat:hover,
.zv-feat:focus-visible {
    background: var(--accent-tint, var(--paper-2));
    box-shadow: 0 0 0 1px var(--accent-line, var(--line-strong));
    z-index: 1;
}

.zv-feat:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }

/* Vertical rail down the left edge, carrying the area accent. */
.zv-feat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent, var(--ink));
    transition: width .18s ease;
}

.zv-feat:hover::before, .zv-feat:focus-visible::before { width: 5px; }
.zv-feat.pending::before { background: var(--line-strong); }

/* Chevron affordance appears on hover or focus only, so resting cards stay quiet. */
.zv-feat::after {
    content: "";
    position: absolute;
    right: .95rem;
    top: 1.15rem;
    width: .42rem;
    height: .42rem;
    border-right: 1.5px solid var(--accent, var(--muted));
    border-top: 1.5px solid var(--accent, var(--muted));
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .15s ease, right .15s ease;
}

.zv-feat:hover::after, .zv-feat:focus-visible::after { opacity: 1; right: .75rem; }

.zv-feat-name { font-size: .875rem; font-weight: 600; line-height: 1.3; color: var(--ink); }
.zv-feat.pending .zv-feat-name { color: var(--muted); font-weight: 500; }

.zv-tier-note {
    margin: 2rem 0 0;
    padding: 1.3rem 1.5rem;
    border-radius: 1.3rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .8);
    box-shadow: var(--shadow-sm);
    font-size: .97rem;
    color: var(--ink-2);
    max-width: 60rem;
}

.zv-tier-note strong { color: var(--ink); }

@media (max-width: 780px) {
    .zv-area > summary { grid-template-columns: 1rem 1fr; gap: .8rem; }
    .zv-area-count { grid-column: 2; width: auto; display: inline-block; font-size: 1.9rem; padding: .35rem .7rem; }
    .zv-area-count span { display: inline; margin-left: .5rem; }
    .zv-area-main { grid-column: 2; }
    .zv-area-hint { display: none; }
}

/* ============================================================================
   Feature detail modal. The cards stay the source of truth: the dialog reads its
   group off the DOM, so a row added to a grid joins the carousel with no second
   place to update.
   ============================================================================ */

.zv-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background: rgba(11, 11, 12, .52);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s;
}

.zv-modal.open { opacity: 1; visibility: visible; }

/* An author display rule outranks the user-agent [hidden] rule, so restate it. */
.zv-modal[hidden] { display: none; }

.zv-dialog {
    position: relative;
    width: min(38rem, 100%);
    padding: 2.1rem 2.2rem 1.4rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.3rem;
    box-shadow: 0 34px 80px rgba(11, 11, 12, .26);
    overflow: hidden;
    transform: translateY(14px) scale(.985);
    transition: transform .22s cubic-bezier(.2, .8, .3, 1);
}

.zv-modal.open .zv-dialog { transform: none; }

.zv-dialog::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent, var(--ink));
}

.zv-modal-close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: .55rem;
    background: transparent;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
}

.zv-modal-close:hover { background: var(--paper-2); color: var(--ink); }

.zv-modal-group {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent, var(--muted));
}

.zv-modal-name {
    margin: .55rem 0 0;
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.zv-modal-body .zv-release-state { margin-top: .6rem; }
.zv-modal-desc { margin: .9rem 0 0; font-size: 1.02rem; line-height: 1.6; color: var(--ink-2); }

.zv-modal-body { animation: zv-modal-in .22s ease both; }
.zv-modal-body.back { animation-name: zv-modal-in-back; }

@keyframes zv-modal-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@keyframes zv-modal-in-back { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }

.zv-modal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.zv-modal-count { font-size: .8rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.zv-modal-nav { display: flex; gap: .4rem; }

.zv-modal-nav button {
    padding: .5rem .95rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    font-family: inherit;
    font-size: .84rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

.zv-modal-nav button:hover:not(:disabled) { background: var(--accent-tint, var(--paper-2)); border-color: var(--accent-line, var(--line)); }
.zv-modal-nav button:disabled { opacity: .38; cursor: default; }
.zv-modal-close:focus-visible, .zv-modal-nav button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

@media (max-width: 560px) {
    .zv-dialog { padding: 1.9rem 1.4rem 1.2rem; }
    .zv-modal-name { font-size: 1.45rem; }
}

@media (prefers-reduced-motion: reduce) {
    .zv-dialog { transform: none; }
    .zv-modal-body { animation: none; }
    .zv-feat, .zv-feat::before, .zv-feat::after { transition: none; }
}
.zv-release-state {
    display: inline-block;
    color: #594b72;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* ---------------------------------------------------------------------------
   Platforms — the three audiences and the two screens each one gets.
   Cards are windows onto the product: the artwork bleeds past the bottom edge
   rather than sitting inside a frame.
   --------------------------------------------------------------------------- */
.zv-plats { display: grid; gap: 1.4rem; }
.zv-plat-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.zv-plat {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    padding: 1.8rem 1.8rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: var(--shadow);
}
.zv-plat-head { display: flex; flex-direction: column; gap: .45rem; }
.zv-plat-where {
    display: flex; align-items: center; gap: .45rem;
    font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.zv-plat-where::before { content: ""; width: .4rem; height: .4rem; border-radius: 50%; background: var(--ink); flex: none; }
.zv-plat h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.02em; }
.zv-plat-lead { margin: 0; color: var(--ink-2); font-size: .98rem; }
.zv-plat ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.zv-plat li {
    display: grid; grid-template-columns: 1.1rem 1fr; gap: .65rem; align-items: start;
    padding: .62rem 0; border-top: 1px solid var(--line);
    font-size: .93rem; color: var(--ink-2);
}
.zv-plat li:first-child { border-top: 0; padding-top: 0; }
.zv-plat li svg { width: 1.1rem; height: 1.1rem; margin-top: .12rem; color: var(--ink); }
.zv-plat-web {
    margin: 0; padding: .7rem .85rem;
    border: 1px dashed var(--line-strong); border-radius: .7rem;
    font-size: .86rem; color: var(--muted); background: var(--paper-2);
}
.zv-plat-art { margin-top: auto; display: flex; justify-content: center; margin-left: -.6rem; margin-right: -.6rem; }
.zv-plat-art img { width: 100%; height: auto; display: block; margin-bottom: -2.2rem; }
.zv-plat.wide { padding-bottom: 1.8rem; }
.zv-plat.wide .zv-plat-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.2rem; align-items: center; }
.zv-plat.wide .zv-plat-copy { display: flex; flex-direction: column; gap: 1.1rem; }
.zv-plat.wide .zv-plat-art { margin: 0; }
.zv-plat.wide .zv-plat-art img { margin-bottom: 0; border-radius: .5rem; }

/* Compare table — group bands on the primary rows, folds for the rest. */
.zv-matrix-band th {
    text-align: left; background: var(--paper-2);
    font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.zv-fold-lead { margin: 2rem 0 .9rem; font-size: .92rem; color: var(--muted); }
.zv-fold {
    border: 1px solid var(--line); border-radius: .9rem;
    margin-bottom: .55rem; background: var(--paper);
}
.zv-fold > summary {
    list-style: none; cursor: pointer; padding: .95rem 1.15rem;
    display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
}
.zv-fold > summary::-webkit-details-marker { display: none; }
.zv-fold > summary::before {
    content: "+"; font-weight: 700; font-size: 1.05rem; color: var(--muted);
    width: 1rem; flex: none; line-height: 1;
}
.zv-fold[open] > summary::before { content: "\2212"; }
.zv-fold > summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: .9rem; }
.zv-fold-title { font-weight: 700; font-size: 1rem; flex: 1; }
.zv-fold-count { font-size: .8rem; color: var(--muted); }
.zv-fold .zv-matrix-shell { border: 0; border-top: 1px solid var(--line); border-radius: 0; }
.zv-visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 860px) {
    .zv-plat-pair { grid-template-columns: 1fr; }
    .zv-plat.wide .zv-plat-inner { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Marketplace & trust — the business model, stated once, in reverse.
   Inverted because it is the one claim the whole model rests on; it borrows the
   CTA band's treatment rather than introducing a second dark style.
   --------------------------------------------------------------------------- */
.zv-market {
    width: min(1180px, calc(100% - 2rem));
    margin: 4.5rem auto;
    padding: 3rem 2.6rem 2.2rem;
    border-radius: 1.8rem;
    background: var(--black);
    color: #fff;
    box-shadow: 0 30px 70px rgba(11, 11, 12, 0.22);
}
.zv-market-inner { display: flex; flex-direction: column; gap: 2.2rem; }
.zv-market-lead { display: flex; flex-direction: column; gap: .8rem; max-width: 62ch; }
.zv-eyebrow.light { color: rgba(255, 255, 255, .6); }
.zv-market h2 {
    margin: 0; font-family: "Newsreader", Georgia, serif; font-weight: 600;
    font-size: clamp(1.7rem, 3.6vw, 2.4rem); line-height: 1.12; letter-spacing: -.02em; text-wrap: balance;
}
.zv-market p { margin: 0; color: rgba(255, 255, 255, .82); font-size: 1.02rem; line-height: 1.6; }
.zv-market-listing { color: rgba(255, 255, 255, .62) !important; font-size: .95rem !important; }
.zv-market-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.zv-market-col h3 {
    margin: 0 0 .7rem; font-size: .74rem; font-weight: 800; letter-spacing: .13em;
    text-transform: uppercase; color: rgba(255, 255, 255, .6);
}
.zv-market-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.zv-market-col li {
    display: grid; grid-template-columns: 1.15rem 1fr; gap: .6rem; align-items: start;
    padding: .7rem 0; border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .92rem; line-height: 1.45; color: rgba(255, 255, 255, .92);
}
.zv-market-col li:first-child { border-top: 0; padding-top: 0; }
.zv-market-col li svg { width: 1.15rem; height: 1.15rem; margin-top: .1rem; color: #fff; }
.zv-market-note {
    margin: 2rem 0 0; padding-top: 1.1rem; border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .82rem; color: rgba(255, 255, 255, .55);
}

@media (max-width: 920px) {
    .zv-market { padding: 2.2rem 1.5rem 1.6rem; }
    .zv-market-inner { grid-template-columns: 1fr; gap: 1.8rem; }
    .zv-market-cols { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* Insight figures — single-measure charts, direct-labelled. The brand is achromatic,
   so nothing here encodes identity in colour; the ramp only carries magnitude. */
.zv-figs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.zv-fig {
    margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 1.2rem;
    padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 1rem;
    box-shadow: var(--shadow-sm);
}
.zv-fig img { width: 100%; height: auto; display: block; }
.zv-fig figcaption { display: flex; flex-direction: column; gap: .35rem; }
.zv-fig h3 { margin: 0; font-size: 1.05rem; letter-spacing: -.02em; }
.zv-fig p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.zv-fig-tier {
    margin-top: .25rem; align-self: flex-start;
    font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted); border: 1px solid var(--line-strong); border-radius: 999px; padding: .2rem .55rem;
}
@media (max-width: 900px) { .zv-figs { grid-template-columns: 1fr; } }

/* ============================================================================
   App showcase — two decks on one mechanism. The desktop deck sits behind at
   desk scale; the app deck overlaps its lower-right. Both roll on their own and
   hand control to the pointer on hover. A deck holding a single card renders as
   a plain image: no controls, no rotation.
   ============================================================================ */

.zv-apps { padding-block: 1rem 0; }
.zv-apps-stage { position: relative; margin-top: 1rem; padding-bottom: 2.6rem; }

.zv-deck { position: relative; perspective: 1400px; perspective-origin: 50% 45%; outline: none; }
.zv-deck:focus-visible { outline: 2px solid var(--ink); outline-offset: 8px; border-radius: 1.2rem; }

.zv-deck-card {
    margin: 0;
    border-radius: 1.1rem;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    transform-origin: 50% 50%;
    backface-visibility: hidden;
}

/* Only a live deck stacks its cards; a single card keeps normal flow. */
.zv-deck.is-deck .zv-deck-card {
    position: absolute;
    inset: 0;
    transition: transform .62s cubic-bezier(.2, .75, .25, 1), opacity .62s ease, filter .62s ease;
    will-change: transform;
}

.zv-deck-card img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.zv-deck:not(.is-deck) .zv-deck-card img { height: auto; }

/* Desktop deck */
.zv-deck-desk { width: 100%; }
.zv-deck-desk.is-deck { aspect-ratio: 1600 / 652; cursor: pointer; }
.zv-deck-desk .zv-deck-card { box-shadow: var(--shadow); }

/* App deck, in front of the desktop one */
.zv-deck-phone {
    position: absolute;
    right: 1.5rem;
    bottom: -2.6rem;
    z-index: 30;
    width: clamp(8.5rem, 14vw, 11.5rem);
    aspect-ratio: 540 / 1092;
}
.zv-deck-phone.is-deck { cursor: pointer; perspective: 1100px; }
.zv-deck-phone .zv-deck-card {
    border-radius: .9rem;
    border-color: var(--line-strong);
    box-shadow: 0 22px 44px rgba(11, 11, 12, .22);
}

.zv-apps-caption { margin: 1rem 0 0; font-size: .84rem; color: var(--muted); }

/* Controls appear only once a deck is awake (hover or focus). */
.zv-deck-ui {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .55rem;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
    z-index: 40;
}
.zv-deck-desk .zv-deck-ui { bottom: -2.9rem; }
.zv-deck-phone .zv-deck-ui { bottom: -3.1rem; }
.zv-deck.awake .zv-deck-ui { opacity: 1; pointer-events: auto; }

.zv-deck-dots { display: inline-flex; gap: .4rem; align-items: center; }

.zv-deck-dot {
    width: .42rem; height: .42rem;
    padding: 0; border: 0; border-radius: 50%;
    background: var(--line-strong);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.zv-deck-dot[aria-current="true"] { background: var(--ink); transform: scale(1.35); }

.zv-deck-arrow {
    width: 1.7rem; height: 1.7rem;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    font-size: .8rem; line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.zv-deck-arrow:hover { background: var(--paper-2); }

.zv-deck-hint {
    position: absolute; left: 50%; transform: translateX(-50%);
    white-space: nowrap; font-size: .78rem; color: var(--muted);
    transition: opacity .25s ease;
}
.zv-deck-desk .zv-deck-hint { bottom: -2.6rem; }
.zv-deck-phone .zv-deck-hint { bottom: -2.8rem; }
.zv-deck.awake .zv-deck-hint { opacity: 0; }

.zv-apps-note { margin: 3.6rem 0 0; font-size: .9rem; color: var(--muted); }

@media (max-width: 860px) {
    .zv-apps-stage { padding-bottom: 0; }
    .zv-deck-phone { position: static; right: auto; bottom: auto; margin: 2.6rem auto 0; width: min(58vw, 14rem); }
    .zv-apps-note { margin-top: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    .zv-deck.is-deck .zv-deck-card { transition: none; }
}
