* { box-sizing: border-box; }

body {
    font-family: var(--font);
    background-color: var(--bg);
    padding: 0;
    margin: 0;
}

.container {
    display: block;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.dd {
    border: solid 1px aqua;
}


h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

a {
    color: var(--blue);
}

a:hover {
    opacity: 0.8;
}

.glass {
    /* Цвет поверхности — Figma Fill: #296087 @ 40% */
    background: rgba(41, 96, 135, 0.40);

    /* Глубина и frost → лёгкая зернистость */
    backdrop-filter:
            blur(20px)                  /* Frost */
            saturate(140%)              /* Refraction */
            contrast(110%)              /* Depth */
            brightness(105%);           /* Light */
    -webkit-backdrop-filter:
            blur(20px)
            saturate(140%)
            contrast(110%)
            brightness(105%);

    /* Дополнительная "гранулированность" для имитации Dispersion */
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    backdrop-filter: blur(2px);

    /* Лёгкая хроматическая аберрация — аналог Dispersion 50% */
    background:
            radial-gradient(
                    circle at 30% 30%,
                    rgba(255,255,255,0.08),
                    transparent 70%
            );
    mix-blend-mode: screen;
    opacity: 0.25;
}

.glass::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* Frost noise (Figma → Frost 4) */
    background-image: url("data:image/svg+xml;utf8,\
        <svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'>\
        <filter id='n'>\
        <feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/>\
        </filter>\
        <rect width='100' height='100' filter='url(%23n)' opacity='0.06'/>\
        </svg>");
    opacity: 0.06;
    mix-blend-mode: overlay;
}


main .inner-page {
    color: var(--grey-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

main .inner-page h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
}

main .inner-page .content h2, main .inner-page .content p strong:first-child {
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
}

main .inner-page .content a {
   color: var(--blue);
}

main .inner-page .content a:hover {
    opacity: 0.8;
}

.info-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 60px; /* row / col */
    border-radius: 10px;
}

.info-label{
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255,255,255,.55);
    margin-bottom: 6px;
}

.info-value{
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 640px){
    .info-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
