:root {
    --vcmc-primary: #5865f2;
    --vcmc-primary-dark: #4752c4;
    --vcmc-primary-soft: #eef0ff;
    --vcmc-ink: #17191f;
    --vcmc-muted: #667085;
    --vcmc-border: #e4e7ec;
    --vcmc-surface: #ffffff;
    --vcmc-background: #f7f8fb;
}

body {
    font-family: Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    text-rendering: optimizeLegibility;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--vcmc-ink);
    color: white;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 0.2s;
}

.skip-link:focus {
    transform: translateY(0);
}

.vcmc-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 64px;
    border-bottom: 1px solid rgba(228, 231, 236, 0.88);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.vcmc-nav-inner {
    width: min(1160px, calc(100% - 36px));
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.vcmc-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vcmc-ink);
    font-size: 0.96rem;
    font-weight: 850;
    letter-spacing: -0.2px;
    text-decoration: none;
    white-space: nowrap;
}

.vcmc-brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    box-shadow: 0 5px 14px rgba(88, 101, 242, 0.22);
}

.vcmc-brand span {
    color: var(--vcmc-primary);
}

.vcmc-nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.vcmc-nav-links a {
    color: var(--vcmc-muted);
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 0.18s;
}

.vcmc-nav-links a:hover,
.vcmc-nav-links a[aria-current="page"] {
    color: var(--vcmc-primary);
}

.vcmc-nav-links .vcmc-nav-cta {
    padding: 9px 15px;
    border-radius: 10px;
    background: var(--vcmc-primary);
    color: white;
    box-shadow: 0 7px 18px rgba(88, 101, 242, 0.22);
}

.vcmc-nav-links .vcmc-nav-cta:hover {
    background: var(--vcmc-primary-dark);
    color: white;
}

.vcmc-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 780;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.vcmc-button:hover {
    transform: translateY(-2px);
}

.vcmc-button-primary {
    background: var(--vcmc-primary);
    color: white;
    box-shadow: 0 10px 24px rgba(88, 101, 242, 0.24);
}

.vcmc-button-primary:hover {
    background: var(--vcmc-primary-dark);
    color: white;
}

.vcmc-button-secondary {
    border-color: var(--vcmc-border);
    background: white;
    color: var(--vcmc-ink);
    box-shadow: 0 5px 16px rgba(16, 24, 40, 0.06);
}

.vcmc-footer {
    margin-top: auto;
    padding: 44px 20px 32px;
    background: #17191f;
    color: white;
}

.vcmc-footer-inner {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.vcmc-footer-main {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.vcmc-footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-right: auto;
    font-weight: 800;
}

.vcmc-footer-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.vcmc-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.vcmc-footer-links a {
    color: #c9cdfd;
    font-size: 0.84rem;
    font-weight: 650;
    text-decoration: none;
}

.vcmc-footer-legal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    color: rgba(255,255,255,0.52);
    font-size: 0.76rem;
}

@media (max-width: 720px) {
    .vcmc-nav-inner {
        width: min(100% - 24px, 1160px);
        gap: 12px;
    }

    .vcmc-nav-links {
        gap: 12px;
    }

    .vcmc-nav-links a:not(.vcmc-nav-cta):nth-child(n+3) {
        display: none;
    }

    .vcmc-nav-links .vcmc-nav-cta {
        padding: 8px 11px;
    }

    .vcmc-footer-main,
    .vcmc-footer-legal {
        align-items: flex-start;
        flex-direction: column;
    }

    .vcmc-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 460px) {
    .vcmc-brand span {
        display: none;
    }

    .vcmc-nav-links a:not(.vcmc-nav-cta) {
        display: none;
    }
}
