/* VacciHealth landing — refined look & feel */

:root {
    --vh-teal: #0d9488;
    --vh-teal-light: #14b8a6;
    --vh-teal-dark: #0f766e;
    --vh-teal-soft: #ecfdf5;
    --vh-teal-glow: rgb(13 148 136 / 0.35);
    --vh-amber: #f59e0b;
    --vh-amber-dark: #d97706;
    --vh-amber-soft: #fffbeb;
    --vh-navy: #0c1222;
    --vh-navy-soft: #1e293b;
    --vh-slate: #475569;
    --vh-muted: #64748b;
    --vh-border: #e2e8f0;
    --vh-border-soft: #f1f5f9;
    --vh-bg: #f4f7fb;
    --vh-white: #ffffff;
    --vh-radius: 1rem;
    --vh-radius-sm: 0.625rem;
    --vh-shadow-sm: 0 1px 2px rgb(12 18 34 / 0.04);
    --vh-shadow: 0 4px 6px -1px rgb(12 18 34 / 0.05), 0 12px 32px -8px rgb(12 18 34 / 0.1);
    --vh-shadow-lg: 0 20px 48px -12px rgb(12 18 34 / 0.18);
    --vh-max: 76rem;
    --vh-font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --vh-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--vh-font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--vh-navy);
    background: var(--vh-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--vh-teal-dark);
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--vh-teal-light);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
    .vh-animate {
        animation: vh-fade-up 0.7s var(--vh-ease) both;
    }

    .vh-animate--1 { animation-delay: 0.05s; }
    .vh-animate--2 { animation-delay: 0.12s; }
    .vh-animate--3 { animation-delay: 0.2s; }
    .vh-animate--4 { animation-delay: 0.28s; }

    @keyframes vh-fade-up {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .vh-feature:hover,
    .vh-stat:hover {
        transform: translateY(-3px);
    }

    .vh-btn--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px var(--vh-teal-glow);
    }
}

@keyframes vh-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.vh-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 0.75rem 1rem;
    background: var(--vh-navy);
    color: var(--vh-white);
    z-index: 100;
    border-radius: var(--vh-radius-sm);
}

.vh-skip:focus {
    left: 1rem;
    top: 1rem;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.vh-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgb(255 255 255 / 0.78);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgb(226 232 240 / 0.8);
}

.vh-header__inner {
    max-width: var(--vh-max);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vh-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1875rem;
    letter-spacing: -0.02em;
    color: var(--vh-navy);
    text-decoration: none;
}

.vh-brand:hover {
    text-decoration: none;
}

.vh-brand__mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(145deg, var(--vh-teal-light), var(--vh-teal-dark));
    box-shadow: 0 4px 14px var(--vh-teal-glow);
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
}

.vh-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vh-nav__links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vh-nav__links li {
    margin: 0;
    padding: 0;
}

.vh-nav__links a {
    color: var(--vh-slate);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.vh-nav__links a:hover {
    color: var(--vh-navy);
    background: var(--vh-border-soft);
    text-decoration: none;
}

.vh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6875rem 1.375rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.25;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.vh-btn:hover {
    text-decoration: none;
}

.vh-btn--primary {
    background: linear-gradient(135deg, var(--vh-teal-light), var(--vh-teal-dark));
    color: white;
    box-shadow: 0 4px 16px var(--vh-teal-glow);
}

.vh-btn--primary:hover {
    color: white;
}

.vh-btn--ghost {
    background: var(--vh-white);
    color: var(--vh-slate);
    border-color: var(--vh-border);
    box-shadow: var(--vh-shadow-sm);
}

.vh-btn--ghost:hover {
    background: var(--vh-white);
    color: var(--vh-navy);
    border-color: #cbd5e1;
}

.vh-btn--lg {
    padding: 0.8125rem 1.625rem;
    font-size: 1rem;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.vh-hero {
    position: relative;
    padding: 4rem 1.5rem 5rem;
    overflow: hidden;
}

.vh-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 15% -5%, rgb(20 184 166 / 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 95% 10%, rgb(245 158 11 / 0.1), transparent 50%),
        linear-gradient(180deg, #ffffff 0%, var(--vh-bg) 100%);
}

.vh-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(15 23 42 / 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgb(15 23 42 / 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
}

.vh-hero__inner {
    position: relative;
    max-width: var(--vh-max);
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.vh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem 0.375rem 0.625rem;
    border-radius: 999px;
    background: var(--vh-white);
    border: 1px solid rgb(13 148 136 / 0.2);
    color: var(--vh-teal-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
    box-shadow: var(--vh-shadow-sm);
}

.vh-eyebrow__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--vh-teal);
    box-shadow: 0 0 0 3px rgb(13 148 136 / 0.2);
}

.vh-hero h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: var(--vh-navy);
}

.vh-hero h1 .vh-gradient {
    background: linear-gradient(120deg, var(--vh-teal-dark) 0%, var(--vh-teal-light) 45%, var(--vh-amber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vh-hero__lead {
    margin: 0 0 1.75rem;
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--vh-slate);
    max-width: 34rem;
}

.vh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.vh-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vh-stat {
    padding: 1.125rem 1.25rem;
    background: rgb(255 255 255 / 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgb(255 255 255 / 0.9);
    border-radius: var(--vh-radius);
    box-shadow: var(--vh-shadow);
    transition: transform 0.25s var(--vh-ease), box-shadow 0.25s var(--vh-ease);
}

.vh-stat:hover {
    box-shadow: var(--vh-shadow-lg);
}

.vh-stat__icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--vh-teal-soft), white);
    color: var(--vh-teal-dark);
    border: 1px solid rgb(13 148 136 / 0.12);
}

.vh-stat strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vh-navy);
    margin-bottom: 0.2rem;
}

