/* ============================================================
   Vive Hosting - D7 "Calm Index" theme on top of Bootstrap 5.
   Almost-monochrome dark palette, DM Sans + JetBrains Mono.
   ============================================================ */

:root {
    --vh-bg:       #161310;
    --vh-surface:  #1F1B16;
    --vh-ink:      #F4F1EA;
    --vh-muted:    #9A9389;
    --vh-dim:      #736B5F;
    --vh-accent:   #E08664;
    --vh-line:     rgba(244, 241, 234, 0.10);
    --vh-line-2:   rgba(244, 241, 234, 0.22);

    --vh-sans: "DM Sans", Manrope, ui-sans-serif, system-ui, sans-serif;
    --vh-mono: ui-monospace, "JetBrains Mono", monospace;

    --vh-max: 1280px;
    --vh-pad: 24px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

body.vh {
    margin: 0;
    background: var(--vh-bg);
    color: var(--vh-ink);
    font-family: var(--vh-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;            /* belt-and-braces against tiny-viewport bleed */
}

.vh h1, .vh h2, .vh h3 { margin: 0; font-weight: 600; letter-spacing: -0.025em; line-height: 1; }
.vh a { text-decoration: none; }
.vh a:not(.vh-btn) { color: inherit; }
.vh main { display: block; }

.vh-container {
    width: 100%;
    max-width: calc(var(--vh-max) + var(--vh-pad) * 2);
    margin-inline: auto;
    padding-inline: var(--vh-pad);
}

/* ---------- Typography helpers ---------- */
.vh-eyebrow {
    font-family: var(--vh-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vh-muted);
}

.vh-h1 {
    font-size: clamp(44px, 8.5vw, 88px);
    letter-spacing: -0.035em;
    line-height: 1;
}

.vh-h2 {
    font-size: clamp(28px, 4.6vw, 38px);
    letter-spacing: -0.03em;
    line-height: 1;
}

/* ---------- Buttons ---------- */
.vh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: opacity .15s ease, background-color .15s ease, color .15s ease;
}
.vh-btn:hover { opacity: .9; }
.vh-btn--ink    { background: var(--vh-ink); color: var(--vh-bg); }
.vh-btn--accent { background: var(--vh-accent); color: #fff; }
.vh-btn--ghost  { background: transparent; color: var(--vh-ink); border-color: var(--vh-ink); }
.vh-btn--ghost:hover { background: var(--vh-ink); color: var(--vh-bg); opacity: 1; }

.vh-btn--card {
    width: 100%;
    border-color: var(--vh-ink);
    background: transparent;
    color: var(--vh-ink);
}
.vh-btn--card:hover { background: var(--vh-ink); color: var(--vh-bg); opacity: 1; }
.vh-btn--card.vh-btn--accent { border-color: transparent; }
.vh-btn--card.vh-btn--accent:hover { opacity: .9; background: var(--vh-accent); color: #fff; }

/* ---------- Brand ---------- */
.vh-brand {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--vh-ink);
    white-space: nowrap;
}
.vh-brand span { color: var(--vh-muted); }

/* Wordmark: sized by height, scales to viewBox aspect ratio. */
.vh-brand { display: inline-flex; align-items: center; }
.vh-brand__logo {
    height: 26px;
    width: auto;
    display: block;
}
.vh-nav .vh-brand__logo { height: 36px; }

/* ---------- Nav ---------- */
.vh-nav { border-bottom: 1px solid var(--vh-line); }
.vh-nav__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 44px;
    padding-block: 28px;
}
.vh-nav__collapse {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.vh-nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.vh-nav__link {
    position: relative;
    font-size: 14px;
    color: var(--vh-muted);
    transition: color .15s ease;
}
/* Sliding underline indicator: cream on hover/focus, accent for the current
   page so the active item is distinct from a hovered one. */
.vh-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}
.vh-nav__link:hover,
.vh-nav__link:focus-visible,
.vh-nav__link.is-active { color: var(--vh-ink); }
.vh-nav__link:hover::after,
.vh-nav__link:focus-visible::after,
.vh-nav__link.is-active::after { transform: scaleX(1); }
.vh-nav__link.is-active { color: var(--vh-ink); font-weight: 500; }
.vh-nav__link.is-active::after { background: var(--vh-accent); }
.vh-nav__cta { display: flex; align-items: center; gap: 18px; }
.vh-nav__cta .vh-btn { padding: 10px 18px; }

.vh-nav__toggle {
    display: none;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid var(--vh-line-2);
    border-radius: 8px;
    cursor: pointer;
}
.vh-nav__toggle span { width: 16px; height: 1.5px; background: var(--vh-ink); display: block; }

/* Mobile nav: the collapse is hidden until the toggle adds `.is-open`
   (vanilla replacement for Bootstrap's collapse - see app.js). On desktop the
   base `.vh-nav__collapse { display: flex }` shows it and the toggle stays
   hidden, so no min-width override is needed. */
@media (max-width: 991.98px) {
    .vh-nav__toggle { display: flex; }
    /* When the menu wraps to its own row, the inner row-gap would stack on top
       of the menu's padding-top - zero it so spacing stays controlled. */
    .vh-nav__inner { row-gap: 0; }
    .vh-nav__collapse {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-top: 24px;
    }
    .vh-nav__collapse.is-open { display: flex; }
    .vh-nav__links { flex-direction: column; align-items: flex-start; gap: 14px; }
    .vh-nav__link { font-size: 16px; }
    .vh-nav__cta { flex-direction: column; align-items: flex-start; width: 100%; }
    .vh-nav__cta .vh-btn { width: 100%; }
}

/* ---------- Hero ---------- */
.vh-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 56px;
    text-align: center;
}
.vh-hero > .vh-container { position: relative; z-index: 1; }

