@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto-slab@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto-slab@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto-slab@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto-slab@latest/700.css";

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100dvh;
    font-family: 'Roboto Slab', serif;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

.brand__accent-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #2AB3B6 0%, #6DABC8 100%);
    border-radius: 0
}

.site-header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #DFE5EA;
    box-shadow: 0 2px 3px -2px #2ab3b614;
    overflow: hidden
}

.site-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0 46px;
    display: flex;
    flex-direction: column;
    min-height: 120px
}

.site-header__top {
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    gap: 20px;
    flex: 1
}

.brand__card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 20px 8px 12px;
    box-shadow: 0 2px 3px -2px #2ab3b614 0 6px 25px -2px #2ab3b614;
    border: 1px solid #DFE5EA;
    text-decoration: none;
    flex-shrink: 0
}

.brand__card:hover {
    border-radius: 0;
    transition: border-radius .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.brand__card:not(:hover) {
    transition: border-radius .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.brand__logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block
}

.brand__identity {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.brand__name {
    font-family: 'Roboto Slab', serif;
    font-size: 19px;
    font-weight: 700;
    color: #1b3a4b;
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0
}

.brand__descriptor {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 300;
    color: #2AB3B6;
    line-height: 1.2;
    letter-spacing: .02em
}

.site-header__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0;
    border-top: 1px solid #DFE5EA;
    margin-top: 12px
}

.primary-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap
}

.primary-nav__item {
    display: flex;
    align-items: center
}

.primary-nav__link {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 500;
    color: #1b3a4b;
    text-decoration: none;
    letter-spacing: .02em;
    line-height: 1.2;
    padding: 12px 20px;
    display: block;
    border-radius: 0;
    position: relative;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), background-color .2s cubic-bezier(0.4, 0, 0.2, 1), border-radius .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.primary-nav__link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #2AB3B6;
    border-radius: 10px;
    transform: scaleX(0);
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.primary-nav__link:hover {
    color: #2AB3B6;
    background-color: #2ab3b60f;
    border-radius: 10px
}

.primary-nav__link:hover::after {
    transform: scaleX(1)
}

.primary-nav__link:focus {
    outline: 2px solid #2AB3B6;
    outline-offset: 2px;
    border-radius: 10px
}

.header__gradient-band {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    background: linear-gradient(135deg, #6dabc80f 0%, #2ab3b60a 100%);
    pointer-events: none;
    z-index: 0
}

.site-header__inner>* {
    position: relative;
    z-index: 1
}

.site-footer {
    position: relative;
    background: #dfe5ea73;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #2ab3b62e;
    box-shadow: 0 -2px 3px -2px #2ab3b614
}

.site-footer__upper {
    background: #fff9;
    border-bottom: 1px solid #6dabc833
}

.site-footer__upper-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px
}

.footer-brand__card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 20px 8px 12px;
    box-shadow: 0 2px 3px -2px #2ab3b614 0 6px 25px -2px #2ab3b614;
    border: 1px solid #DFE5EA;
    text-decoration: none;
    display: inline-flex;
    width: fit-content
}

.footer-brand__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.footer-brand__name {
    font-family: 'Roboto Slab', serif;
    font-size: 19px;
    font-weight: 700;
    color: #1b3a4b;
    line-height: 1.2;
    letter-spacing: .01em
}

.footer-brand__tagline {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 300;
    color: #3a5a6e;
    line-height: 1.65;
    letter-spacing: .01em
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links__label {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 700;
    color: #2AB3B6;
    letter-spacing: .02em;
    line-height: 1.2;
    margin-bottom: 4px
}

.footer-links__item {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 400;
    color: #1b3a4b;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.45;
    padding: 4px 0;
    border-radius: 0;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), padding-left .2s cubic-bezier(0.4, 0, 0.2, 1);
    display: block
}

.footer-links__item:hover {
    color: #2AB3B6;
    padding-left: 8px
}

.footer-links__item:focus {
    outline: 2px solid #6DABC8;
    outline-offset: 2px;
    border-radius: 10px
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-contact__label {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 700;
    color: #2AB3B6;
    letter-spacing: .02em;
    line-height: 1.2;
    margin-bottom: 4px
}

.footer-contact__link {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 400;
    color: #1b3a4b;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-contact__link:hover {
    color: #2AB3B6
}

.footer-contact__link:focus {
    outline: 2px solid #6DABC8;
    outline-offset: 2px;
    border-radius: 10px
}

.footer-contact__icon {
    font-size: 16px;
    color: #6DABC8;
    flex-shrink: 0
}

.site-footer__lower {
    background: #2ab3b612
}

.site-footer__lower-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copyright {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 300;
    color: #3a5a6e;
    letter-spacing: .01em;
    line-height: 1.45
}

.footer-domain {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 400;
    color: #6DABC8;
    letter-spacing: .01em;
    line-height: 1.45;
    text-decoration: none
}

.footer-domain:hover {
    color: #2AB3B6;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (max-width: 768px) {
    .site-header__inner {
        padding: 0 20px 0 26px;
        min-height: auto
    }

    .site-header__top {
        padding-top: 12px;
        flex-wrap: wrap
    }

    .site-header__bottom {
        justify-content: flex-start;
        margin-top: 8px
    }

    .primary-nav {
        flex-wrap: wrap
    }

    .primary-nav__link {
        padding: 12px;
        font-size: 13px
    }

    .site-footer__upper-inner {
        padding: 40px 20px;
        flex-direction: column;
        gap: 40px
    }

    .site-footer__lower-inner {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .header__gradient-band {
        width: 100%;
        opacity: .5
    }
}

@media (max-width: 320px) {
    .brand__card {
        padding: 8px 12px 8px 8px
    }

    .primary-nav__link {
        padding: 12px 8px
    }
}

.legal-article {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2c3a42
}

.legal-article h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2e36;
    margin-bottom: 40px;
    margin-top: 0
}

.legal-article h2 {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #1a2e36;
    margin-top: 80px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #DFE5EA
}

.legal-article h3 {
    font-size: 19px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #243540;
    margin-top: 40px;
    margin-bottom: 12px
}

.legal-article h4 {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #243540;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px
}

.legal-article h5 {
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #3a4f5c;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 8px
}

.legal-article h6 {
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #3a4f5c;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 4px
}

.legal-article p {
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #2c3a42;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 72ch
}

.legal-article a {
    color: #2AB3B6;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.legal-article a:hover {
    color: #1a8e91;
    text-decoration-color: #6DABC8
}

.legal-article hr {
    border: none;
    border-top: 1px solid #DFE5EA;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: inset 0 1px 2px #2ab3b614
}

.legal-article table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .01em;
    box-shadow: 0 2px 3px -2px #2ab3b614 0 6px 25px -2px #2ab3b614;
    border-radius: 10px;
    overflow: hidden
}

.legal-article thead {
    background-color: #DFE5EA
}

.legal-article thead tr {
    border-bottom: 2px solid #6DABC8
}

.legal-article tbody tr {
    border-bottom: 1px solid #DFE5EA;
    transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.legal-article tbody tr:last-child {
    border-bottom: none
}

.legal-article tbody tr:hover {
    background-color: #f4f7f9
}

.legal-article th {
    padding: 12px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #243540
}

.legal-article td {
    padding: 12px 20px;
    color: #2c3a42;
    vertical-align: top
}

.legal-article div {
    box-sizing: border-box
}

@media (max-width: 1024px) {
    .legal-article {
        padding: 80px 40px
    }

    .legal-article h1 {
        font-size: 25px
    }

    .legal-article h2 {
        margin-top: 40px
    }
}

@media (max-width: 768px) {
    .legal-article {
        padding: 40px 20px
    }

    .legal-article h1 {
        font-size: 25px;
        margin-bottom: 20px
    }

    .legal-article h2 {
        font-size: 19px;
        margin-top: 40px
    }

    .legal-article h3 {
        font-size: 16px;
        margin-top: 20px
    }

    .legal-article p {
        max-width: 100%
    }

    .legal-article table {
        display: block;
        overflow-x: auto;
        border-radius: 10px
    }

    .legal-article th,
    .legal-article td {
        padding: 8px 12px;
        font-size: 13px
    }
}

@media (max-width: 320px) {
    .legal-article {
        padding: 20px 12px
    }

    .legal-article h1 {
        font-size: 19px
    }

    .legal-article h2 {
        font-size: 16px
    }

    .legal-article h3,
    .legal-article h4 {
        font-size: 13px
    }
}

.blog-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden
}

.blog-detail__breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 20px 0 12px;
    flex-wrap: wrap
}

