:root {
    --bg-top: #b7d1c7;
    --bg-mid: #8fada2;
    --bg-bottom: #4d7d87;
    --card: rgba(241, 246, 244, 0.84);
    --line: rgba(9, 28, 27, 0.12);
    --text: #0f1719;
    --muted: #314445;
    --accent: #f3387c;
    --logo-dark: #141414;
}

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

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Outfit", "Segoe UI", sans-serif;
    color: var(--text);
    background-color: #83a79f;
    background:
        radial-gradient(1200px 760px at 12% 8%, rgba(237, 245, 233, 0.9), rgba(237, 245, 233, 0) 62%),
        radial-gradient(940px 700px at 84% 90%, rgba(28, 93, 117, 0.58), rgba(28, 93, 117, 0) 66%),
        radial-gradient(1000px 740px at 86% 12%, rgba(175, 205, 189, 0.62), rgba(175, 205, 189, 0) 62%),
        linear-gradient(142deg, var(--bg-top) 0%, var(--bg-mid) 48%, var(--bg-bottom) 100%);
    background-size: 320% 320%, 280% 280%, 260% 260%, 140% 140%;
    animation: vcGradientDrift 8s linear infinite;
}

@keyframes vcGradientDrift {
    0% {
        background-position: 0% 0%, 100% 100%, 100% 0%, 0% 0%;
    }
    25% {
        background-position: 32% 12%, 74% 58%, 70% 32%, 15% 10%;
    }
    50% {
        background-position: 64% 30%, 52% 34%, 48% 52%, 30% 25%;
    }
    75% {
        background-position: 34% 58%, 72% 74%, 66% 28%, 18% 16%;
    }
    100% {
        background-position: 6% 28%, 92% 86%, 84% 8%, 0% 0%;
    }
}

.vc-page {
    min-height: 100vh;
    padding: clamp(0.75rem, 2vw, 1.8rem);
    display: grid;
    place-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.vc-page::before {
    content: "";
    position: fixed;
    inset: -20%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(40% 36% at 18% 28%, rgba(208, 233, 207, 0.42), rgba(208, 233, 207, 0) 74%),
        radial-gradient(44% 40% at 78% 70%, rgba(51, 112, 137, 0.38), rgba(51, 112, 137, 0) 76%),
        radial-gradient(34% 34% at 74% 20%, rgba(188, 210, 197, 0.45), rgba(188, 210, 197, 0) 72%);
    filter: blur(18px) saturate(108%);
    transform: translate3d(0, 0, 0) scale(1.05);
    animation: vcBlobShift 14s ease-in-out infinite alternate;
}

.vc-page::after {
    content: "";
    position: fixed;
    inset: -28%;
    z-index: -1;
    pointer-events: none;
    background:
        conic-gradient(
            from 0deg at 50% 50%,
            rgba(189, 228, 206, 0.28),
            rgba(62, 127, 153, 0.16),
            rgba(221, 241, 217, 0.3),
            rgba(44, 98, 122, 0.15),
            rgba(189, 228, 206, 0.28)
        );
    mix-blend-mode: soft-light;
    opacity: 0.6;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1.08);
    animation: vcColorPulse 10s ease-in-out infinite;
}

@keyframes vcBlobShift {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1.05);
    }

    50% {
        transform: translate3d(2%, 2%, 0) scale(1.08);
    }

    100% {
        transform: translate3d(-1%, 4%, 0) scale(1.04);
    }
}

@keyframes vcColorPulse {
    0% {
        transform: translate3d(-3%, -2%, 0) rotate(0deg) scale(1.06);
        opacity: 0.46;
    }

    50% {
        transform: translate3d(4%, 3%, 0) rotate(18deg) scale(1.16);
        opacity: 0.72;
    }

    100% {
        transform: translate3d(-2%, 6%, 0) rotate(34deg) scale(1.08);
        opacity: 0.5;
    }
}

.vc-card {
    width: min(1300px, 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--card);
    backdrop-filter: blur(4px);
    box-shadow: 0 30px 70px rgba(8, 24, 27, 0.24);
    padding: clamp(1rem, 3vw, 2rem);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.vc-header {
    margin-bottom: clamp(0.8rem, 2.1vw, 1.3rem);
}

.vc-brand-logo {
    display: block;
    width: clamp(220px, 40vw, 520px);
    height: auto;
    object-fit: contain;
}

.vc-header h1 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.35rem, 3vw, 2.4rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.vc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(320px, 40vw, 534px);
    gap: clamp(1rem, 2.8vw, 2rem);
    align-items: start;
}

.vc-left {
    min-width: 0;
}

.vc-main {
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: clamp(0.8rem, 2vw, 1.3rem);
    align-items: start;
    min-width: 0;
}

.vc-photo-wrap {
    margin: 0;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 22px 40px rgba(9, 25, 28, 0.26);
}

.vc-photo-img {
    display: block;
    width: 100%;
    height: auto;
}

.vc-skills h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1;
}

.vc-skills ul {
    margin: 0.7rem 0 0;
    padding: 0;
    list-style: none;
}

.vc-skills li {
    font-size: clamp(1.2rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.vc-skills p {
    margin: 1rem 0 0;
    font-size: clamp(1rem, 2vw, 1.9rem);
    color: #171b1d;
    line-height: 1.18;
    max-width: 26ch;
    overflow-wrap: anywhere;
}

.vc-contact {
    margin: clamp(1rem, 2vw, 1.6rem) 0 0;
    font-style: normal;
}

.vc-name {
    margin: 0 0 0.4rem;
    font-size: clamp(1.45rem, 2.2vw, 2.4rem);
    font-weight: 800;
}

.vc-link {
    display: block;
    width: 100%;
    max-width: 100%;
    text-decoration: none;
    font-size: clamp(1.32rem, 2vw, 2.05rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.14rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.vc-link--accent {
    color: var(--accent);
}

.vc-link:hover {
    text-decoration: underline;
}

.vc-cvr {
    margin: 0.25rem 0 0;
    font-size: clamp(1.32rem, 2vw, 2.05rem);
}

.vc-social {
    margin-top: clamp(0.8rem, 2vw, 1.2rem);
    display: flex;
    gap: 0.5rem;
}

.vc-social-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1e1e22;
    color: #fff;
    font-size: 2.05rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(17, 17, 20, 0.27);
}

.vc-social-btn:hover {
    transform: translateY(-1px);
}

.vc-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 534px;
    justify-self: end;
}

.vc-partners-img {
    display: block;
    width: 100%;
    max-width: 534px;
    height: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

@media (max-width: 1120px) {
    .vc-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {
    .vc-main {
        grid-template-columns: 1fr;
    }

    .vc-photo-wrap {
        max-width: 420px;
    }

    .vc-right {
        justify-content: flex-start;
    }

    .vc-partners-img {
        max-width: 430px;
    }
}

@media (max-width: 620px) {
    .vc-page {
        padding: 0.5rem;
    }

    .vc-card {
        border-radius: 18px;
        padding: 0.85rem;
    }

    .vc-header h1 {
        font-size: clamp(1.1rem, 6vw, 1.5rem);
    }

    .vc-partners-img {
        max-width: 100%;
    }

    .vc-social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.65rem;
    }
}