/* Subtle drifting grid behind the hero. A faint mono-style grid slowly pans
   diagonally; a soft accent bloom sits underneath for warmth. Both fade out
   toward the edges so it never reads as a hard pattern. Animates transform/
   opacity only, so it stays on the compositor. */
.vh-hero__glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.vh-hero__glow::before {                 /* the drifting grid */
    content: "";
    position: absolute;
    inset: -48px;                        /* overscan so the pan never shows an edge */
    background-image:
        linear-gradient(to right, rgba(244, 241, 234, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(244, 241, 234, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 28%, #000 0%, transparent 72%);
            mask-image: radial-gradient(ellipse 70% 75% at 50% 28%, #000 0%, transparent 72%);
    will-change: transform;
    animation: vh-grid-pan 11s linear infinite;
}
.vh-hero__glow::after {                   /* soft accent bloom */
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    width: 70vw;
    max-width: 900px;
    aspect-ratio: 2 / 1;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(224, 134, 100, 0.16), transparent 60%);
    animation: vh-bloom 6s ease-in-out infinite alternate;
}

@keyframes vh-grid-pan {                  /* one full tile → seamless loop */
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(48px, 48px, 0); }
}
@keyframes vh-bloom {
    from { opacity: 0.7; }
    to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .vh-hero__glow::before,
    .vh-hero__glow::after { animation: none; }
}

.vh-hero .vh-eyebrow { margin-bottom: 22px; }
.vh-hero .vh-h1 { margin-inline: auto; }
.vh-hero__sub {
    max-width: 540px;
    margin: 36px auto 0;
    font-size: 17px;
    line-height: 1.5;
    color: var(--vh-muted);
}
.vh-hero__sub--left { margin-inline: 0; }

/* Billing toggle */
.vh-toggle {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    gap: 2px;
    margin-top: 36px;
    padding: 4px;
    background: var(--vh-surface);
    border-radius: 999px;
}
.vh-toggle__pill {
    padding: 7px 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--vh-muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}
.vh-toggle__pill.is-active { background: var(--vh-ink); color: var(--vh-bg); font-weight: 600; }

/* ---------- Section + heads ---------- */
.vh-section { padding-top: 64px; }
.vh-section--included { padding-top: 88px; }
.vh-section--faq { padding-bottom: 80px; }
.vh-section--cta { padding-bottom: 80px; }
.vh-section:last-of-type { padding-bottom: 80px; }

.vh-sec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 24px;
}
.vh-sec-head .vh-eyebrow { margin-bottom: 14px; }
.vh-sec-head__note {
    margin: 0;
    max-width: 340px;
    font-size: 13px;
    color: var(--vh-muted);
    text-align: right;
}
.vh-sec-head__note a { color: var(--vh-ink); font-weight: 600; }
.vh-section--included .vh-sec-head { margin-bottom: 32px; }
/* Billing toggle when used as a section-head action (vs. centred in the hero). */
.vh-sec-head .vh-toggle { margin-top: 0; flex: 0 0 auto; }

/* ---------- Plan scroller (reusable) ----------
   A horizontal, snap-scrolling rail that shows `--vh-scroller-visible` cards
   (default 4) at a time and reveals the rest behind the prev/next arrows. The
   shell is content-agnostic; app.js binds the arrows to any [data-vh-scroller]. */
.vh-scroller {
    position: relative;
    --vh-cols: var(--vh-scroller-visible, 4);
}
.vh-scroller__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% / var(--vh-cols));
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    border-top: 1px solid var(--vh-line);
    border-bottom: 1px solid var(--vh-line);
    -ms-overflow-style: none;          /* hide scrollbar (Edge/IE) */
    scrollbar-width: none;             /* hide scrollbar (Firefox) */
    overscroll-behavior-x: contain;
}
.vh-scroller__track::-webkit-scrollbar { display: none; }   /* hide scrollbar (WebKit) */
.vh-scroller__track > * { scroll-snap-align: start; }