.blog-detail__breadcrumb-link {
    font-size: 13px;
    line-height: 1.45;
    color: #2AB3B6;
    text-decoration: none;
    letter-spacing: .01em;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 8px;
    border-radius: 0
}

.blog-detail__breadcrumb-link:hover {
    border-radius: 10px;
    background: #DFE5EA;
    color: #1a6e70
}

.blog-detail__breadcrumb-sep {
    display: flex;
    align-items: center;
    color: #9ab0bc
}

.blog-detail__breadcrumb-sep svg {
    width: 12px;
    height: 12px
}

.blog-detail__breadcrumb-current {
    font-size: 13px;
    line-height: 1.45;
    color: #4a6572;
    letter-spacing: .01em;
    padding: 4px 0
}

.blog-detail__title-area {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0;
    position: relative;
    border-top: 1px solid #DFE5EA;
    border-bottom: 2px solid #2AB3B6;
    margin-bottom: 40px
}

.blog-detail__title-area::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #2ab3b62e;
    pointer-events: none;
    border-radius: 0
}

.blog-detail__title-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px
}

.blog-detail__meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.blog-detail__tag {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .02em;
    background: #2AB3B6;
    color: #fff;
    padding: 4px 12px;
    border-radius: 0;
    font-style: normal;
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-detail__tag:hover {
    border-radius: 10px
}

.blog-detail__category {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .02em;
    background: #DFE5EA;
    color: #2d5060;
    padding: 4px 12px;
    border-radius: 10px;
    transition: border-radius .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-detail__category:hover {
    border-radius: 0
}

.blog-detail__readtime {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #5a7a88;
    letter-spacing: .01em
}

.blog-detail__readtime svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.blog-detail__post-title {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1b3a45;
    font-style: italic;
    margin: 0
}

.blog-detail__subtitle {
    font-size: 19px;
    line-height: 1.65;
    color: #3d6070;
    letter-spacing: .01em;
    margin: 0
}

.blog-detail__author-byline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 8px
}

.blog-detail__author-name {
    font-size: 16px;
    color: #1b3a45;
    letter-spacing: .01em;
    font-weight: 600
}

.blog-detail__stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.blog-detail__stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #5a7a88;
    letter-spacing: .01em
}

.blog-detail__stat-item svg {
    width: 14px;
    height: 14px
}

.blog-detail__image-column {
    position: relative;
    overflow: hidden;
    border-radius: 0
}

.blog-detail__image-column::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(73deg, #2ab3b661 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0
}

.blog-detail__featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(60%) sepia(20%) contrast(1.08);
    border-radius: 0
}

.blog-detail__body-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    padding: 0 0 40px;
    align-items: start
}

.blog-detail__article-body {
    padding: 0
}

.blog-detail__article-body p {
    margin: 0 0 20px;
    color: #1e3540;
    letter-spacing: .01em
}

.blog-detail__article-body p:nth-child(odd) {
    font-size: 19px;
    line-height: 1.65;
    max-width: 680px
}

.blog-detail__article-body p:nth-child(even) {
    font-size: 16px;
    line-height: 1.65;
    max-width: 520px
}

.blog-detail__article-body h2 {
    font-size: 25px;
    line-height: 1.45;
    color: #1b3a45;
    letter-spacing: .01em;
    font-style: italic;
    margin: 40px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #DFE5EA;
    border-left: 3px solid #2AB3B6;
    padding-left: 12px;
    border-radius: 0
}

.blog-detail__article-body h4 {
    font-size: 19px;
    line-height: 1.45;
    color: #2d5060;
    letter-spacing: .01em;
    margin: 20px 0 8px
}

.blog-detail__article-body mark {
    background: linear-gradient(73deg, #2ab3b638 0%, #6dabc82e 100%);
    color: inherit;
    padding: 2px 4px;
    border-radius: 0
}

.blog-detail__article-body ul,
.blog-detail__article-body ol {
    margin: 0 0 20px 20px;
    padding: 0;
    color: #1e3540
}

.blog-detail__article-body li {
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: .01em;
    margin-bottom: 8px
}

.blog-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px
}

.blog-detail__reaction-card {
    background: #fff;
    border: 1px solid #DFE5EA;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.blog-detail__reaction-title {
    font-size: 16px;
    line-height: 1.45;
    color: #1b3a45;
    letter-spacing: .01em;
    margin: 0 0 12px;
    font-weight: 600
}

.blog-detail__reactions {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.blog-detail__reaction-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.blog-detail__reaction-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none
}

.blog-detail__reaction-face {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 2px solid #DFE5EA;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

.blog-detail__reaction-face::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #2AB3B6;
    transform: scale(0);
    transition: transform .25s cubic-bezier(0.0, 0, 0.2, 1);
    border-radius: 0
}

.blog-detail__reaction-option input[type="radio"]:checked+.blog-detail__reaction-face {
    border-color: #2AB3B6;
    border-radius: 10px
}

.blog-detail__reaction-option input[type="radio"]:checked+.blog-detail__reaction-face::before {
    transform: scale(1)
}

.blog-detail__reaction-option input[type="radio"]:checked+.blog-detail__reaction-face svg {
    position: relative;
    z-index: 1
}

.blog-detail__reaction-option input[type="radio"]:checked+.blog-detail__reaction-face svg path,
.blog-detail__reaction-option input[type="radio"]:checked+.blog-detail__reaction-face svg circle,
.blog-detail__reaction-option input[type="radio"]:checked+.blog-detail__reaction-face svg rect {
    stroke: #fff
}

.blog-detail__reaction-label {
    font-size: 13px;
    line-height: 1.45;
    color: #3d6070;
    letter-spacing: .01em;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-detail__reaction-option input[type="radio"]:checked~.blog-detail__reaction-label {
    color: #2AB3B6;
    font-weight: 600
}

.blog-detail__resource-card {
    background: linear-gradient(73deg, #DFE5EA 0%, transparent 100%);
    border: 1px solid #c8d6de;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 2px 3px -2px #2ab3b614
}

.blog-detail__resource-card-title {
    font-size: 16px;
    line-height: 1.45;
    color: #1b3a45;
    letter-spacing: .01em;
    margin: 0 0 12px;
    font-weight: 600
}

.blog-detail__resource-grid {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.blog-detail__resource-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 0;
    text-decoration: none;
    box-shadow: 0 2px 3px -2px #2ab3b614;
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #DFE5EA
}

.blog-detail__resource-item:hover {
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.blog-detail__resource-icon {
    width: 32px;
    height: 32px;
    background: #DFE5EA;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-detail__resource-item:hover .blog-detail__resource-icon {
    border-radius: 10px;
    background: #2AB3B6
}

.blog-detail__resource-item:hover .blog-detail__resource-icon svg path {
    stroke: #fff
}

.blog-detail__resource-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0
}

.blog-detail__resource-name {
    font-size: 13px;
    line-height: 1.2;
    color: #1b3a45;
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.blog-detail__resource-meta {
    font-size: 13px;
    line-height: 1.2;
    color: #6DABC8;
    letter-spacing: .01em
}

.blog-detail__pulse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 1px solid #2ab3b61f;
    border-radius: 0;
    pointer-events: none;
    animation: blog-detail-outline-pulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

@keyframes blog-detail-outline-pulse {
    0% {
        opacity: .4;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: .9;
        transform: translate(-50%, -50%) scale(1.04)
    }

    100% {
        opacity: .4;
        transform: translate(-50%, -50%) scale(1)
    }
}

.blog-detail__metrics-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 0 40px;
    border: 1px solid #DFE5EA;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 3px -2px #2ab3b614
}

.blog-detail__metric {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid #DFE5EA;
    background: #fff;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-detail__metric:last-child {
    border-right: none
}

.blog-detail__metric:hover {
    background: linear-gradient(73deg, #2ab3b612 0%, transparent 100%)
}

.blog-detail__metric-value {
    font-size: 25px;
    line-height: 1.2;
    color: #2AB3B6;
    letter-spacing: .01em;
    font-weight: 700
}

.blog-detail__metric-label {
    font-size: 13px;
    line-height: 1.45;
    color: #5a7a88;
    letter-spacing: .01em
}

@media (max-width: 1024px) {
    .blog-detail__title-area {
        grid-template-columns: 1fr 240px;
        gap: 20px
    }

    .blog-detail__post-title {
        font-size: 40px
    }

    .blog-detail__body-layout {
        grid-template-columns: 1fr 240px;
        gap: 20px
    }
}

@media (max-width: 768px) {
    .blog-detail__title-area {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .blog-detail__image-column {
        height: 240px
    }

    .blog-detail__post-title {
        font-size: 25px
    }

    .blog-detail__body-layout {
        grid-template-columns: 1fr
    }

    .blog-detail__sidebar {
        position: static
    }

    .blog-detail__metrics-strip {
        grid-template-columns: 1fr
    }

    .blog-detail__metric {
        border-right: none;
        border-bottom: 1px solid #DFE5EA
    }

    .blog-detail__metric:last-child {
        border-bottom: none
    }

    .blog-detail__title-area::before {
        display: none
    }
}

@media (max-width: 320px) {
    .blog-detail {
        padding: 0 12px
    }

    .blog-detail__post-title {
        font-size: 19px
    }

    .blog-detail__reactions {
        gap: 4px
    }
}

.blog-detail__article-body h2 {
    border-left: 3px solid #2AB3B6;
    border-bottom: none;
    padding-left: 12px;
    padding-bottom: 0
}

::selection {
    background: #6DABC8;
    color: #fff
}

.blog-detail__reaction-option:focus-within .blog-detail__reaction-face {
    outline: 2px solid #2AB3B6;
    outline-offset: 2px
}

.blog {
    background: #fff;
    overflow-x: hidden
}

.blog .grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px
}

.blog .posts-area {
    padding: 80px 0;
    background: #fff
}

.blog .posts-area__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px
}

.blog .posts-area__eyebrow {
    font-size: 13px;
    letter-spacing: .02em;
    color: #2AB3B6;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2
}

.blog .posts-area__heading {
    font-size: 25px;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1b2a2b;
    margin: 0
}

.blog .posts-area__count {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    color: #2AB3B6;
    opacity: .13;
    letter-spacing: -.02em;
    user-select: none;
    flex-shrink: 0
}

.blog .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.blog .post-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #2ab3b614;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.blog .post-card:hover {
    box-shadow: 0 8px 60px -2px #2ab3b624;
    border-radius: 0
}

.blog .post-card__image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative
}