.vh-stat span {
    font-size: 0.8125rem;
    color: var(--vh-muted);
    line-height: 1.45;
}

.vh-hero__visual {
    position: relative;
}

.vh-hero__glow {
    position: absolute;
    width: 85%;
    height: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--vh-teal-glow), transparent 70%);
    filter: blur(40px);
    opacity: 0.5;
    pointer-events: none;
}

.vh-card-preview {
    position: relative;
    background: var(--vh-white);
    border: 1px solid rgb(255 255 255 / 0.8);
    border-radius: 1.25rem;
    box-shadow: var(--vh-shadow-lg);
    overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
    .vh-card-preview {
        animation: vh-float 6s ease-in-out infinite;
    }
}

.vh-card-preview__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(180deg, #1a2332, var(--vh-navy));
    color: rgb(255 255 255 / 0.75);
    font-size: 0.8125rem;
    font-weight: 500;
}

.vh-card-preview__dot {
    width: 0.5625rem;
    height: 0.5625rem;
    border-radius: 999px;
}

.vh-card-preview__dot--r { background: #f87171; }
.vh-card-preview__dot--y { background: #fbbf24; }
.vh-card-preview__dot--g { background: #34d399; }

.vh-card-preview__body {
    padding: 1.375rem;
    background: linear-gradient(180deg, #fafbfc, var(--vh-white));
}

.vh-badge-float {
    position: absolute;
    top: -0.75rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--vh-white);
    border: 1px solid var(--vh-border);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vh-teal-dark);
    box-shadow: var(--vh-shadow);
    z-index: 2;
}

.vh-badge-float svg {
    color: var(--vh-teal);
}

.vh-workflow-mini {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.vh-workflow-step {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: var(--vh-radius-sm);
    border: 1px solid var(--vh-border);
    background: var(--vh-white);
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vh-workflow-step--active {
    border-color: rgb(13 148 136 / 0.4);
    background: linear-gradient(135deg, var(--vh-teal-soft), white);
    box-shadow: 0 0 0 3px rgb(13 148 136 / 0.08);
}

.vh-workflow-step--done {
    opacity: 0.72;
}

.vh-workflow-step__num {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--vh-bg);
    border: 1px solid var(--vh-border);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--vh-muted);
}

.vh-workflow-step--active .vh-workflow-step__num {
    background: linear-gradient(135deg, var(--vh-teal-light), var(--vh-teal-dark));
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 8px var(--vh-teal-glow);
}

.vh-workflow-step--done .vh-workflow-step__num {
    background: var(--vh-teal-soft);
    border-color: rgb(13 148 136 / 0.2);
    color: var(--vh-teal-dark);
}

.vh-workflow-step__label {
    font-weight: 600;
    color: var(--vh-navy);
}

.vh-workflow-step__detail {
    font-size: 0.75rem;
    color: var(--vh-muted);
    margin-top: 0.1rem;
}

/* ── Sections ───────────────────────────────────────────────────────────── */

.vh-section {
    padding: 5rem 1.5rem;
    position: relative;
}

.vh-section--white {
    background: var(--vh-white);
}

.vh-section--alt {
    background: var(--vh-bg);
}

.vh-section__inner {
    max-width: var(--vh-max);
    margin: 0 auto;
}

.vh-section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vh-teal-dark);
    margin-bottom: 0.75rem;
}

.vh-section__header {
    max-width: 42rem;
    margin-bottom: 3rem;
}

.vh-section__header h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
    letter-spacing: -0.03em;
    font-weight: 700;
    line-height: 1.15;
    color: var(--vh-navy);
}

.vh-section__header p {
    margin: 0;
    color: var(--vh-slate);
    font-size: 1.125rem;
    line-height: 1.65;
}

.vh-grid {
    display: grid;
    gap: 1.25rem;
}

.vh-grid--3 {
    grid-template-columns: 1fr;
}

.vh-feature {
    position: relative;
    padding: 1.625rem;
    background: var(--vh-white);
    border: 1px solid var(--vh-border);
    border-radius: var(--vh-radius);
    box-shadow: var(--vh-shadow-sm);
    transition: transform 0.25s var(--vh-ease), box-shadow 0.25s var(--vh-ease), border-color 0.25s;
    overflow: hidden;
}

.vh-section--alt .vh-feature {
    background: var(--vh-white);
}

.vh-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vh-teal), var(--vh-amber));
    opacity: 0;
    transition: opacity 0.25s;
}