.vh-scroller__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid var(--vh-line-2);
    background: var(--vh-surface);
    color: var(--vh-ink);
    cursor: pointer;
    transition: opacity .15s ease, background-color .15s ease, color .15s ease;
}
.vh-scroller__arrow:hover { background: var(--vh-ink); color: var(--vh-bg); }
.vh-scroller__arrow[hidden] { display: none; }
.vh-scroller__arrow--prev { left: -22px; }
.vh-scroller__arrow--next { right: -22px; }

/* ---------- Pricing cards ---------- */
.vh-card {
    display: flex;
    flex-direction: column;
    padding: 40px 28px;
    border-right: 1px solid var(--vh-line);   /* column dividers */
}
/* Any last card in a scroller drops its divider (works for plans, quotes, …). */
.vh-scroller__track > :last-child { border-right: 0; }
.vh-card.is-popular { background: var(--vh-surface); }

.vh-card__name { font-size: 36px; letter-spacing: -0.03em; margin-bottom: 6px; }

.vh-card__specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 28px 0 36px;
}
.vh-spec { display: flex; justify-content: space-between; font-size: 13px; }
.vh-spec__label { color: var(--vh-muted); }
.vh-spec__value { color: var(--vh-ink); }

.vh-card__foot { margin-top: auto; }
.vh-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.vh-price__amount { font-size: 38px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.vh-price__per { font-size: 13px; color: var(--vh-muted); }

/* ---------- Feature grid ---------- */
.vh-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--vh-line);
    border-left: 1px solid var(--vh-line);
}
.vh-feature {
    padding: 32px 28px;
    border-right: 1px solid var(--vh-line);
    border-bottom: 1px solid var(--vh-line);
}
.vh-feature__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.vh-feature__title::before {
    content: "";
    width: 8px; height: 8px;
    flex: 0 0 8px;
    background: var(--vh-accent);   /* matches the accent marker used elsewhere */
}
.vh-feature__body { margin: 0; font-size: 14px; line-height: 1.6; color: var(--vh-muted); }
.vh-features--duo { grid-template-columns: repeat(2, 1fr); }

/* ---------- Prose (content sections) ---------- */
.vh-prose { max-width: 760px; }
.vh-prose .vh-h2 { margin-bottom: 20px; }
.vh-prose h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 36px 0 14px; }
.vh-prose p { margin: 0 0 16px; font-size: 15px; line-height: 1.7; color: var(--vh-muted); }
.vh-prose p:last-child { margin-bottom: 0; }
.vh-prose ul { margin: 0 0 16px; padding-left: 20px; }
.vh-prose li { margin-bottom: 10px; font-size: 15px; line-height: 1.7; color: var(--vh-muted); }
.vh-prose li::marker { color: var(--vh-dim); }
.vh-prose li strong { color: var(--vh-ink); font-weight: 600; }

/* Long-form legal pages: give each stacked section heading breathing room. */
.vh-legal .vh-h2:not(:first-child) { margin-top: 48px; }