.blog .post-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog .post-card:hover .post-card__image-wrapper img {
    transform: scale(1.04)
}

.blog .post-card__tag {
    display: inline-block;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #fff;
    background: #2AB3B6;
    padding: 4px 8px;
    border-radius: 0;
    position: absolute;
    top: 12px;
    left: 12px
}

.blog .post-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px
}

.blog .post-card__category {
    font-size: 13px;
    letter-spacing: .02em;
    color: #6DABC8;
    line-height: 1.2
}

.blog .post-card__title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #1b2a2b;
    margin: 0
}

.blog .post-card__subtitle {
    font-size: 13px;
    color: #4a6062;
    line-height: 1.45;
    letter-spacing: .01em;
    margin: 0
}

.blog .post-card__desc {
    font-size: 16px;
    color: #3a5254;
    line-height: 1.65;
    letter-spacing: .01em;
    margin: 0;
    flex: 1
}

.blog .post-card__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap
}

.blog .post-card__author {
    font-size: 13px;
    color: #4a6062;
    letter-spacing: .01em;
    line-height: 1.2
}

.blog .post-card__readtime {
    font-size: 13px;
    color: #6DABC8;
    letter-spacing: .01em;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.blog .post-card__stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-left: auto
}

.blog .post-card__stat {
    font-size: 13px;
    color: #7a9ea0;
    letter-spacing: .01em;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.blog .post-card__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #2AB3B6;
    text-decoration: none;
    border-bottom: 1.5px solid #DFE5EA;
    padding-bottom: 4px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start
}

.blog .post-card__link:hover {
    color: #1b2a2b;
    border-color: #2AB3B6
}

.blog .post-card--featured {
    grid-column: span 2;
    flex-direction: row
}

.blog .post-card--featured .post-card__image-wrapper {
    width: 45%;
    height: auto;
    min-height: 260px;
    flex-shrink: 0
}

.blog .post-card--featured .post-card__body {
    padding: 40px 20px
}

.blog .post-card--featured .post-card__title {
    font-size: 25px
}

.blog .post-card__corner-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #2ab3b6eb;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 10px;
    letter-spacing: .01em;
    pointer-events: none
}

.blog .wave-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.blog .wave-divider svg {
    display: block;
    width: 100%
}

.blog .editorial-strip {
    background: linear-gradient(73deg, #DFE5EA, transparent);
    padding: 80px 0 40px;
    position: relative
}

.blog .editorial-strip__decor {
    position: absolute;
    top: 20px;
    right: 40px;
    pointer-events: none;
    overflow: hidden
}

.blog .editorial-strip__decor svg {
    display: block
}

.blog .editorial-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.blog .editorial-strip__text-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.blog .editorial-strip__label {
    font-size: 13px;
    letter-spacing: .02em;
    color: #2AB3B6;
    text-transform: uppercase;
    line-height: 1.2
}

.blog .editorial-strip__heading {
    font-size: 25px;
    font-style: italic;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #1b2a2b;
    margin: 0
}

.blog .editorial-strip__body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a5254;
    letter-spacing: .01em;
    max-width: 480px
}

.blog .editorial-strip__body--narrow {
    font-size: 16px;
    line-height: 1.65;
    color: #3a5254;
    letter-spacing: .01em;
    max-width: 340px
}

.blog .editorial-strip__image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.blog .editorial-strip__img-frame {
    width: 100%;
    max-width: 520px;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 60px -2px #2ab3b624;
    position: relative
}

.blog .editorial-strip__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18;
    display: block
}

.blog .editorial-strip__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(73deg, #2AB3B6, #6DABC8);
    opacity: .82;
    border-radius: 10px
}

.blog .editorial-strip__img-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px
}

.blog .editorial-strip__img-quote {
    font-size: 19px;
    font-style: italic;
    color: #fff;
    line-height: 1.45;
    letter-spacing: .01em;
    text-align: center
}

.blog .editorial-strip__img-attr {
    font-size: 13px;
    color: #fffc;
    letter-spacing: .02em;
    line-height: 1.2
}

.blog .newsletter-band {
    background: #fff;
    padding: 80px 0;
    position: relative
}

.blog .newsletter-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(73deg, #2AB3B6, #6DABC8, #DFE5EA)
}

.blog .newsletter-band__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px
}

.blog .newsletter-band__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.blog .newsletter-band__eyebrow {
    font-size: 13px;
    letter-spacing: .02em;
    color: #6DABC8;
    text-transform: uppercase;
    line-height: 1.2
}

.blog .newsletter-band__heading {
    font-size: 25px;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1b2a2b;
    margin: 0
}

.blog .newsletter-band__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #3a5254;
    letter-spacing: .01em;
    max-width: 420px
}

.blog .newsletter-band__form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.blog .newsletter-band__field-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center
}

.blog .newsletter-band__field-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6DABC8;
    display: flex;
    align-items: center
}

.blog .newsletter-band__input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #1b2a2b;
    background: #f4f8f9;
    border: 1.5px solid #DFE5EA;
    border-radius: 10px;
    outline: none;
    box-shadow: inset 0 1px 2px #2ab3b60f;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box
}

.blog .newsletter-band__input:focus {
    border-color: #2AB3B6;
    box-shadow: inset 0 1px 2px #2ab3b61a 0 2px 3px -2px #2ab3b614;
    border-radius: 0
}

.blog .newsletter-band__input::placeholder {
    color: #8ab4b6;
    letter-spacing: .01em
}

.blog .newsletter-band__btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
    background: #2AB3B6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 25px -2px #2ab3b614;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-radius .24s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start
}

.blog .newsletter-band__btn:hover {
    background: #1b9699;
    border-radius: 0;
    box-shadow: 0 8px 60px -2px #2ab3b624
}

.blog .newsletter-band__btn:active {
    transform: scale(1.04)
}

.blog .newsletter-band__note {
    font-size: 13px;
    color: #8ab4b6;
    line-height: 1.45;
    letter-spacing: .01em
}

@keyframes blog-reveal {
    from {
        clip-path: inset(0 100% 0 0)
    }

    to {
        clip-path: inset(0 0% 0 0)
    }
}

.blog .posts-area {
    animation: blog-reveal .28s cubic-bezier(0.4, 0, 0.2, 1) both
}

@keyframes blog-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.blog .post-card {
    animation: blog-fade-up .26s cubic-bezier(0.4, 0, 0.2, 1) both
}

.blog .post-card:nth-child(1) {
    animation-delay: .04s
}

.blog .post-card:nth-child(2) {
    animation-delay: .09s
}

.blog .post-card:nth-child(3) {
    animation-delay: .13s
}

.blog .post-card:nth-child(4) {
    animation-delay: .17s
}

.blog .post-card:nth-child(5) {
    animation-delay: .21s
}

