.web-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: #183129;
    background: #f4f8f6;
}

.web-body svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.web-header {
    width: min(1180px, calc(100% - 48px));
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    border-bottom: 1px solid #dfe9e4;
}

.web-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
}

.web-brand-logo {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #dce9e4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(25, 79, 61, .08);
}

.web-brand-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.web-brand strong,
.web-brand small {
    display: block;
}

.web-brand strong {
    font-size: 17px;
}

.web-brand small {
    margin-top: 2px;
    color: #7d9189;
    font-size: 8px;
    font-weight: 800;
}

.web-main {
    width: min(1180px, calc(100% - 48px));
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .72fr);
    align-items: center;
    gap: 8vw;
    margin: 0 auto;
    padding: 72px 0 80px;
}

.web-intro {
    max-width: 650px;
}

.web-status {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid #cfe4dc;
    border-radius: 999px;
    color: #276a55;
    background: #ebf6f1;
    font-size: 11px;
    font-weight: 800;
}

.web-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20a97d;
    box-shadow: 0 0 0 4px rgba(32, 169, 125, .12);
}

.web-kicker {
    margin: 27px 0 8px;
    color: #9a792f;
    font-size: 10px;
    font-weight: 900;
}

.web-intro h1 {
    margin: 0;
    font-size: 58px;
    line-height: 1.12;
    letter-spacing: 0;
}

.web-lead {
    max-width: 560px;
    margin: 22px 0 0;
    color: #667b73;
    font-size: 18px;
    line-height: 1.8;
}

.web-notice {
    max-width: 570px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 42px;
    padding: 19px 20px;
    border-left: 3px solid #0b765c;
    background: #fff;
    box-shadow: 0 12px 34px rgba(30, 77, 60, .07);
}

.web-notice-icon {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    color: #08745a;
    background: #e7f4ef;
}

.web-notice-icon svg {
    width: 21px;
    height: 21px;
}

.web-notice strong {
    display: block;
    font-size: 15px;
}

.web-notice p {
    margin: 7px 0 0;
    color: #788a83;
    font-size: 13px;
    line-height: 1.7;
}

.web-visual {
    position: relative;
    width: min(430px, 100%);
    aspect-ratio: 1 / 1;
    justify-self: end;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #d9e7e1;
    border-radius: 8px;
    background: #e8f3ef;
}

.web-logo-stage {
    position: relative;
    z-index: 2;
    width: 56%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 24px 65px rgba(20, 94, 70, .15);
}

.web-logo-stage img {
    width: 76%;
    height: 76%;
    object-fit: contain;
    filter: drop-shadow(0 12px 13px rgba(0, 97, 120, .15));
}

.web-signal {
    position: absolute;
    border: 1px solid rgba(8, 116, 90, .15);
    border-radius: 50%;
}

.web-signal-one {
    width: 78%;
    height: 78%;
}

.web-signal-two {
    width: 108%;
    height: 108%;
}

.web-visual-label {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 7px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
}

.web-visual-label>span {
    width: 34px;
    height: 34px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    background: #08745a;
    font-size: 16px;
    font-weight: 900;
}

.web-visual-label strong,
.web-visual-label small {
    display: block;
}

.web-visual-label strong {
    font-size: 12px;
}

.web-visual-label small {
    margin-top: 3px;
    color: #7c8e87;
    font-size: 9px;
}

.web-footer {
    width: min(1180px, calc(100% - 48px));
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 auto;
    border-top: 1px solid #dfe9e4;
    color: #91a099;
    font-size: 10px;
}

@media (max-width: 760px) {

    .web-header,
    .web-main,
    .web-footer {
        width: min(100% - 32px, 1180px);
    }

    .web-header {
        min-height: 72px;
    }

    .web-main {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 48px 0 54px;
    }

    .web-intro h1 {
        font-size: 40px;
    }

    .web-lead {
        font-size: 15px;
    }

    .web-notice {
        margin-top: 30px;
    }

    .web-visual {
        width: 100%;
        max-width: 430px;
        justify-self: center;
    }
}