/* ---------- Ticked checklist ---------- */
.vh-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; max-width: 760px; }
.vh-check { display: flex; gap: 14px; }
.vh-check__mark {
    position: relative;
    flex: 0 0 20px;
    width: 20px; height: 20px;
    margin-top: 1px;
    border-radius: 999px;
    background: rgba(224, 134, 100, 0.14);   /* accent @ low alpha */
}
.vh-check__mark::after {
    content: "";
    position: absolute;
    left: 7px; top: 4px;
    width: 4px; height: 8px;
    border: solid var(--vh-accent);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}
.vh-check__text { font-size: 15px; line-height: 1.5; color: var(--vh-muted); }
.vh-check__text strong { font-weight: 600; color: var(--vh-ink); }

/* ---------- Testimonial / quote card (scroller content) ---------- */
.vh-quote {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 28px 24px;
    border-right: 1px solid var(--vh-line);
}
.vh-quote__text { margin: 0; font-size: 15px; line-height: 1.6; color: var(--vh-ink); }
/* Decorative quotation marks bracketing each testimonial. line-height:0 +
   vertical-align keep the oversized glyphs from disturbing the text flow. */
.vh-quote__text::before,
.vh-quote__text::after {
    color: var(--vh-accent);
    font-size: 1.7em;
    font-weight: 700;
    line-height: 0;
    vertical-align: -0.35em;
}
.vh-quote__text::before { content: "\201C"; margin-right: 0.06em; }
.vh-quote__text::after  { content: "\201D"; margin-left: 0.06em; }
.vh-quote__by { margin-top: auto; }
.vh-quote__name { font-size: 14px; font-weight: 600; }
.vh-quote__role {
    margin-top: 4px;
    font-family: var(--vh-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--vh-muted);
}

/* ---------- CTA band ---------- */
.vh-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 36px 40px;
    background: var(--vh-surface);
}
.vh-cta__text h3 { font-size: 26px; letter-spacing: -0.02em; }
.vh-cta__text p {
    margin: 12px 0 0;
    max-width: 640px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--vh-muted);
}
.vh-cta__actions { display: flex; gap: 12px; flex: 0 0 auto; }

/* ---------- Discount signup (newsletter) ---------- */
.vh-signup {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 44px 48px;
    background: var(--vh-surface);
    border: 1px solid var(--vh-line-2);
    border-radius: 14px;
    overflow: hidden;
}
.vh-signup::before {                 /* accent edge for prominence */
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--vh-accent);
}
.vh-signup .vh-eyebrow { margin-bottom: 14px; color: var(--vh-accent); }
.vh-signup__text h2 { margin-bottom: 14px; }
.vh-signup__text p {
    margin: 0;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--vh-muted);
}

.vh-signup__row { display: flex; gap: 10px; }
.vh-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 13px 16px;
    background: var(--vh-bg);
    border: 1px solid var(--vh-line-2);
    border-radius: 8px;
    color: var(--vh-ink);
    font-family: inherit;
    font-size: 14px;
    transition: border-color .15s ease;
}
.vh-input::placeholder { color: var(--vh-dim); }
.vh-input:focus { outline: none; border-color: var(--vh-accent); }
.vh-input:disabled { opacity: .6; }
.vh-signup__form .vh-btn { flex: 0 0 auto; white-space: nowrap; }
.vh-signup__msg { margin: 12px 0 0; font-size: 13px; line-height: 1.4; }
.vh-signup__msg.is-error { color: var(--vh-accent); }
.vh-signup__msg.is-success { color: var(--vh-ink); }

/* Visually-hidden but screen-reader accessible. */
.vh-visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* Honeypot: positioned far off-screen so people (and most assistive tech, via
   aria-hidden/tabindex=-1 on the field) never reach it, but naive bots that
   fill every input still take the bait. Not display:none - some bots skip
   hidden fields. */