@media (max-width: 1024px) {
    .blog .card-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog .post-card--featured {
        grid-column: span 2
    }

    .blog .editorial-strip__grid {
        grid-template-columns: 1fr
    }

    .blog .editorial-strip__image-col {
        align-items: flex-start
    }

    .blog .newsletter-band__inner {
        gap: 40px
    }
}

@media (max-width: 768px) {
    .blog .grid-container {
        padding: 0 20px
    }

    .blog .card-grid {
        grid-template-columns: 1fr
    }

    .blog .post-card--featured {
        grid-column: span 1;
        flex-direction: column
    }

    .blog .post-card--featured .post-card__image-wrapper {
        width: 100%;
        height: 200px
    }

    .blog .posts-area {
        padding: 40px 0
    }

    .blog .posts-area__lead {
        flex-direction: column;
        align-items: flex-start
    }

    .blog .posts-area__count {
        font-size: 40px
    }

    .blog .editorial-strip {
        padding: 40px 0 20px
    }

    .blog .newsletter-band {
        padding: 40px 0
    }

    .blog .newsletter-band__inner {
        flex-direction: column;
        gap: 20px
    }

    .blog .newsletter-band__btn {
        align-self: stretch;
        justify-content: center
    }
}

@media (max-width: 320px) {
    .blog .grid-container {
        padding: 0 12px
    }

    .blog .post-card__body {
        padding: 12px
    }
}

.about-author {
    max-width: 100%;
    overflow-x: hidden
}

.about-author .author-profile {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: start;
    position: relative
}

.about-author .author-profile__visual {
    position: relative;
    padding: 40px 20px 40px 40px
}

.about-author .author-profile__image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 60px -2px #2ab3b624
}

.about-author .author-profile__image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(0.75);
    transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px
}

.about-author .author-profile__image-frame:hover img {
    filter: saturate(1)
}

.about-author .author-profile__image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(ellipse at 0% 100%, #2ab3b62e 0%, transparent 60%), radial-gradient(ellipse at 100% 0%, #6dabc81f 0%, transparent 55%);
    pointer-events: none
}

.about-author .author-profile__lines {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.about-author .author-profile__lines span {
    display: block;
    height: 2px;
    background: linear-gradient(73deg, #2AB3B6, transparent);
    border-radius: 0
}

.about-author .author-profile__lines span:nth-child(1) {
    width: 60px
}

.about-author .author-profile__lines span:nth-child(2) {
    width: 44px
}

.about-author .author-profile__lines span:nth-child(3) {
    width: 28px
}

.about-author .author-profile__lines span:nth-child(4) {
    width: 16px
}

.about-author .author-profile__badge {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(73deg, #DFE5EA, transparent);
    border-radius: 10px;
    border-top: 2px solid #2AB3B6;
    border-left: 2px solid #6DABC8;
    box-shadow: 0 2px 3px -2px #2ab3b614
}

.about-author .author-profile__badge-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a2a3a;
    letter-spacing: .01em;
    line-height: 1.2;
    margin: 0 0 4px
}

.about-author .author-profile__badge-role {
    font-size: 13px;
    color: #2AB3B6;
    letter-spacing: .02em;
    line-height: 1.45;
    margin: 0
}

.about-author .author-profile__text {
    padding: 40px 40px 40px 0;
    animation: slideInLeft .26s cubic-bezier(0.0, 0, 0.2, 1) both
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-32px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.about-author .author-profile__eyebrow {
    font-size: 13px;
    letter-spacing: .02em;
    color: #2AB3B6;
    line-height: 1.45;
    margin: 0 0 12px;
    text-transform: uppercase
}

.about-author .author-profile__heading {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #152030;
    margin: 0 0 20px;
    font-style: italic
}

.about-author .author-profile__heading em {
    color: #2AB3B6;
    font-style: normal
}

.about-author .author-profile__lead {
    font-size: 19px;
    line-height: 1.65;
    color: #2d3f50;
    letter-spacing: .01em;
    margin: 0 0 20px;
    max-width: 520px
}

.about-author .author-profile__body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4e60;
    letter-spacing: .01em;
    margin: 0 0 20px
}

.about-author .author-profile__body--narrow {
    max-width: 380px
}

.about-author .author-profile__body--wide {
    max-width: 540px
}

.about-author .author-profile__stat-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px
}

.about-author .author-profile__stat {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #2ab3b614;
    border-bottom: 2px solid #DFE5EA;
    transition: border-radius .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-author .author-profile__stat:hover {
    border-radius: 0;
    box-shadow: 0 8px 60px -2px #2ab3b624
}

.about-author .author-profile__stat-number {
    font-size: 25px;
    font-weight: 800;
    color: #2AB3B6;
    line-height: 1.2;
    letter-spacing: .01em
}

.about-author .author-profile__stat-label {
    font-size: 13px;
    color: #5a7080;
    line-height: 1.45;
    letter-spacing: .02em;
    margin-top: 4px
}

.about-author .profile-bg {
    background: linear-gradient(73deg, #f4f8fa 0%, #eef3f6 60%, transparent 100%);
    position: relative
}

.about-author .profile-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 5% 5%, #2ab3b612 0%, transparent 40%), radial-gradient(ellipse at 95% 95%, #6dabc80f 0%, transparent 40%);
    pointer-events: none
}

.about-author .profile-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .4
}

.about-author .curve-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.about-author .curve-divider svg {
    display: block;
    width: 100%
}

.about-author .expertise-strip {
    background: #fff;
    padding: 80px 0 40px;
    position: relative
}

.about-author .expertise-strip__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px
}

.about-author .expertise-strip__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: end
}

.about-author .expertise-strip__heading {
    font-size: 25px;
    font-weight: 700;
    color: #152030;
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0;
    font-style: italic
}

.about-author .expertise-strip__sub {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4e60;
    letter-spacing: .01em;
    margin: 0
}

.about-author .expertise-strip__grid {
    display: grid;
    grid-template-columns: 3fr 2fr 1.4fr;
    gap: 20px
}

.about-author .expertise-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 25px -2px #6dabc814;
    transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), border-radius .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-author .expertise-card:hover {
    transform: perspective(600px) translateZ(8px);
    box-shadow: 0 8px 60px -2px #2ab3b624;
    border-radius: 0
}

.about-author .expertise-card__image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
    transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-author .expertise-card:hover .expertise-card__image {
    filter: saturate(1)
}

.about-author .expertise-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, #152030e0 0%, transparent 100%)
}

.about-author .expertise-card__label {
    font-size: 13px;
    color: #2AB3B6;
    letter-spacing: .02em;
    line-height: 1.45;
    margin: 0 0 4px
}

.about-author .expertise-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    letter-spacing: .01em;
    margin: 0
}

