﻿.site-header {
    padding: 22px 0 8px 0;
}

.topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.brand__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 10px 30px rgba(255, 122, 24, 0.25);
}

.brand__name {
    font-weight: 800;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav__link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav__link:hover {
    background: rgba(0, 0, 0, 0.20);
    border-color: rgba(255, 255, 255, 0.10);
    color: rgba(255, 176, 0, 0.95);
}

.topbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-toggle {
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.lang-toggle:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero {
    margin-top: 16px;
    border-radius: var(--r);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow);
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.hero__kicker {
    margin: 0 0 10px 0;
    color: var(--muted);
}

.hero__title {
    margin: 0 0 10px 0;
    font-size: 44px;
    line-height: 1.05;
}

.hero__subtitle {
    margin: 0 0 16px 0;
    color: var(--muted);
    max-width: 72ch;
}

.hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    text-decoration: none;
    color: var(--text);
    background: rgba(0, 0, 0, 0.18);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn--primary {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.95), rgba(255, 176, 0, 0.85));
    border-color: rgba(255, 122, 24, 0.35);
    color: rgba(10, 10, 10, 0.92);
    font-weight: 800;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
}

.quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.quick-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.86);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.26);
    padding-bottom: 2px;
    transition: color 160ms ease, border-color 160ms ease;
}

.quick-link:hover {
    color: rgba(255, 176, 0, 0.95);
    border-color: rgba(255, 176, 0, 0.55);
}

.profile-card {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.22);
    padding: 16px;
    position: relative;
}

.profile-card__avatar {
    width: 100%;
    height: 160px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(260px 140px at 30% 30%, rgba(255, 122, 24, 0.22), transparent 60%),
    radial-gradient(260px 160px at 70% 60%, rgba(255, 176, 0, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.04);
}

.profile-card__name {
    margin: 12px 0 4px 0;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.profile-card__role {
    margin: 0 0 10px 0;
    color: var(--muted);
}

.profile-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin: 14px 0 14px 0;
    flex-wrap: wrap;
}

.tabs__btn {
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.tabs__btn:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.18);
}

.tabs__btn.is-active {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.40), rgba(255, 176, 0, 0.26));
    border-color: rgba(255, 122, 24, 0.30);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.card {
    display: block;
    text-decoration: none;
    color: var(--text);
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    padding: 16px;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 176, 0, 0.28);
    background: linear-gradient(180deg, rgba(255, 176, 0, 0.10), rgba(255, 255, 255, 0.04));
}

.card__title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 900;
}

.card__sub {
    margin: 0 0 12px 0;
    color: var(--muted);
}

.card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    height: 26px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.metrics {
    margin: 12px 0 0 0;
    padding: 0 0 0 16px;
    color: rgba(255, 255, 255, 0.74);
}

.metrics__item {
    margin: 6px 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
}

.panel {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    padding: 18px;
}

.panel__title {
    margin: 0 0 10px 0;
    font-weight: 900;
}

.panel__text {
    margin: 0 0 14px 0;
    color: var(--muted);
}

.media-placeholder {
    height: 220px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(240px 160px at 20% 30%, rgba(255, 122, 24, 0.18), transparent 65%),
    rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    text-align: center;
}

.media-placeholder__text {
    margin: 0;
    color: var(--muted);
}

.about {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 14px;
}

.about__panel {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    padding: 18px;
}

.about__text {
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.84);
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 14px;
}

.contact-card {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 176, 0, 0.10), rgba(0, 0, 0, 0.22));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    padding: 18px;
    text-decoration: none;
    color: var(--text);
    transition: transform 160ms ease, border-color 160ms ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 176, 0, 0.30);
}

.contact-card__title {
    display: block;
    font-weight: 900;
}

.contact-card__sub {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.contact-note {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    padding: 18px;
}

.contact-note__text {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    padding: 26px 0 40px 0;
}

.site-footer__text {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 980px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 36px;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 18px;
    }

    .hero__title {
        font-size: 32px;
    }
}
