/* Extrahované styly z Virt.As-1.html */
:root {
    --text: #eaf1f8;
    --muted: #cfd6de;
    --card-bg: linear-gradient(180deg, rgba(255, 250, 240, .90), rgba(245, 248, 255, .88));
    --card-text: #0e1726;
    --feature-border: rgba(0, 0, 0, .06);
    --border-alpha: rgba(255, 255, 255, .5);
    --accent-1-from: #d6f8e5;
    --accent-1-to: #eafbf4;
    --accent-2-from: #dbeafe;
    --accent-2-to: #eff6ff;
    --accent-3-from: #fde7f3;
    --accent-3-to: #fff0f7;
    --accent-4-from: #fff4d6;
    --accent-4-to: #fff8e7;
    --accent-5-from: #e7e8ff;
    --accent-5-to: #f3f4ff;
    --ring: #3b82f6;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #0b1220;
    color: var(--text);
}

#bg2d {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    filter: blur(34px) saturate(118%);
    transform: translateZ(0);
}

.container {
    max-width: 1100px;
    margin: 36px auto;
    padding: 24px;
    position: relative;
    z-index: 1;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6ee7b7, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #052;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    font-size: 1rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .01em;
}

p.lead {
    color: var(--muted);
    margin-top: 6px;
    font-size: 1rem;
}

main {
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-auto-rows: auto;
    gap: 26px;
    margin-top: 22px;
    align-items: stretch;
}

.card {
    background: var(--card-bg);
    color: var(--card-text);
    backdrop-filter: blur(8px);
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(2, 6, 23, .28);
    border: 1px solid var(--border-alpha);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    grid-auto-rows: 1fr;
    align-items: stretch;
}

.feature {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--feature-border);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease;
}

.feature:nth-child(6n+1) {
    background: linear-gradient(180deg, var(--accent-1-from), var(--accent-1-to));
}

.feature:nth-child(6n+2) {
    background: linear-gradient(180deg, var(--accent-2-from), var(--accent-2-to));
}

.feature:nth-child(6n+3) {
    background: linear-gradient(180deg, var(--accent-3-from), var(--accent-3-to));
}

.feature:nth-child(6n+4) {
    background: linear-gradient(180deg, var(--accent-4-from), var(--accent-4-to));
}

.feature:nth-child(6n+5) {
    background: linear-gradient(180deg, var(--accent-5-from), var(--accent-5-to));
}

.feature:nth-child(6n+6) {
    background: linear-gradient(180deg, var(--accent-2-from), var(--accent-2-to));
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .1);
}

.feature h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #0c1323;
    letter-spacing: .01em;
}

.feature p {
    margin: 0;
    color: #283548;
    font-size: .95rem;
}

.photo-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    background: #eef2f7;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1rem;
    text-align: center;
    padding: 18px;
}

.socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffffcc;
    color: #0e1726;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    flex: 0 0 48px;
}

.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
    background: #fff;
}

.icon-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.full-span {
    grid-column: 1 / -1;
}

h2 {
    font-size: 1.15rem;
    margin-bottom: .25rem;
    letter-spacing: .005em;
}

footer {
    margin-top: 20px;
    text-align: center;
    color: var(--muted);
    font-size: .95rem;
}

@media (max-width:980px) {
    main {
        grid-template-columns: 1fr;
    }
    .logo {
        width: 56px;
        height: 56px;
    }
    h1 {
        font-size: 1.35rem;
    }
    .full-span {
        grid-column: auto;
    }
}

@media (max-width:480px) {
    .features {
        grid-template-columns: 1fr;
    }
    .logo {
        width: 52px;
        height: 52px;
    }
    :root {
        font-size: 17px;
    }
}