.about-author .expertise-strip__rows {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.about-author .expertise-row {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(73deg, #DFE5EA 0%, transparent 100%);
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-author .expertise-row:nth-child(even) {
    grid-template-columns: 60% 40%;
    background: linear-gradient(253deg, #DFE5EA 0%, transparent 100%)
}

.about-author .expertise-row:hover {
    border-radius: 0
}

.about-author .expertise-row__visual {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 3px -2px #2ab3b614
}

.about-author .expertise-row__visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: saturate(0.72);
    transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px
}

.about-author .expertise-row:hover .expertise-row__visual img {
    filter: saturate(1)
}

.about-author .expertise-row__tag {
    font-size: 13px;
    color: #6DABC8;
    letter-spacing: .02em;
    line-height: 1.45;
    margin: 0 0 8px
}

.about-author .expertise-row__heading {
    font-size: 19px;
    font-weight: 700;
    color: #152030;
    line-height: 1.45;
    letter-spacing: .01em;
    margin: 0 0 8px
}

.about-author .expertise-row__body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4e60;
    letter-spacing: .01em;
    margin: 0
}

.about-author .expertise-row__body strong {
    color: #2AB3B6;
    font-weight: 700
}

.about-author .curve-divider--up svg {
    transform: scaleY(-1)
}

.about-author .perspective-block {
    background: linear-gradient(73deg, #152030 0%, #1e3248 60%, #243a52 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.about-author .perspective-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, #2ab3b61f 0%, transparent 50%), radial-gradient(ellipse at 100% 100%, #6dabc814 0%, transparent 50%);
    pointer-events: none
}

.about-author .perspective-block__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #0a121c8c 100%);
    pointer-events: none
}

.about-author .perspective-block__lines {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.about-author .perspective-block__lines span {
    display: block;
    height: 2px;
    background: linear-gradient(73deg, #2ab3b666, transparent);
    border-radius: 0
}

.about-author .perspective-block__lines span:nth-child(1) {
    width: 80px
}

.about-author .perspective-block__lines span:nth-child(2) {
    width: 56px
}

.about-author .perspective-block__lines span:nth-child(3) {
    width: 36px
}

.about-author .perspective-block__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.about-author .perspective-block__heading {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0 0 40px;
    font-style: italic;
    max-width: 600px
}

.about-author .perspective-block__heading em {
    color: #2AB3B6;
    font-style: normal
}

.about-author .perspective-block__columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}

.about-author .perspective-item {
    padding: 20px;
    border-radius: 10px;
    background: #ffffff0f;
    border-top: 2px solid #2ab3b64d;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .22s cubic-bezier(0.4, 0, 0.2, 1), transform .24s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 2px #2ab3b614
}

.about-author .perspective-item:hover {
    background: #ffffff1a;
    border-radius: 0;
    transform: perspective(500px) translateZ(6px)
}

.about-author .perspective-item__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.about-author .perspective-item__icon svg {
    width: 28px;
    height: 28px
}

.about-author .perspective-item__heading {
    font-size: 16px;
    font-weight: 700;
    color: #e8f0f5;
    line-height: 1.45;
    letter-spacing: .01em;
    margin: 0 0 8px
}

.about-author .perspective-item__body {
    font-size: 13px;
    line-height: 1.65;
    color: #e8f0f5bf;
    letter-spacing: .02em;
    margin: 0
}

.about-author .perspective-block__contact {
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
    background: #2ab3b61f;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 560px;
    border-left: 3px solid #2AB3B6;
    border-bottom: 3px solid #6DABC8;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.about-author .perspective-block__contact-text {
    flex: 1
}

.about-author .perspective-block__contact-label {
    font-size: 13px;
    color: #2AB3B6;
    letter-spacing: .02em;
    line-height: 1.45;
    margin: 0 0 4px
}

.about-author .perspective-block__contact-email {
    font-size: 16px;
    font-weight: 700;
    color: #e8f0f5;
    letter-spacing: .01em;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-author .perspective-block__contact-email:hover {
    color: #2AB3B6
}

.about-author .perspective-block__contact-btn {
    padding: 12px 20px;
    background: #2AB3B6;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-radius .22s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.about-author .perspective-block__contact-btn:hover {
    background: #1e9a9d;
    border-radius: 0
}

.about-author .perspective-block__contact-btn:focus {
    outline: 2px solid #6DABC8;
    outline-offset: 2px
}

@media (max-width: 1024px) {
    .about-author .author-profile {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px
    }

    .about-author .author-profile__text {
        padding: 0
    }

    .about-author .author-profile__visual {
        padding: 20px
    }

    .about-author .author-profile__heading {
        font-size: 25px
    }

    .about-author .expertise-strip__grid {
        grid-template-columns: 1fr 1fr
    }

    .about-author .expertise-strip__grid .expertise-card:last-child {
        display: none
    }

    .about-author .expertise-strip__header {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .about-author .perspective-block__columns {
        grid-template-columns: 1fr 1fr
    }

    .about-author .expertise-row {
        grid-template-columns: 1fr
    }

    .about-author .expertise-row:nth-child(even) {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .about-author .author-profile {
        padding: 40px 20px
    }

    .about-author .author-profile__stat-row {
        flex-direction: column;
        gap: 12px
    }

    .about-author .expertise-strip__grid {
        grid-template-columns: 1fr
    }

    .about-author .perspective-block__columns {
        grid-template-columns: 1fr
    }

    .about-author .perspective-block__contact {
        flex-direction: column;
        align-items: flex-start
    }

    .about-author .expertise-strip__inner {
        padding: 0 20px
    }

    .about-author .perspective-block__inner {
        padding: 0 20px
    }

    .about-author .expertise-strip {
        padding: 40px 0 20px
    }

    .about-author .perspective-block {
        padding: 40px 0
    }
}

@media (max-width: 320px) {
    .about-author .author-profile__heading {
        font-size: 19px
    }

    .about-author .author-profile__lead {
        font-size: 16px
    }
}

.sponsorship {
    max-width: 100%;
    overflow-x: hidden;
    background: #fff
}

.sponsorship .editorial-frame {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px
}

@keyframes vignette-breathe {

    0%,
    100% {
        opacity: .18
    }

    50% {
        opacity: .38
    }
}

.sponsorship .pitch {
    background: #f4f7f9;
    padding: 80px 0 60px;
    position: relative
}

.sponsorship .pitch__vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #2ab3b61a 100%);
    animation: vignette-breathe 6s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

.sponsorship .pitch__grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.sponsorship .pitch__text {
    position: relative
}

.sponsorship .pitch__bracket-top {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 28px;
    height: 28px;
    border-top: 2px solid #2AB3B6;
    border-left: 2px solid #2AB3B6;
    border-radius: 0;
    pointer-events: none
}

.sponsorship .pitch__bracket-bottom {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 28px;
    height: 28px;
    border-bottom: 2px solid #6DABC8;
    border-right: 2px solid #6DABC8;
    border-radius: 0;
    pointer-events: none
}

.sponsorship .pitch__label {
    font-size: 13px;
    letter-spacing: .02em;
    color: #2AB3B6;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block
}

.sponsorship .pitch__heading {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2b3c;
    font-style: italic;
    margin: 0 0 20px
}

.sponsorship .pitch__heading em {
    font-style: normal;
    color: #2AB3B6
}

.sponsorship .pitch__description {
    font-size: 19px;
    line-height: 1.65;
    color: #2d3e4f;
    letter-spacing: .01em;
    margin: 0;
    max-width: 480px
}

.sponsorship .pitch__visual {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 60px -2px #2ab3b624
}

.sponsorship .pitch__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 10px
}

.sponsorship .pitch__tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(73deg, #2ab3b62e 0%, transparent 70%);
    border-radius: 10px;
    pointer-events: none
}

.sponsorship .pitch__img-bracket-tl {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 22px;
    height: 22px;
    border-top: 2px solid #ffffffbf;
    border-left: 2px solid #ffffffbf;
    pointer-events: none
}

.sponsorship .pitch__img-bracket-br {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    border-bottom: 2px solid #ffffffbf;
    border-right: 2px solid #ffffffbf;
    pointer-events: none
}

.sponsorship .divider-zigzag {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.sponsorship .divider-zigzag svg {
    display: block;
    width: 100%
}

.sponsorship .audience {
    background: #fff;
    padding: 80px 0
}

.sponsorship .audience__frame {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: start
}

.sponsorship .audience__rich {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #DFE5EA;
    border-top: 1px solid #DFE5EA;
    border-radius: 0
}

.sponsorship .audience__rich::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 60px;
    background: #2AB3B6;
    border-radius: 0
}

.sponsorship .audience__heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2b3c;
    font-style: italic;
    margin: 20px 0
}

.sponsorship .audience__body {
    font-size: 16px;
    line-height: 1.65;
    color: #2d3e4f;
    letter-spacing: .01em;
    margin: 0 0 20px;
    max-width: 560px
}

.sponsorship .audience__body--narrow {
    max-width: 380px
}

.sponsorship .audience__body strong {
    color: #2AB3B6;
    font-weight: 700
}

.sponsorship .audience__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px
}

.sponsorship .stat-card {
    background: linear-gradient(73deg, #DFE5EA 0%, transparent 100%);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 3px -2px #2ab3b614;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.sponsorship .stat-card:hover {
    box-shadow: 0 6px 25px -2px #2ab3b614;
    border-radius: 0
}

.sponsorship .stat-card__number {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2AB3B6;
    display: block
}

.sponsorship .stat-card__label {
    font-size: 13px;
    line-height: 1.45;
    color: #2d3e4f;
    letter-spacing: .02em;
    display: block;
    margin-top: 4px
}

.sponsorship .audience__minimal {
    padding-top: 20px
}

.sponsorship .audience__minimal-heading {
    font-size: 19px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #1a2b3c;
    font-style: italic;
    margin: 0 0 20px
}

.sponsorship .audience__minimal-body {
    font-size: 16px;
    line-height: 1.65;
    color: #2d3e4f;
    letter-spacing: .01em;
    margin: 0 0 20px
}

.sponsorship .audience__profile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.sponsorship .audience__profile-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.45;
    color: #2d3e4f;
    letter-spacing: .01em
}

.sponsorship .audience__profile-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #2AB3B6;
    border-radius: 0;
    margin-top: 6px;
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.sponsorship .audience__profile-item:hover .audience__profile-dot {
    border-radius: 10px
}

.sponsorship .divider-line {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px
}

.sponsorship .divider-line__rule {
    border: none;
    border-top: 1px solid #DFE5EA;
    margin: 0
}

.sponsorship .formats {
    background: linear-gradient(73deg, #DFE5EA 0%, transparent 60%);
    padding: 80px 0;
    position: relative
}

.sponsorship .formats__radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, #6dabc81f 0%, transparent 65%);
    pointer-events: none;
    animation: vignette-breathe 8s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

.sponsorship .formats__frame {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.sponsorship .formats__heading-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px
}

.sponsorship .formats__heading-accent {
    position: relative;
    padding-left: 20px
}

.sponsorship .formats__heading-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2AB3B6 0%, #6DABC8 100%);
    border-radius: 0
}

.sponsorship .formats__heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2b3c;
    font-style: italic;
    margin: 0 0 8px
}

.sponsorship .formats__subtext {
    font-size: 16px;
    line-height: 1.65;
    color: #2d3e4f;
    letter-spacing: .01em;
    margin: 0;
    max-width: 520px
}

.sponsorship .formats__table-wrap {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.sponsorship .formats__table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 16px
}

.sponsorship .formats__table thead tr {
    background: #1a2b3c
}

.sponsorship .formats__table thead th {
    padding: 20px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .02em;
    text-align: left;
    font-weight: 600
}

.sponsorship .formats__table tbody tr {
    border-bottom: 1px solid #DFE5EA;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.sponsorship .formats__table tbody tr:last-child {
    border-bottom: none
}

.sponsorship .formats__table tbody tr:hover {
    background: #2ab3b60a
}

.sponsorship .formats__table td {
    padding: 20px;
    color: #2d3e4f;
    line-height: 1.45;
    letter-spacing: .01em;
    vertical-align: middle
}

.sponsorship .formats__table td:first-child {
    font-weight: 600;
    color: #1a2b3c
}

.sponsorship .cell--high {
    background: #2ab3b624;
    color: #1a6a6c;
    font-weight: 600;
    border-radius: 0
}

.sponsorship .cell--medium {
    background: #6dabc824;
    color: #2d5870;
    font-weight: 600
}

.sponsorship .cell--low {
    background: #dfe5ea99;
    color: #4a5a6a
}

.sponsorship .cell--tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 13px;
    letter-spacing: .01em;
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.sponsorship .formats__table tbody tr:hover .cell--tag {
    border-radius: 10px
}

.sponsorship .contact-block {
    background: #fff;
    padding: 80px 0
}

.sponsorship .contact-block__frame {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.sponsorship .contact-block__text {
    position: relative
}

.sponsorship .contact-block__heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2b3c;
    font-style: italic;
    margin: 0 0 20px
}

.sponsorship .contact-block__body {
    font-size: 16px;
    line-height: 1.65;
    color: #2d3e4f;
    letter-spacing: .01em;
    margin: 0 0 20px
}

.sponsorship .contact-block__body--narrow {
    max-width: 360px
}

.sponsorship .contact-block__body strong {
    color: #2AB3B6
}

.sponsorship .contact-block__email-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    line-height: 1.45;
    color: #2AB3B6;
    text-decoration: none;
    letter-spacing: .01em;
    border-bottom: 2px solid #2ab3b64d;
    padding-bottom: 4px;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.sponsorship .contact-block__email-link:hover {
    color: #1a2b3c;
    border-color: #2AB3B6
}

.sponsorship .contact-block__card {
    background: linear-gradient(73deg, #DFE5EA 0%, transparent 100%);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 6px 25px -2px #2ab3b614;
    position: relative;
    overflow: hidden
}

.sponsorship .contact-block__card-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, #2ab3b61a 0%, transparent 70%);
    pointer-events: none;
    animation: vignette-breathe 7s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

.sponsorship .contact-block__card-heading {
    font-size: 19px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #1a2b3c;
    font-style: italic;
    margin: 0 0 20px;
    position: relative
}

.sponsorship .contact-block__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative
}

.sponsorship .contact-block__check-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.45;
    color: #2d3e4f;
    letter-spacing: .01em
}

.sponsorship .contact-block__check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #2AB3B6;
    border-radius: 0;
    margin-top: 2px;
    transition: border-radius .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.sponsorship .contact-block__check-item:hover .contact-block__check-icon {
    border-radius: 10px
}

.sponsorship .contact-block__check-icon svg {
    display: block
}

.sponsorship .contact-block__btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #2AB3B6;
    color: #fff;
    font-size: 16px;
    letter-spacing: .02em;
    padding: 12px 40px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 3px -2px #2ab3b614;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .25s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.sponsorship .contact-block__btn:hover {
    background: #1a8e91;
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.sponsorship .contact-block__btn:focus {
    outline: 2px solid #2AB3B6;
    outline-offset: 4px
}

.sponsorship .stat-card {
    position: relative;
    overflow: hidden
}

.sponsorship .stat-card__mask {
    position: absolute;
    inset: 0;
    background: #2ab3b614;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: center center;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1), border-radius .28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.sponsorship .stat-card:hover .stat-card__mask {
    transform: scale(2.5);
    border-radius: 0
}

.sponsorship .curved-connector {
    display: block;
    width: 80px;
    height: 40px;
    margin: 0 0 20px;
    overflow: hidden
}

@media (max-width: 1024px) {
    .sponsorship .pitch__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .sponsorship .pitch__heading {
        font-size: 25px
    }

    .sponsorship .audience__frame {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .sponsorship .contact-block__frame {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .sponsorship .formats__heading-row {
        flex-direction: column;
        gap: 20px
    }
}

@media (max-width: 768px) {
    .sponsorship .pitch__grid {
        padding: 0 20px
    }

    .sponsorship .pitch {
        padding: 40px 0
    }

    .sponsorship .audience {
        padding: 40px 0
    }

    .sponsorship .audience__frame {
        padding: 0 20px
    }

    .sponsorship .formats {
        padding: 40px 0
    }

    .sponsorship .formats__frame {
        padding: 0 20px
    }

    .sponsorship .contact-block {
        padding: 40px 0
    }

    .sponsorship .contact-block__frame {
        padding: 0 20px
    }

    .sponsorship .audience__stats {
        grid-template-columns: 1fr
    }

    .sponsorship .stat-card__number {
        font-size: 25px
    }

    .sponsorship .formats__table td,
    .sponsorship .formats__table thead th {
        padding: 12px;
        font-size: 13px
    }

    .sponsorship .contact-block__card {
        padding: 20px
    }

    .sponsorship .editorial-frame {
        padding: 0 20px
    }
}

@media (max-width: 320px) {
    .sponsorship .pitch__heading {
        font-size: 19px
    }

    .sponsorship .formats__table {
        font-size: 13px
    }
}

.lead {
    max-width: 100%;
    overflow-x: hidden
}

.lead__grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

@keyframes clipReveal {
    from {
        clip-path: inset(0 0 100% 0)
    }

    to {
        clip-path: inset(0 0 0% 0)
    }
}

@keyframes clipRevealMod {
    from {
        clip-path: inset(0 0 100% 0)
    }

    to {
        clip-path: inset(0 0 0% 0)
    }
}

.lead__crosses-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    overflow: hidden
}

.lead__crosses-divider--wide {
    gap: 12px
}

.lead__cross {
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0
}

.lead__cross::before,
.lead__cross::after {
    content: '';
    position: absolute;
    background: #2AB3B6;
    opacity: .35
}

.lead__cross::before {
    width: 2px;
    height: 10px;
    left: 4px;
    top: 0
}

.lead__cross::after {
    width: 10px;
    height: 2px;
    left: 0;
    top: 4px
}

.lead__cross--dark::before,
.lead__cross--dark::after {
    background: #6DABC8;
    opacity: .5
}

.lead__title-zone {
    padding: 80px 0 40px;
    background: #fff
}

.lead__title-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    min-height: 420px
}

.lead__title-text-col {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 40px 0;
    position: relative
}

.lead__title-bracket-tl,
.lead__title-bracket-br {
    position: absolute;
    width: 28px;
    height: 28px
}

.lead__title-bracket-tl {
    top: 20px;
    left: -8px;
    border-top: 2px solid #2AB3B6;
    border-left: 2px solid #2AB3B6
}

.lead__title-bracket-br {
    bottom: 20px;
    right: 32px;
    border-bottom: 2px solid #2AB3B6;
    border-right: 2px solid #2AB3B6
}

.lead__title-label {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2AB3B6;
    margin-bottom: 20px;
    font-style: normal
}

.lead__title-heading {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a3a;
    font-style: italic;
    margin: 0 0 20px
}

.lead__title-heading span {
    color: #2AB3B6
}

.lead__title-image-col {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.lead__title-image-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(73deg, #fff 30%, transparent 100%);
    z-index: 2;
    pointer-events: none
}

.lead__title-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__title-image-col:hover .lead__title-img {
    transform: translateX(-4%)
}

.lead__title-bracket-img-tl,
.lead__title-bracket-img-br {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 3
}

.lead__title-bracket-img-tl {
    top: 12px;
    left: 12px;
    border-top: 2px solid #fffc;
    border-left: 2px solid #fffc
}

.lead__title-bracket-img-br {
    bottom: 12px;
    right: 12px;
    border-bottom: 2px solid #fffc;
    border-right: 2px solid #fffc
}

.lead__title-reveal {
    animation: clipReveal .6s cubic-bezier(0.0, 0, 0.2, 1) both
}

.lead__structure-zone {
    padding: 80px 0;
    background: #f4f7f9;
    position: relative
}

.lead__structure-bg-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
    overflow: hidden
}

.lead__structure-bg-lines svg {
    width: 100%;
    height: 100%
}

.lead__structure-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.lead__structure-header {
    margin-bottom: 40px
}

.lead__structure-heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a3a;
    font-style: italic;
    margin: 0 0 12px
}