.vh-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- FAQ ---------- */
.vh-faq { display: flex; flex-direction: column; }
.vh-faq__item { border-top: 1px solid var(--vh-line); }
.vh-faq__item:last-child { border-bottom: 1px solid var(--vh-line); }
.vh-faq__row {
    display: grid;
    grid-template-columns: minmax(0, 421px) minmax(0, 783px) 11px;
    align-items: start;
    gap: 32px;
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: 0;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    color: inherit;
}
.vh-faq__q { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.vh-faq__a {
    font-size: 14px;
    line-height: 1.6;
    color: var(--vh-muted);
}
.vh-faq__item:not(.is-open) .vh-faq__a { display: none; }
.vh-faq__icon { position: relative; width: 11px; height: 20px; transition: transform .2s ease; }
.vh-faq__icon::before,
.vh-faq__icon::after {
    content: ""; position: absolute; top: 9px; left: 0;
    width: 11px; height: 1.5px; background: var(--vh-muted);
}
.vh-faq__icon::after { transform: rotate(90deg); }      /* together they form a "+" */
.vh-faq__item.is-open .vh-faq__icon { transform: rotate(45deg); }  /* "+" becomes "×" */

/* ---------- Footer ---------- */
/* Sits the footer on a distinct surface band with a top hairline so it reads
   as separate from the page content above. */
.vh-footer {
    margin-top: 64px;
    padding: 48px 0 36px;
    background: var(--vh-surface);
    border-top: 1px solid var(--vh-line);
}
.vh-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 56px;
}
.vh-footer__brand { max-width: 340px; }
.vh-footer__brand p {
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--vh-muted);
}
.vh-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.vh-footer__col h4 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--vh-ink);
}
.vh-footer__col ul { list-style: none; margin: 0; padding: 0; }
.vh-footer__col li { margin-bottom: 4px; }
.vh-footer__col a { font-size: 13px; color: var(--vh-muted); }
.vh-footer__col a:hover { color: var(--vh-ink); }

.vh-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--vh-line);
    font-family: var(--vh-mono);
    font-size: 11px;
    color: var(--vh-dim);
}
.vh-footer__legal { display: flex; gap: 18px; }
.vh-footer__legal a { color: var(--vh-dim); }
.vh-footer__legal a:hover { color: var(--vh-muted); }

/* ---------- Secondary page head + placeholder ---------- */
.vh-pagehead { padding: 72px 0 8px; }
.vh-pagehead .vh-eyebrow { margin-bottom: 22px; }
.vh-h1--page { font-size: clamp(40px, 6.5vw, 64px); }
.vh-placeholder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background: var(--vh-surface);
    color: var(--vh-muted);
    font-size: 15px;
}
.vh-placeholder--bare { background: transparent; padding: 32px 0 0; flex-direction: row; }

/* ---------- Empty state ---------- */
.vh-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 72px 32px;
    background: var(--vh-surface);
    border: 1px solid var(--vh-line);
    border-radius: 14px;
}
.vh-empty__icon {
    position: relative;
    width: 44px; height: 44px;
    margin-bottom: 4px;
    border: 1px solid var(--vh-line-2);
    border-radius: 999px;
}
.vh-empty__icon::after {                 /* a small accent dash, "nothing here yet" */
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 16px; height: 2px;
    transform: translate(-50%, -50%);
    background: var(--vh-accent);
}
.vh-empty__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.vh-empty__text {
    margin: 0;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--vh-muted);
}
.vh-empty__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .vh-scroller { --vh-cols: 2; }
    .vh-features { grid-template-columns: repeat(2, 1fr); }
    .vh-footer__top { flex-direction: column; gap: 40px; }
}

@media (max-width: 767.98px) {
    .vh-sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .vh-sec-head__note { text-align: left; }
    /* On touch, show ~1 card with a peek of the next and let users swipe. */
    .vh-scroller { --vh-cols: 1.1; }
    .vh-scroller__arrow { display: none; }
    .vh-card { padding: 32px 20px; }
    .vh-card.is-popular { padding: 32px 20px; }
    .vh-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
    .vh-cta__actions { width: 100%; }
    .vh-cta__actions .vh-btn { flex: 1; }
    .vh-signup { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
    .vh-faq__row { grid-template-columns: 1fr 11px; gap: 16px 24px; }
    .vh-faq__q { grid-column: 1; }
    .vh-faq__icon { grid-column: 2; grid-row: 1; }
    .vh-faq__a { grid-column: 1 / -1; }
    .vh-footer__bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .vh-features { grid-template-columns: 1fr; }
    .vh-footer__cols { gap: 32px; }
    .vh-signup__row { flex-direction: column; align-items: stretch; }
    .vh-signup__form .vh-btn { width: 100%; }
}