.vh-feature:hover {
    border-color: rgb(13 148 136 / 0.25);
    box-shadow: var(--vh-shadow);
}

.vh-feature:hover::before {
    opacity: 1;
}

.vh-feature__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.125rem;
    background: linear-gradient(145deg, var(--vh-teal-soft), #f0fdfa);
    color: var(--vh-teal-dark);
    border: 1px solid rgb(13 148 136 / 0.1);
}

.vh-feature h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--vh-navy);
}

.vh-feature p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--vh-muted);
    line-height: 1.6;
}

/* ── Timeline ───────────────────────────────────────────────────────────── */

.vh-timeline-wrap {
    background: var(--vh-white);
    border: 1px solid var(--vh-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--vh-shadow);
}

.vh-timeline {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vh-timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.375rem 0;
    border-bottom: 1px solid var(--vh-border-soft);
    position: relative;
}

.vh-timeline__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vh-timeline__item:first-child {
    padding-top: 0;
}

.vh-timeline__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.vh-timeline__num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vh-teal-light), var(--vh-teal-dark));
    color: white;
    display: grid;
    place-items: center;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 2px 10px var(--vh-teal-glow);
    flex-shrink: 0;
    z-index: 1;
}

.vh-timeline__line {
    flex: 1;
    width: 2px;
    min-height: 1.5rem;
    background: linear-gradient(180deg, var(--vh-teal-light), var(--vh-border));
    margin-top: 0.375rem;
}

.vh-timeline__item:last-child .vh-timeline__line {
    display: none;
}

.vh-timeline__content h3 {
    margin: 0 0 0.35rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--vh-navy);
}

.vh-timeline__content p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--vh-muted);
    line-height: 1.6;
}

/* ── Trust ────────────────────────────────────────────────────────────────── */

.vh-trust {
    display: grid;
    gap: 1.5rem;
}

.vh-trust-card {
    padding: 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(145deg, var(--vh-navy) 0%, #162032 100%);
    color: rgb(255 255 255 / 0.88);
    box-shadow: var(--vh-shadow-lg);
    position: relative;
    overflow: hidden;
}

.vh-trust-card::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgb(20 184 166 / 0.15), transparent 70%);
    pointer-events: none;
}

.vh-trust-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgb(255 255 255 / 0.08);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--vh-teal-light);
}

.vh-trust-card h3 {
    margin: 0 0 0.625rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
}

.vh-trust-card p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgb(255 255 255 / 0.65);
    line-height: 1.65;
    position: relative;
}

.vh-trust-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
    display: grid;
    gap: 0.875rem;
    background: var(--vh-white);
    border: 1px solid var(--vh-border);
    border-radius: 1.25rem;
    box-shadow: var(--vh-shadow-sm);
}

.vh-trust-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9375rem;
    color: var(--vh-slate);
    line-height: 1.5;
    padding: 0.625rem 0.75rem;
    border-radius: var(--vh-radius-sm);
    transition: background 0.2s;
}

.vh-trust-list li:hover {
    background: var(--vh-bg);
}

.vh-trust-list__check {
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 999px;
    background: var(--vh-teal-soft);
    color: var(--vh-teal-dark);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ── CTA ────────────────────────────────────────────────────────────────── */

.vh-cta {
    padding: 4.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 40%, #14b8a6 100%);
    color: white;
    text-align: center;
}

.vh-cta__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.vh-cta__inner {
    position: relative;
    max-width: 38rem;
    margin: 0 auto;
}

.vh-cta h2 {
    margin: 0 0 0.875rem;
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.vh-cta p {
    margin: 0 0 1.75rem;
    font-size: 1.0625rem;
    opacity: 0.92;
    line-height: 1.65;
}

.vh-cta .vh-btn--ghost {
    background: white;
    color: var(--vh-teal-dark);
    border-color: white;
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
}

.vh-cta .vh-btn--ghost:hover {
    background: var(--vh-teal-soft);
    transform: translateY(-1px);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.vh-footer {
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--vh-border);
    background: var(--vh-white);
}

.vh-footer__inner {
    max-width: var(--vh-max);
    margin: 0 auto;
}

.vh-footer__top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--vh-border-soft);
    margin-bottom: 1.5rem;
}

.vh-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--vh-navy);
}

.vh-footer__tagline {
    margin: 0.375rem 0 0;
    font-size: 0.875rem;
    color: var(--vh-muted);
}

.vh-footer__note {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--vh-muted);
    max-width: 52rem;
    margin: 0;
}

.vh-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.8125rem;
    color: var(--vh-muted);
}

.vh-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: var(--vh-bg);
    border: 1px solid var(--vh-border);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vh-slate);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (min-width: 640px) {
    .vh-hero__stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .vh-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vh-trust {
        grid-template-columns: 1.1fr 1fr;
        align-items: stretch;
    }
}

@media (min-width: 960px) {
    .vh-nav__links {
        display: flex;
    }

    .vh-hero {
        padding: 5rem 1.5rem 6rem;
    }

    .vh-hero__inner {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 4rem;
    }

    .vh-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .vh-footer__top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vh-card-preview {
        animation: none;
    }
}