.lead__structure-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    max-width: 600px;
    letter-spacing: .01em
}

.lead__structure-columns {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.lead__structure-col-left {
    flex: 1 1 55%
}

.lead__structure-col-right {
    flex: 1 1 45%
}

.lead__structure-divline {
    width: 1px;
    background: linear-gradient(73deg, #2AB3B6, transparent);
    align-self: stretch;
    min-height: 200px
}

.lead__nav-entry {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #2ab3b61f;
    text-decoration: none;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .22s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0
}

.lead__nav-entry:hover {
    background: #2ab3b60f;
    border-radius: 10px;
    padding-left: 12px
}

.lead__nav-entry-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(73deg, #2AB3B6, #6DABC8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 3px -2px #2ab3b614
}

.lead__nav-entry-icon .codicon {
    color: #fff;
    font-size: 16px
}

.lead__nav-entry-text {
    flex: 1
}

.lead__nav-entry-label {
    font-size: 16px;
    line-height: 1.45;
    color: #1a2a3a;
    letter-spacing: .01em;
    font-weight: 600;
    display: block
}

.lead__nav-entry-sub {
    font-size: 13px;
    line-height: 1.45;
    color: #5a6a7a;
    letter-spacing: .01em;
    display: block;
    margin-top: 4px
}

.lead__structure-note {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    letter-spacing: .01em
}

.lead__structure-note-accent {
    color: #2AB3B6;
    font-weight: 600
}

.lead__values-zone {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.lead__values-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.lead__values-col-left {
    flex: 1 1 40%
}

.lead__values-col-right {
    flex: 1 1 60%
}

.lead__values-heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a3a;
    font-style: italic;
    margin: 0 0 20px
}

.lead__values-body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    letter-spacing: .01em;
    margin-bottom: 20px
}

.lead__values-body--narrow {
    max-width: 340px
}

.lead__value-item {
    padding: 20px;
    border-radius: 0;
    border: 1px solid #6dabc82e;
    margin-bottom: 12px;
    background: #f4f7f9;
    box-shadow: 0 2px 3px -2px #2ab3b614;
    transition: border-radius .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__value-item:hover {
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.lead__value-item-title {
    font-size: 16px;
    line-height: 1.45;
    color: #1a2a3a;
    letter-spacing: .01em;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px
}

.lead__value-dot {
    width: 8px;
    height: 8px;
    background: #2AB3B6;
    border-radius: 0;
    flex-shrink: 0
}

.lead__value-item-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #5a6a7a;
    letter-spacing: .01em
}

.lead__comparison-zone {
    padding: 80px 0;
    background: linear-gradient(73deg, #DFE5EA 0%, transparent 100%), #f0f4f7;
    position: relative
}

.lead__comparison-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.lead__comparison-heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a3a;
    font-style: italic;
    margin: 0 0 40px;
    max-width: 680px
}

.lead__comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    align-items: start
}

.lead__comparison-divline {
    background: linear-gradient(73deg, #2AB3B6 0%, #DFE5EA 100%);
    align-self: stretch;
    min-height: 260px
}

.lead__comparison-col-label {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2AB3B6;
    margin-bottom: 20px;
    display: block
}

.lead__comparison-col-heading {
    font-size: 19px;
    line-height: 1.45;
    color: #1a2a3a;
    letter-spacing: .01em;
    margin: 0 0 12px
}

.lead__comparison-body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    letter-spacing: .01em
}

.lead__comparison-accent {
    color: #2AB3B6;
    font-weight: 600
}

.lead__usecases-zone {
    padding: 80px 0;
    background: #fff
}

.lead__usecases-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.lead__usecases-heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a3a;
    font-style: italic;
    margin: 0 0 40px
}

