/* Xeno Now - базовые стили: токены, фон, шапка, футер (монохром) */
:root {
    --font-main: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --bg: #000000;
    --card: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.10);
    --divider: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --text-2: #d4d4d4;
    --muted: #a3a3a3;
    --faint: #737373;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    font-family: var(--font-main);
    color: var(--text-2);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1, h2, h3 { color: var(--text); line-height: 1.15; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(255,255,255,0.85); color: #000; }

/* Фон: чистый чёрный */
.bg-glow { display: none; }
.bg-grid { display: none; }

/* Плавающая шапка-пилюля */
.navbar {
    position: fixed;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: min(1080px, calc(100% - 28px));
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: 8px; flex-shrink: 0; }
.nav-logo .logo-mark {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: var(--text);
    position: relative;
}
.nav-logo .logo-mark::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.nav-logo:hover .logo-mark::before { opacity: 1; }
.brand-x { width: 17px; height: 17px; fill: #fff; }
.nav-logo .logo-name {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #d4d4d8, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    list-style: none;
    gap: 2px;
}
.nav-links a {
    display: block;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 0.92rem;
    color: var(--text-2);
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}
.nav-links a:hover { background: #262626; color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.nav-cta i { font-size: 1rem; }
.nav-cta:hover { background: rgba(255,255,255,0.10); }
.mobile-menu { display: none; }
.menu-btn {
    display: none;
    width: 40px; height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 0.95rem;
    cursor: pointer;
}
@media (max-width: 900px) {
    .nav-links, .nav-cta span { display: none; }
    .menu-btn { display: grid; place-items: center; margin-left: auto; }
    .navbar { padding: 6px 8px 6px 14px; }
    .mobile-menu {
        position: absolute;
        top: calc(100% + 10px); left: 0; right: 0;
        display: none;
        flex-direction: column;
        padding: 10px;
        border-radius: 22px;
        border: 1px solid var(--border);
        background: rgba(0,0,0,0.92);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
        padding: 12px 16px;
        border-radius: 12px;
        color: var(--text-2);
    }
    .mobile-menu a:hover { background: #1c1c1c; color: var(--text); }
}

/* Контент по центру */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
main { position: relative; z-index: 1; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Инлайн-SVG (штриховые иконки) */
.cr-svg {
    width: 13px; height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ===== ФУТЕР ===== */
.site-footer {
    position: relative;
    margin-top: 110px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.5);
}
.site-footer::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% -30%, rgba(255,255,255,0.09), transparent);
    pointer-events: none;
}
.footer-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
    padding: 40px 24px 30px;
    max-width: 1180px;
    margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 18px; justify-content: flex-start; }
.footer-brand .logo-mark {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}
.footer-brand .logo-mark:hover { transform: scale(1.08); }
.footer-sep { width: 1px; height: 32px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent); }
.footer-tagline { font-size: 1.05rem; font-weight: 500; color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.footer-links a { position: relative; color: var(--text-2); transition: color 0.25s ease; padding-bottom: 3px; }
.footer-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.footer-links a:hover { color: var(--text); }
.footer-links a:hover::after { transform: scaleX(1); }
.footer-social { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.footer-social a {
    position: relative;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    color: var(--muted);
    font-size: 1.15rem;
    transition: color 0.25s ease, transform 0.25s ease;
}
.footer-social a::before {
    content: '';
    position: absolute; inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
    filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.footer-social a:hover { color: var(--text); transform: scale(1.08); }
.footer-social a:hover::before { opacity: 1; }
.footer-copy {
    position: relative;
    text-align: center;
    color: var(--faint);
    font-size: 0.85rem;
    padding: 0 24px 26px;
    max-width: 1180px;
    margin: 0 auto;
}
@media (max-width: 820px) {
    .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-social { justify-content: center; }
}

/* Страховка: круглое лого с обрезкой (дублирует pages.css) */
.logo-mark { overflow: hidden; }
.logo-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
}
/* ===== Анимация появления .anim-up ===== */
@keyframes animUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
.anim-up { animation: animUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.anim-d1 { animation-delay: 0.05s; }
.anim-d2 { animation-delay: 0.18s; }
.anim-d3 { animation-delay: 0.30s; }

/* GLOBAL SHRINK */
body .hero-title { font-size: clamp(1.55rem, 3.3vw, 2.35rem); }
body .hero-sub { font-size: clamp(0.76rem, 0.92vw, 0.88rem); }
body .page-hero h1 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); }
body .page-hero p { font-size: 0.88rem; }
body .container { max-width: 1000px; }
body section { padding: 14px 0 6px; }
body .page-hero { padding: 96px 0 20px; }
.dw-member { animation: dwIn 0.5s ease both; }
@keyframes dwIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

body .nav-links a { padding: 7px 13px; font-size: 0.86rem; }
body .nav-cta { padding: 8px 15px; font-size: 0.84rem; }
body .bento h2 { font-size: clamp(0.9rem, 1.4vw, 1.08rem); }
body .bdesc { font-size: clamp(0.72rem, 0.86vw, 0.8rem); }

/* TEXT & MEMBERS */
html { font-size: 15px; }
body .dw-list { gap: 6px; }
body .dw-member { gap: 10px; padding: 6px 9px; border-radius: 9px; }
body .dw-ava { width: 32px; height: 32px; font-size: 0.66rem; }
body .dw-nm { font-size: 0.78rem; }
body .dw-st { font-size: 0.65rem; }
.dw-member { animation: dwIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
.dw-member:nth-child(1) { animation-delay: 0,05s; }
.dw-member:nth-child(2) { animation-delay: 0,09s; }
.dw-member:nth-child(3) { animation-delay: 0,14s; }
.dw-member:nth-child(4) { animation-delay: 0,18s; }
.dw-member:nth-child(5) { animation-delay: 0,23s; }
.dw-member:nth-child(6) { animation-delay: 0,27s; }
.dw-member:nth-child(7) { animation-delay: 0,32s; }
.dw-member:nth-child(8) { animation-delay: 0,36s; }
.dw-member:nth-child(9) { animation-delay: 0,41s; }
.dw-member:nth-child(10) { animation-delay: 0,45s; }

/* NAV SCROLL BORDER */
body .navbar {
    background: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0);
    box-shadow: none;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, -webkit-backdrop-filter 0.5s ease, backdrop-filter 0.5s ease;
}
body .navbar.scrolled {
    background: rgba(0, 0, 0, 0.65);
    border-color: var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
/* Xeno Now - базовые стили: токены, фон, шапка, футер (монохром) */
:root {
    --font-main: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --bg: #000000;
    --card: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.10);
    --divider: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --text-2: #d4d4d4;
    --muted: #a3a3a3;
    --faint: #737373;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    font-family: var(--font-main);
    color: var(--text-2);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1, h2, h3 { color: var(--text); line-height: 1.15; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(255,255,255,0.85); color: #000; }

/* Фон: чистый чёрный */
.bg-glow { display: none; }
.bg-grid { display: none; }

/* Плавающая шапка-пилюля */
.navbar {
    position: fixed;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: min(1080px, calc(100% - 28px));
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: 8px; flex-shrink: 0; }
.nav-logo .logo-mark {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: var(--text);
    position: relative;
}
.nav-logo .logo-mark::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.nav-logo:hover .logo-mark::before { opacity: 1; }
.brand-x { width: 17px; height: 17px; fill: #fff; }
.nav-logo .logo-name {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #d4d4d8, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    list-style: none;
    gap: 2px;
}
.nav-links a {
    display: block;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 0.92rem;
    color: var(--text-2);
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}
.nav-links a:hover { background: #262626; color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.nav-cta i { font-size: 1rem; }
.nav-cta:hover { background: rgba(255,255,255,0.10); }
.mobile-menu { display: none; }
.menu-btn {
    display: none;
    width: 40px; height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 0.95rem;
    cursor: pointer;
}
@media (max-width: 900px) {
    .nav-links, .nav-cta span { display: none; }
    .menu-btn { display: grid; place-items: center; margin-left: auto; }
    .navbar { padding: 6px 8px 6px 14px; }
    .mobile-menu {
        position: absolute;
        top: calc(100% + 10px); left: 0; right: 0;
        display: none;
        flex-direction: column;
        padding: 10px;
        border-radius: 22px;
        border: 1px solid var(--border);
        background: rgba(0,0,0,0.92);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
        padding: 12px 16px;
        border-radius: 12px;
        color: var(--text-2);
    }
    .mobile-menu a:hover { background: #1c1c1c; color: var(--text); }
}

/* Контент по центру */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
main { position: relative; z-index: 1; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Инлайн-SVG (штриховые иконки) */
.cr-svg {
    width: 13px; height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ===== ФУТЕР ===== */
.site-footer {
    position: relative;
    margin-top: 110px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.5);
}
.site-footer::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% -30%, rgba(255,255,255,0.09), transparent);
    pointer-events: none;
}
.footer-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
    padding: 40px 24px 30px;
    max-width: 1180px;
    margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 18px; justify-content: flex-start; }
.footer-brand .logo-mark {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}
.footer-brand .logo-mark:hover { transform: scale(1.08); }
.footer-sep { width: 1px; height: 32px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent); }
.footer-tagline { font-size: 1.05rem; font-weight: 500; color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.footer-links a { position: relative; color: var(--text-2); transition: color 0.25s ease; padding-bottom: 3px; }
.footer-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.footer-links a:hover { color: var(--text); }
.footer-links a:hover::after { transform: scaleX(1); }
.footer-social { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.footer-social a {
    position: relative;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    color: var(--muted);
    font-size: 1.15rem;
    transition: color 0.25s ease, transform 0.25s ease;
}
.footer-social a::before {
    content: '';
    position: absolute; inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
    filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.footer-social a:hover { color: var(--text); transform: scale(1.08); }
.footer-social a:hover::before { opacity: 1; }
.footer-copy {
    position: relative;
    text-align: center;
    color: var(--faint);
    font-size: 0.85rem;
    padding: 0 24px 26px;
    max-width: 1180px;
    margin: 0 auto;
}
@media (max-width: 820px) {
    .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-social { justify-content: center; }
}

/* Страховка: круглое лого с обрезкой (дублирует pages.css) */
.logo-mark { overflow: hidden; }
.logo-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
}
/* ===== Анимация появления .anim-up ===== */
@keyframes animUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
.anim-up { animation: animUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.anim-d1 { animation-delay: 0.05s; }
.anim-d2 { animation-delay: 0.18s; }
.anim-d3 { animation-delay: 0.30s; }

/* GLOBAL SHRINK */
body .hero-title { font-size: clamp(1.55rem, 3.3vw, 2.35rem); }
body .hero-sub { font-size: clamp(0.76rem, 0.92vw, 0.88rem); }
body .page-hero h1 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); }
body .page-hero p { font-size: 0.88rem; }
body .container { max-width: 1000px; }
body section { padding: 14px 0 6px; }
body .page-hero { padding: 96px 0 20px; }
.dw-member { animation: dwIn 0.5s ease both; }
@keyframes dwIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

body .nav-links a { padding: 7px 13px; font-size: 0.86rem; }
body .nav-cta { padding: 8px 15px; font-size: 0.84rem; }
body .bento h2 { font-size: clamp(0.9rem, 1.4vw, 1.08rem); }
body .bdesc { font-size: clamp(0.72rem, 0.86vw, 0.8rem); }

/* TEXT & MEMBERS */
html { font-size: 15px; }
body .dw-list { gap: 6px; }
body .dw-member { gap: 10px; padding: 6px 9px; border-radius: 9px; }
body .dw-ava { width: 32px; height: 32px; font-size: 0.66rem; }
body .dw-nm { font-size: 0.78rem; }
body .dw-st { font-size: 0.65rem; }
.dw-member { animation: dwIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
.dw-member:nth-child(1) { animation-delay: 0,05s; }
.dw-member:nth-child(2) { animation-delay: 0,09s; }
.dw-member:nth-child(3) { animation-delay: 0,14s; }
.dw-member:nth-child(4) { animation-delay: 0,18s; }
.dw-member:nth-child(5) { animation-delay: 0,23s; }
.dw-member:nth-child(6) { animation-delay: 0,27s; }
.dw-member:nth-child(7) { animation-delay: 0,32s; }
.dw-member:nth-child(8) { animation-delay: 0,36s; }
.dw-member:nth-child(9) { animation-delay: 0,41s; }
.dw-member:nth-child(10) { animation-delay: 0,45s; }

/* NAV SCROLL BORDER */
body .navbar {
    background: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0);
    box-shadow: none;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, -webkit-backdrop-filter 0.5s ease, backdrop-filter 0.5s ease;
}
body .navbar.scrolled {
    background: rgba(0, 0, 0, 0.65);
    border-color: var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

/* HERO & DL PHOTO */
.hero-title { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.hero-photo { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.12); }
.dl-logo-big { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; }
.dl-photo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