.lead__usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.lead__usecase-card {
    padding: 20px;
    background: #f4f7f9;
    border-radius: 0;
    border-top: 3px solid #2AB3B6;
    box-shadow: 0 2px 3px -2px #2ab3b614;
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__usecase-card:nth-child(2) {
    border-top-color: #6DABC8;
    margin-top: 20px
}

.lead__usecase-card:nth-child(3) {
    border-top-color: #2AB3B6;
    margin-top: 40px
}

.lead__usecase-card:hover {
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.lead__usecase-type {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6DABC8;
    margin-bottom: 12px;
    display: block
}

.lead__usecase-heading {
    font-size: 19px;
    line-height: 1.45;
    color: #1a2a3a;
    letter-spacing: .01em;
    margin: 0 0 12px
}

.lead__usecase-body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    letter-spacing: .01em
}

.lead__usecase-image-wrap {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    height: 140px
}

.lead__usecase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__usecase-image-wrap:hover .lead__usecase-image {
    transform: translateY(-4%)
}

.lead__limits-zone {
    padding: 80px 0;
    background: #1a2a3a;
    position: relative
}

.lead__limits-bg-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    pointer-events: none;
    overflow: hidden
}

.lead__limits-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.lead__limits-col-left {
    flex: 1 1 45%
}

.lead__limits-col-right {
    flex: 1 1 55%
}

.lead__limits-heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #fff;
    font-style: italic;
    margin: 0 0 20px
}

.lead__limits-body {
    font-size: 16px;
    line-height: 1.65;
    color: #c8d4dc;
    letter-spacing: .01em;
    margin-bottom: 20px
}

.lead__limits-body--narrow {
    max-width: 360px
}

.lead__limits-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 8px 60px -2px #2ab3b624
}

.lead__limits-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__limits-image-wrap:hover .lead__limits-image {
    transform: translateX(4%)
}

.lead__limit-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #2ab3b626;
    border: 1px solid #2ab3b64d;
    border-radius: 0;
    font-size: 13px;
    color: #2AB3B6;
    letter-spacing: .02em;
    margin: 4px 4px 4px 0;
    transition: border-radius .22s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__limit-tag:hover {
    border-radius: 10px;
    background: #2ab3b640
}

.lead__limit-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 20px
}

.lead__outcomes-zone {
    padding: 80px 0;
    background: #f4f7f9;
    position: relative
}

.lead__outcomes-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.lead__outcomes-heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a3a;
    font-style: italic;
    margin: 0 0 40px;
    max-width: 560px
}

.lead__outcomes-layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.lead__outcomes-col-metrics {
    flex: 0 0 280px
}

.lead__outcomes-col-quotes {
    flex: 1 1 auto
}

.lead__metric-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.lead__metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lead__metric-label {
    font-size: 13px;
    line-height: 1.45;
    color: #5a6a7a;
    letter-spacing: .01em
}

.lead__metric-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.lead__metric-value {
    font-size: 19px;
    line-height: 1.2;
    color: #1a2a3a;
    letter-spacing: .01em;
    font-weight: 700;
    min-width: 40px
}

.lead__metric-bar-track {
    flex: 1;
    height: 6px;
    background: #2ab3b61f;
    border-radius: 0;
    overflow: hidden
}

.lead__metric-bar-fill {
    height: 100%;
    background: linear-gradient(73deg, #2AB3B6, #6DABC8);
    border-radius: 0;
    animation: clipRevealMod .7s cubic-bezier(0.0, 0, 0.2, 1) both
}

.lead__metric-bar-fill--a {
    width: 82%;
    animation-delay: .1s
}

.lead__metric-bar-fill--b {
    width: 67%;
    animation-delay: .2s
}

.lead__metric-bar-fill--c {
    width: 74%;
    animation-delay: .3s
}

.lead__metric-bar-fill--d {
    width: 58%;
    animation-delay: .4s
}

.lead__quote-item {
    padding: 20px;
    background: #fff;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 3px -2px #2ab3b614;
    border-left: 3px solid #2AB3B6;
    border-bottom: 1px solid #6dabc826;
    transition: border-radius .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__quote-item:hover {
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #2ab3b614
}

.lead__quote-text {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    letter-spacing: .01em;
    font-style: italic;
    margin-bottom: 12px
}

.lead__quote-author {
    font-size: 13px;
    color: #6DABC8;
    letter-spacing: .02em
}

.lead__connect-zone {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.lead__connect-bg-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    pointer-events: none;
    overflow: hidden
}

.lead__connect-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.lead__connect-col-left {
    flex: 1 1 50%
}

.lead__connect-col-right {
    flex: 1 1 50%
}

.lead__connect-heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a3a;
    font-style: italic;
    margin: 0 0 20px
}

.lead__connect-body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    letter-spacing: .01em;
    margin-bottom: 20px
}

.lead__connect-body--narrow {
    max-width: 380px
}

.lead__connect-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lead__form-field {
    position: relative
}

.lead__form-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6DABC8;
    font-size: 16px;
    pointer-events: none;
    z-index: 1
}

.lead__form-input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #6dabc84d;
    border-radius: 0;
    background: #f4f7f9;
    font-size: 16px;
    color: #1a2a3a;
    letter-spacing: .01em;
    box-sizing: border-box;
    outline: none;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 2px #2ab3b60f
}

.lead__form-input:focus {
    border-color: #2AB3B6;
    border-radius: 10px
}

.lead__form-input::placeholder {
    color: #8a9aaa;
    font-size: 16px
}

.lead__form-textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #6dabc84d;
    border-radius: 0;
    background: #f4f7f9;
    font-size: 16px;
    color: #1a2a3a;
    letter-spacing: .01em;
    box-sizing: border-box;
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), border-radius .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 2px #2ab3b60f
}

.lead__form-textarea:focus {
    border-color: #2AB3B6;
    border-radius: 10px
}

.lead__form-textarea::placeholder {
    color: #8a9aaa;
    font-size: 16px
}

.lead__form-btn {
    padding: 12px 40px;
    background: linear-gradient(73deg, #2AB3B6, #6DABC8);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    letter-spacing: .02em;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 6px 25px -2px #2ab3b614;
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__form-btn:hover {
    border-radius: 10px;
    box-shadow: 0 8px 60px -2px #2ab3b624
}

.lead__form-btn:focus {
    outline: 2px solid #2AB3B6;
    outline-offset: 2px
}

.lead__connect-habits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px
}

.lead__habit-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start
}

.lead__habit-icon-wrap {
    width: 40px;
    height: 40px;
    background: linear-gradient(73deg, #DFE5EA, #f4f7f9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 3px -2px #2ab3b614
}

.lead__habit-icon-wrap .codicon {
    color: #2AB3B6;
    font-size: 19px
}

.lead__habit-text {
    flex: 1
}

.lead__habit-title {
    font-size: 16px;
    line-height: 1.45;
    color: #1a2a3a;
    letter-spacing: .01em;
    font-weight: 600;
    margin-bottom: 4px
}

.lead__habit-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #5a6a7a;
    letter-spacing: .01em
}

.lead__tag-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    position: relative
}

.lead__tag {
    display: inline-block;
    padding: 4px 12px;
    background: #DFE5EA;
    border-radius: 0;
    font-size: 13px;
    color: #3a4a5a;
    letter-spacing: .02em;
    cursor: default;
    transition: border-radius .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.lead__tag-group:hover .lead__tag {
    transform: translateY(-4px);
    border-radius: 10px;
    background: #2ab3b626
}

.lead__tag-group:hover .lead__tag:nth-child(2) {
    transform: translateY(-8px) translateX(4px);
    transition-delay: .04s
}

.lead__tag-group:hover .lead__tag:nth-child(3) {
    transform: translateY(-6px) translateX(-2px);
    transition-delay: .08s
}

.lead__tag-group:hover .lead__tag:nth-child(4) {
    transform: translateY(-10px) translateX(2px);
    transition-delay: .06s
}

.lead__tag-group:hover .lead__tag:nth-child(5) {
    transform: translateY(-5px) translateX(-4px);
    transition-delay: .1s
}

@media (max-width: 1024px) {
    .lead__title-heading {
        font-size: 40px
    }

    .lead__structure-columns {
        flex-direction: column
    }

    .lead__structure-divline {
        display: none
    }

    .lead__values-inner {
        flex-direction: column;
        gap: 40px
    }

    .lead__comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .lead__comparison-divline {
        display: none
    }

    .lead__usecases-grid {
        grid-template-columns: 1fr 1fr
    }

    .lead__usecase-card:nth-child(3) {
        margin-top: 0
    }

    .lead__limits-inner {
        flex-direction: column;
        gap: 40px
    }

    .lead__outcomes-layout {
        flex-direction: column
    }

    .lead__outcomes-col-metrics {
        flex: 0 0 auto;
        width: 100%
    }

    .lead__connect-inner {
        flex-direction: column;
        gap: 40px
    }
}

@media (max-width: 768px) {
    .lead__title-inner {
        flex-direction: column;
        min-height: auto
    }

    .lead__title-text-col {
        padding: 40px 0 20px
    }

    .lead__title-image-col {
        height: 260px
    }

    .lead__title-heading {
        font-size: 32px
    }

    .lead__usecases-grid {
        grid-template-columns: 1fr
    }

    .lead__usecase-card:nth-child(2) {
        margin-top: 0
    }

    .lead__structure-zone,
    .lead__values-zone,
    .lead__comparison-zone,
    .lead__usecases-zone,
    .lead__limits-zone,
    .lead__outcomes-zone,
    .lead__connect-zone {
        padding: 40px 0
    }
}

@media (max-width: 320px) {
    .lead__title-heading {
        font-size: 25px
    }

    .lead__grid {
        padding: 0 12px
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(73deg, #DFE5EA 0%, transparent 100%)
}

.success-page .confirmation__wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.success-page .confirmation__icon-container {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 25px -2px #2ab3b614;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-radius .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .confirmation__icon-container:hover {
    border-radius: 0
}

.success-page .confirmation__checkmark {
    width: 44px;
    height: 44px
}

.success-page .confirmation__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 560px
}

.success-page .confirmation__heading {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1b3a3b;
    font-style: italic;
    margin: 0
}

.success-page .confirmation__heading--accent {
    color: #2AB3B6
}

.success-page .confirmation__body {
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #2d4a4b;
    margin: 0
}

.success-page .confirmation__divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(73deg, #2AB3B6, #6DABC8);
    border-radius: 0
}

.success-page .confirmation__action-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center
}

.success-page .confirmation__button--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #2AB3B6;
    color: #fff;
    font-size: 16px;
    letter-spacing: .02em;
    line-height: 1.2;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 3px -2px #2ab3b614;
    transition: border-radius .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.0, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .confirmation__button--primary:hover {
    border-radius: 0;
    background: #239ea1;
    box-shadow: 0 8px 60px -2px #2ab3b624
}

.success-page .confirmation__button--primary:focus {
    outline: 2px solid #2AB3B6;
    outline-offset: 3px
}

.success-page .confirmation__button--secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    color: #2d4a4b;
    font-size: 16px;
    letter-spacing: .02em;
    line-height: 1.2;
    border: 1px solid #DFE5EA;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 3px -2px #6dabc814;
    transition: border-radius .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.0, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .confirmation__button--secondary:hover {
    border-radius: 0;
    border-color: #6DABC8;
    box-shadow: 0 6px 25px -2px #6dabc814
}

.success-page .confirmation__button--secondary:focus {
    outline: 2px solid #6DABC8;
    outline-offset: 3px
}

.success-page .confirmation__note {
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #4a6b6c;
    margin: 0;
    padding: 12px 20px;
    background: #fff;
    border-radius: 10px;
    border-top: 2px solid #DFE5EA;
    border-right: 1px solid #DFE5EA;
    border-bottom: 1px solid #DFE5EA;
    border-left: 1px solid #DFE5EA;
    box-shadow: inset 0 1px 2px #2ab3b614;
    max-width: 420px;
    text-align: center
}

@media (max-width: 768px) {
    .success-page {
        padding: 40px 20px
    }

    .success-page .confirmation__action-group {
        flex-direction: column;
        align-items: stretch
    }

    .success-page .confirmation__button--primary,
    .success-page .confirmation__button--secondary {
        justify-content: center
    }
}

@media (max-width: 320px) {
    .success-page .confirmation__heading {
        font-size: 19px
    }

    .success-page .confirmation__icon-container {
        width: 64px;
        height: 64px
    }
}