html {
    box-sizing: border-box
}

*,
::before,
::after {
    box-sizing: inherit
}

body {
    margin: 0;
    scrollbar-gutter: stable;
    min-height: 100vh;
    font-family: 'Noto Sans', sans-serif
}

.pub-header {
    background: #fff;
    position: relative;
    overflow: hidden
}

.pub-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, #ba1f1d0a 0px, #ba1f1d0a 1px, transparent 1px, transparent 48px), repeating-linear-gradient(0deg, #0eb24c08 0px, #0eb24c08 1px, transparent 1px, transparent 48px);
    pointer-events: none;
    z-index: 0
}

.pub-header-top {
    background: linear-gradient(135deg, #BA1F1D 0%, #8a1614 60%, #BA1F1D 100%);
    position: relative;
    z-index: 1;
    padding: 28px 28px 16px
}

.pub-header-top-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none
}

.logo-frame {
    width: 50px;
    height: 50px;
    border-radius: 40px;
    border: 2px dashed #cde6feb3;
    background: #ffffff1f;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 3px -2px #ba1f1d0d 0 4px 14px -2px #ba1f1d17;
    flex-shrink: 0
}

.logo-frame img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.02em
}

.brand-tagline {
    font-size: 14px;
    color: #cde6fed9;
    line-height: 1.4;
    margin-top: 4px
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff1a;
    border: 1px solid #cde6fe4d;
    border-radius: 16px;
    padding: 8px 16px;
    flex-shrink: 0
}

.trust-badge-stars {
    display: flex;
    gap: 3px
}

.star-shape {
    width: 14px;
    height: 14px;
    display: inline-block
}

.trust-badge-text {
    font-size: 14px;
    color: #cde6fee6;
    line-height: 1.4
}

.pub-header-nav {
    position: relative;
    z-index: 1;
    background: #fffffff7;
    border-top: 3px solid #0EB24C;
    box-shadow: 0 4px 14px -2px #ba1f1d17;
    padding: 0 28px
}

.pub-nav-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0
}

.pub-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -.01em;
    line-height: 1.4;
    border-bottom: 3px solid transparent;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .25s cubic-bezier(0.4, 0, 0.2, 1), background-color .18s cubic-bezier(0.0, 0, 0.2, 1);
    position: relative
}

.pub-nav-link:hover {
    color: #BA1F1D;
    border-bottom-color: #BA1F1D;
    background-color: #ba1f1d0a
}

.pub-nav-link:focus {
    outline: none;
    transform: scale(1.02);
    color: #BA1F1D
}

.pub-nav-link svg {
    flex-shrink: 0
}

.pub-footer {
    background: #1b1212;
    position: relative
}

.pub-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #BA1F1D 0%, #0EB24C 50%, #CDE6FE 100%)
}

.footer-upper {
    background: #261818;
    padding: 56px 28px 28px;
    text-align: center
}

.footer-upper-inner {
    max-width: 1024px;
    margin: 0 auto
}

.footer-brand-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    margin-bottom: 28px
}

.footer-logo-frame {
    width: 44px;
    height: 44px;
    border-radius: 40px;
    border: 2px dashed #cde6fe66;
    background: #ffffff0f;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 3px -2px #0eb24c0d 0 4px 14px -2px #0eb24c17
}

.footer-logo-frame img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block
}

.footer-brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.02em
}

.footer-links-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-bottom: 28px
}

.footer-link {
    font-size: 14px;
    color: #cde6feb3;
    text-decoration: none;
    line-height: 1.6;
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-link:hover {
    color: #CDE6FE
}

.footer-link:focus {
    outline: none;
    transform: scale(1.02);
    color: #CDE6FE
}

.footer-lower {
    background: #1b1212;
    padding: 16px 28px 28px;
    text-align: center
}

.footer-lower-inner {
    max-width: 1024px;
    margin: 0 auto
}

.footer-divider {
    border: none;
    border-top: 1px solid #cde6fe1a;
    margin: 0 0 16px
}

.footer-copyright {
    font-size: 14px;
    color: #cde6fe73;
    line-height: 1.6
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-bottom: 16px
}

.footer-contact-link {
    font-size: 14px;
    color: #cde6fe8c;
    text-decoration: none;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-contact-link:hover {
    color: #0EB24C
}

.footer-contact-link:focus {
    outline: none;
    transform: scale(1.02)
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #fff;
    border-top: 3px solid #BA1F1D;
    box-shadow: 0 8px 40px -2px #ba1f1d21;
    padding: 16px 28px;
    display: none
}

.consent-bar-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: space-between
}

.consent-desc {
    font-size: 14px;
    color: #2c2c2c;
    line-height: 1.6;
    flex: 1 1 300px
}

.consent-data-list {
    margin: 8px 0 0;
    padding: 0 0 0 16px;
    font-size: 14px;
    color: #444;
    line-height: 1.9
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

.consent-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 0;
    min-height: 44px;
    text-decoration: underline;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.consent-btn:focus {
    outline: none;
    transform: scale(1.02)
}

.consent-btn.accept {
    color: #BA1F1D;
    font-weight: 700
}

.consent-btn.accept:hover {
    color: #8a1614
}

.consent-btn.decline {
    color: #555
}

.consent-btn.decline:hover {
    color: #2c2c2c
}

.consent-btn.manage-toggle {
    color: #0EB24C
}

.consent-btn.manage-toggle:hover {
    color: #097a34
}

.consent-expand {
    width: 100%;
    border-top: 1px solid #ba1f1d1f;
    padding-top: 16px;
    margin-top: 8px
}

.consent-expand-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.consent-toggle-label {
    font-size: 14px;
    color: #2c2c2c;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-height: 44px
}

.toggle-track {
    width: 40px;
    height: 22px;
    border-radius: 16px;
    background: #ccc;
    position: relative;
    flex-shrink: 0;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.toggle-thumb {
    width: 18px;
    height: 18px;
    border-radius: 26px;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: 0 2px 3px -2px #ba1f1d0d;
    transition: left .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.toggle-input:checked+.toggle-track {
    background: #0EB24C
}

.toggle-input:checked+.toggle-track .toggle-thumb {
    left: 20px
}

.opt-out-notice {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-top: 8px;
    width: 100%
}

.opt-out-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: #BA1F1D;
    text-decoration: underline;
    padding: 0;
    min-height: 44px;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.opt-out-btn:hover {
    color: #8a1614
}

.opt-out-btn:focus {
    outline: none;
    transform: scale(1.02)
}

@media screen and (max-width: 640px) {
    .pub-header-top {
        padding: 16px
    }

    .pub-header-top-inner {
        flex-direction: column;
        gap: 16px
    }

    .trust-badge {
        align-self: flex-start
    }

    .pub-header-nav {
        padding: 0 16px
    }

    .pub-nav-inner {
        flex-wrap: wrap
    }

    .pub-nav-link {
        padding: 16px;
        font-size: 14px
    }

    .footer-upper {
        padding: 56px 16px 28px
    }

    .footer-lower {
        padding: 16px 16px 28px
    }

    .consent-bar {
        padding: 16px
    }
}

.uch-doc-area {
    max-width: 1024px;
    margin: 0 auto;
    padding: 56px 28px
}

.uch-doc-area h1 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin-bottom: 28px;
    margin-top: 0
}

.uch-doc-area h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #1b1b1b;
    margin-top: 56px;
    margin-bottom: 16px;
    padding-top: 28px;
    border-top: 2px solid #CDE6FE
}

.uch-doc-area h3 {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: #1b1b1b;
    margin-top: 28px;
    margin-bottom: 16px
}

.uch-doc-area h4 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -.005em;
    color: #222;
    margin-top: 28px;
    margin-bottom: 8px
}

.uch-doc-area h5 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #333;
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 8px
}

.uch-doc-area h6 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #444;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 8px
}

.uch-doc-area p {
    font-size: 15px;
    line-height: 1.9;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch
}

.uch-doc-area ul,
.uch-doc-area ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 28px
}

.uch-doc-area li {
    font-size: 15px;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 8px
}

.uch-doc-area ul li {
    list-style-type: disc
}

.uch-doc-area ol li {
    list-style-type: decimal
}

.uch-doc-area ul ul,
.uch-doc-area ol ol,
.uch-doc-area ul ol,
.uch-doc-area ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.uch-doc-area em,
.uch-doc-area i {
    font-style: italic;
    color: #2c2c2c
}

.uch-doc-area a {
    color: #BA1F1D;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .15s cubic-bezier(0.0, 0, 0.2, 1)
}

.uch-doc-area a:hover {
    color: #8a1614;
    text-decoration-color: #BA1F1D
}

.uch-doc-area a:visited {
    color: #8a1614
}

.uch-doc-area hr {
    border: none;
    border-top: 1px solid #CDE6FE;
    margin-top: 56px;
    margin-bottom: 56px
}

.bld {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
    overflow: hidden
}

.bld .art-header {
    padding: 96px 0 56px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 0% 100%, #ba1f1d1a 0%, #cde6fe2e 40%, transparent 75%)
}

.bld .art-header .tri-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 64px 64px 0 0;
    border-color: #ba1f1d21 transparent transparent;
    pointer-events: none
}

.bld .art-header .tri-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 56px 56px;
    border-color: transparent transparent #0eb24c1c;
    pointer-events: none
}

.bld .art-header .shape-ring {
    position: absolute;
    top: 28px;
    right: 56px;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    border: 3px solid #cde6fe73;
    pointer-events: none
}

.bld .art-header .shape-sq {
    position: absolute;
    bottom: 56px;
    left: 56px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid #ba1f1d26;
    transform: rotate(22deg);
    pointer-events: none
}

.bld .tag-pill {
    display: inline-block;
    background: #0eb24c1f;
    color: #0a7a34;
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 16px;
    border-radius: 26px;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 28px
}

.bld .art-h1 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #1b1b1b;
    max-width: 780px;
    margin: 0 auto 16px
}

.bld .art-h1 .dot-acc {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #BA1F1D;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -4px
}

.bld .art-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #3d3d3d;
    max-width: 620px;
    margin: 0 auto 28px
}

.bld .art-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    color: #555;
    line-height: 1.4
}

.bld .art-meta .meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 40px;
    background: #BA1F1D;
    opacity: .5;
    display: inline-block
}

.bld .art-meta .meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.bld .art-meta .meta-item svg {
    flex-shrink: 0
}

.bld .art-img-wrap {
    width: 100%;
    max-width: 860px;
    margin: 28px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px -2px #ba1f1d21;
    position: relative
}

.bld .art-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/7;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: imgfade .6s cubic-bezier(0.0, 0, 0.2, 1) .2s forwards
}

@keyframes imgfade {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

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

.bld .art-img-wrap .img-tint {
    position: absolute;
    inset: 0;
    background: #ba1f1d2e;
    border-radius: 16px;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.bld .art-img-wrap:hover .img-tint {
    opacity: 0
}

.bld .divider-curve {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 28px 0
}

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

.bld .art-body-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
    padding-bottom: 56px
}

.bld .art-body-text {
    min-width: 0
}

.bld .art-body-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin-bottom: 28px
}

.bld .art-body-text h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin-bottom: 16px;
    margin-top: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.bld .art-body-text h2 .h2-dot {
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #0EB24C;
    flex-shrink: 0;
    display: inline-block
}

.bld .art-body-text figure {
    margin: 28px 0;
    border-radius: 16px;
    overflow: hidden
}

.bld .art-body-text figcaption {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    padding: 8px 0 0;
    font-style: italic
}

.bld .art-body-text ol {
    padding-left: 28px;
    margin-bottom: 28px
}

.bld .art-body-text ol li {
    font-size: 18px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 8px
}

.bld .art-body-text del {
    color: #888;
    text-decoration: line-through
}

.bld .art-body-text small {
    font-size: 14px;
    color: #666;
    line-height: 1.4
}

.bld .sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 28px
}

.bld .sidebar .matrix-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px -2px #ba1f1d17;
    padding: 28px;
    box-sizing: border-box
}

.bld .sidebar .matrix-card .mc-heading {
    font-size: 15px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 16px;
    letter-spacing: -.01em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.bld .sidebar .matrix-card .mc-heading .mc-dot {
    width: 6px;
    height: 6px;
    border-radius: 40px;
    background: #BA1F1D;
    display: inline-block
}

.bld .matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px
}

.bld .matrix-cell {
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box
}

.bld .matrix-cell.mc-a {
    background: #ba1f1d14
}

.bld .matrix-cell.mc-b {
    background: #0eb24c17
}

.bld .matrix-cell.mc-c {
    background: #cde6fe8c
}

.bld .matrix-cell.mc-d {
    background: #ba1f1d0d
}

.bld .matrix-cell .mc-label {
    font-size: 14px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.2
}

.bld .matrix-cell .mc-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.4
}

.bld .reactions-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px -2px #0eb24c17;
    padding: 28px;
    box-sizing: border-box
}

.bld .reactions-card .rc-heading {
    font-size: 15px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.bld .reactions-card .rc-heading .rc-dot {
    width: 6px;
    height: 6px;
    border-radius: 40px;
    background: #0EB24C;
    display: inline-block
}

.bld .react-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.bld .react-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none
}

.bld .react-group label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 16px;
    border: 2px solid transparent;
    background: #cde6fe4d;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    color: #444;
    line-height: 1.2;
    flex: 1;
    min-width: 56px;
    box-sizing: border-box;
    text-align: center
}

.bld .react-group label:hover {
    background: #cde6feb3;
    border-color: #0eb24c4d
}

.bld .react-group input[type="radio"]:checked+label {
    background: #0eb24c21;
    border-color: #0EB24C;
    box-shadow: 0 2px 3px -2px #0eb24c17;
    color: #0a7a34;
    font-weight: 700
}

.bld .react-group .react-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

.bld .stats-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 28px;
    background: #cde6fe59;
    border-radius: 16px;
    margin-bottom: 28px;
    font-size: 14px;
    color: #444;
    line-height: 1.4
}

.bld .stats-strip .ss-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.bld .stats-strip .ss-val {
    font-size: 22px;
    font-weight: 700;
    color: #BA1F1D;
    line-height: 1.2;
    letter-spacing: -.02em
}

.bld .bg-shift-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 28px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 4px 14px -2px #ba1f1d17
}

.bld .bg-shift-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, #cde6fe2e 0px, #cde6fe2e 2px, transparent 2px, transparent 18px);
    animation: bgshift 8s linear infinite;
    pointer-events: none;
    border-radius: 16px
}

@keyframes bgshift {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 80px 80px
    }
}

.bld .bg-shift-card .bsc-label {
    font-size: 14px;
    font-weight: 700;
    color: #0EB24C;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative
}

.bld .bg-shift-card .bsc-val {
    font-size: 30px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.2;
    letter-spacing: -.02em;
    position: relative
}

.bld .bg-shift-card .bsc-sub {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-top: 8px;
    position: relative
}

.bld .icon-lift {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: #BA1F1D;
    box-shadow: 0 4px 14px -2px #ba1f1d4d;
    flex-shrink: 0
}

.bld .icon-lift svg {
    display: block
}

.bld .three-col {
    display: grid;
    grid-template-columns: 1fr 0.75fr 1fr;
    gap: 16px;
    align-items: stretch;
    margin-top: 28px
}

.bld .tc-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 16px;
    box-shadow: 0 2px 3px -2px #ba1f1d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    box-sizing: border-box;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.bld .tc-card:hover {
    box-shadow: 0 8px 40px -2px #ba1f1d21
}

.bld .tc-card.center {
    padding: 16px;
    background: #cde6fe66;
    box-shadow: inset 0 2px 8px #ba1f1d0f
}

.bld .tc-card .tc-pct {
    font-size: 42px;
    font-weight: 800;
    color: #BA1F1D;
    line-height: 1.2;
    letter-spacing: -.03em
}

.bld .tc-card .tc-label {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b1b;
    line-height: 1.4
}

.bld .tc-card .tc-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6
}

.bld .tc-card.center .tc-pct {
    font-size: 30px;
    color: #0EB24C
}

.bld .section-glow {
    position: relative;
    padding: 56px 0
}

.bld .section-glow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, #cde6fe8c 0%, transparent 70%);
    animation: glowpulse 4s ease-in-out infinite;
    pointer-events: none;
    border-radius: 40px
}

@keyframes glowpulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.bld .split-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 8px 40px -2px #ba1f1d21;
    position: relative;
    z-index: 1
}

.bld .split-band .sb-left {
    background: #BA1F1D;
    padding: 56px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box
}

.bld .split-band .sb-left .sbl-h {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.02em
}

.bld .split-band .sb-left .sbl-p {
    font-size: 15px;
    color: #ffffffd9;
    line-height: 1.6
}

.bld .split-band .sb-left .tri-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 48px 48px 0 0;
    border-color: #ffffff1a transparent transparent;
    pointer-events: none
}

.bld .split-band .sb-right {
    background: #fff;
    padding: 56px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box
}

.bld .split-band .sb-right .sbr-h {
    font-size: 22px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.2;
    letter-spacing: -.015em
}

.bld .split-band .sb-right .sbr-p {
    font-size: 15px;
    color: #3d3d3d;
    line-height: 1.6
}

.bld .read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0EB24C;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 5px;
    border: 2px solid #0EB24C;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .15s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    outline-offset: 2px;
    align-self: flex-start
}

.bld .read-btn:hover {
    background: #0a8f3c;
    border-color: #0a8f3c;
    box-shadow: 0 4px 14px -2px #0eb24c4d;
    outline: 2px solid #0EB24C;
    outline-offset: 4px
}

.bld .read-btn:focus-visible {
    outline: 2px solid #0EB24C;
    outline-offset: 4px
}

.bld .read-btn:active {
    background: #087a33
}

@media (max-width: 768px) {
    .bld .art-h1 {
        font-size: 30px
    }

    .bld .art-body-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .bld .sidebar {
        position: static
    }

    .bld .split-band {
        grid-template-columns: 1fr
    }

    .bld .three-col {
        grid-template-columns: 1fr
    }

    .bld .art-header {
        padding: 56px 0 28px
    }

    .bld .shape-ring,
    .bld .shape-sq {
        display: none
    }
}

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

.blg-root .fog-layer {
    position: fixed;
    top: 0;
    left: -20%;
    width: 60%;
    height: 100%;
    background: #ffffff12;
    pointer-events: none;
    animation: fogDrift 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    z-index: 0
}

@keyframes fogDrift {
    0% {
        transform: translateX(0) skewX(-3deg);
        opacity: .07
    }

    100% {
        transform: translateX(55vw) skewX(2deg);
        opacity: .13
    }
}

.blg-root .pg-bound {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

.blg-root .pg-bound.wide {
    max-width: 1024px
}

.blg-root .tb-strip {
    background: #BA1F1D;
    padding: 96px 0 56px;
    position: relative
}

.blg-root .tb-strip .tb-bg-pat {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(60deg, #ffffff0a 0px, #ffffff0a 1px, transparent 1px, transparent 40px);
    pointer-events: none
}

.blg-root .tb-strip .tb-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1
}

.blg-root .tb-strip .tb-text {
    flex: 1 1 55%
}

.blg-root .tb-strip .tb-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .12em;
    color: #ffffffb3;
    text-transform: uppercase;
    margin-bottom: 16px
}

.blg-root .tb-strip .tb-h1 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 16px
}

.blg-root .tb-strip .tb-h1 .tb-num {
    font-size: 56px;
    color: #CDE6FE;
    letter-spacing: -.03em
}

.blg-root .tb-strip .tb-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffffd1;
    margin: 0
}

.blg-root .tb-strip .tb-img-col {
    flex: 0 0 38%;
    position: relative
}

.blg-root .tb-strip .tb-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden
}

.blg-root .tb-strip .tb-img-frame::before,
.blg-root .tb-strip .tb-img-frame::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: #CDE6FE;
    border-style: solid;
    z-index: 2;
    pointer-events: none
}

.blg-root .tb-strip .tb-img-frame::before {
    top: 8px;
    left: 8px;
    border-width: 2px 0 0 2px
}

.blg-root .tb-strip .tb-img-frame::after {
    bottom: 8px;
    right: 8px;
    border-width: 0 2px 2px 0
}

.blg-root .tb-strip .tb-img-frame img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    opacity: .55;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.blg-root .tb-strip .tb-img-frame:hover img {
    opacity: .85
}

.blg-root .tb-strip .tb-img-frame .img-grid-hover {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#cde6fe2e 1px, transparent 1px), linear-gradient(90deg, #cde6fe2e 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1
}

.blg-root .tb-strip .tb-img-frame:hover .img-grid-hover {
    opacity: 1
}

.blg-root .tb-strip .tb-right-accent {
    position: absolute;
    right: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    background: linear-gradient(to bottom, #CDE6FE, transparent);
    border-radius: 5px
}

.blg-root .zz-div {
    line-height: 0;
    background: #BA1F1D
}

.blg-root .zz-div svg {
    display: block;
    width: 100%
}

.blg-root .posts-belt {
    padding: 56px 0;
    background: #fff
}

.blg-root .posts-belt .belt-head {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px
}

.blg-root .posts-belt .belt-h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0
}

.blg-root .posts-belt .belt-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #BA1F1D;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.blg-root .posts-belt .belt-count {
    font-size: 14px;
    color: #888
}

.blg-root .posts-belt .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.blg-root .posts-belt .art-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px -2px #ba1f1d17;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .18s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden
}

.blg-root .posts-belt .art-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #BA1F1D, transparent);
    border-radius: 0 5px 5px 0
}

.blg-root .posts-belt .art-card:hover {
    box-shadow: 0 8px 40px -2px #ba1f1d21;
    transform: translateY(-3px)
}

.blg-root .posts-belt .art-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0
}

.blg-root .posts-belt .art-card .card-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.blg-root .posts-belt .art-card:hover .card-img-wrap img {
    transform: scale(1.04)
}

.blg-root .posts-belt .art-card .card-img-wrap .img-tint {
    position: absolute;
    inset: 0;
    background: #ba1f1d38;
    opacity: 1;
    transition: opacity .2s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

.blg-root .posts-belt .art-card:hover .card-img-wrap .img-tint {
    opacity: 0
}

.blg-root .posts-belt .art-card .card-img-wrap .img-grid-hover {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#0eb24c26 1px, transparent 1px), linear-gradient(90deg, #0eb24c26 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0;
    transition: opacity .18s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1
}

.blg-root .posts-belt .art-card:hover .card-img-wrap .img-grid-hover {
    opacity: 1
}

.blg-root .posts-belt .art-card .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 8px
}

.blg-root .posts-belt .art-card .card-tag {
    display: inline-block;
    font-size: 14px;
    color: #BA1F1D;
    background: #ba1f1d14;
    border-radius: 5px;
    padding: 2px 8px;
    align-self: flex-start;
    letter-spacing: .04em
}

.blg-root .posts-belt .art-card .card-ttl {
    font-size: 18px;
    line-height: 1.4;
    color: #1b1b1b;
    margin: 0;
    letter-spacing: -.01em
}

.blg-root .posts-belt .art-card .card-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0
}

.blg-root .posts-belt .art-card .card-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 8px
}

.blg-root .posts-belt .art-card .card-meta .meta-author {
    font-size: 14px;
    color: #444;
    font-weight: 600
}

.blg-root .posts-belt .art-card .card-meta .meta-rt {
    font-size: 14px;
    color: #888;
    margin-left: auto
}

.blg-root .posts-belt .art-card .card-meta .meta-rt svg {
    vertical-align: middle;
    margin-right: 4px
}

.blg-root .posts-belt .art-card .card-stats {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 8px 16px;
    border-top: 1px solid #ba1f1d14
}

.blg-root .posts-belt .art-card .card-stats .stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #777
}

.blg-root .posts-belt .art-card .card-stats .stat-item svg {
    flex-shrink: 0
}

.blg-root .posts-belt .art-card .card-lnk {
    display: block;
    text-decoration: none;
    color: inherit
}

.blg-root .posts-belt .art-card .card-lnk:focus-visible {
    outline: 2px solid #BA1F1D;
    outline-offset: 2px;
    border-radius: 16px
}

.blg-root .posts-belt .art-card .read-btn {
    display: inline-block;
    margin: 0 16px 16px;
    padding: 8px 16px;
    background: #BA1F1D;
    color: #fff;
    font-size: 14px;
    border-radius: 26px;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 0
}

.blg-root .posts-belt .art-card .read-btn:hover {
    background: #9a1917;
    box-shadow: 0 4px 14px -2px #ba1f1d21;
    outline: 2px solid #BA1F1D;
    outline-offset: 3px
}

.blg-root .posts-belt .art-card .read-btn:focus-visible {
    outline: 2px solid #BA1F1D;
    outline-offset: 3px
}

.blg-root .zz-div2 {
    line-height: 0;
    background: #fff
}

.blg-root .zz-div2 svg {
    display: block;
    width: 100%
}

.blg-root .metrics-belt {
    background: #CDE6FE;
    padding: 56px 0;
    position: relative
}

.blg-root .metrics-belt .bg-pat {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 0% 100%, #0eb24c1f 0%, transparent 60%);
    pointer-events: none
}

.blg-root .metrics-belt .metrics-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1
}

.blg-root .metrics-belt .metrics-text {
    flex: 1 1 50%
}

.blg-root .metrics-belt .metrics-h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 16px;
    text-align: center
}

.blg-root .metrics-belt .metrics-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #0EB24C;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.blg-root .metrics-belt .metrics-body {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    text-align: left
}

.blg-root .metrics-belt .ring-grid {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.blg-root .metrics-belt .ring-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.blg-root .metrics-belt .ring-item .ring-svg {
    position: relative;
    width: 88px;
    height: 88px
}

.blg-root .metrics-belt .ring-item .ring-svg svg {
    width: 88px;
    height: 88px;
    transform: rotate(-90deg)
}

.blg-root .metrics-belt .ring-item .ring-svg .ring-val {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.2
}

.blg-root .metrics-belt .ring-item .ring-lbl {
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 1.4
}

.blg-root .zz-div3 {
    line-height: 0;
    background: #CDE6FE
}

.blg-root .zz-div3 svg {
    display: block;
    width: 100%
}

.blg-root .topics-strip {
    background: #fff;
    padding: 56px 0
}

.blg-root .topics-strip .topics-h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 28px;
    text-align: center
}

.blg-root .topics-strip .topics-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #BA1F1D;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.blg-root .topics-strip .topics-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center
}

.blg-root .topics-strip .topic-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 2px 3px -2px #ba1f1d0d 0 4px 14px -2px #ba1f1d17;
    font-size: 15px;
    color: #1b1b1b;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), background .18s cubic-bezier(0.0, 0, 0.2, 1);
    cursor: default
}

.blg-root .topics-strip .topic-pill:hover {
    background: #cde6fe80;
    box-shadow: 0 8px 40px -2px #ba1f1d21
}

.blg-root .topics-strip .topic-pill .pill-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

.blg-root .topics-strip .topic-pill .pill-count {
    font-size: 22px;
    font-weight: 700;
    color: #BA1F1D;
    line-height: 1.2
}

.blg-root .zz-div4 {
    line-height: 0;
    background: #fff
}

.blg-root .zz-div4 svg {
    display: block;
    width: 100%
}

.blg-root .editorial-strip {
    background: #0EB24C;
    padding: 56px 0;
    position: relative
}

.blg-root .editorial-strip .ed-bg-pat {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, #ffffff0a 0px, #ffffff0a 1px, transparent 1px, transparent 32px);
    pointer-events: none
}

.blg-root .editorial-strip .ed-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center
}

.blg-root .editorial-strip .ed-h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0
}

.blg-root .editorial-strip .ed-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #CDE6FE;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.blg-root .editorial-strip .ed-body {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffffe0;
    max-width: 600px;
    margin: 0
}

.blg-root .editorial-strip .ed-facts {
    display: flex;
    flex-direction: row;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center
}

.blg-root .editorial-strip .ed-fact {
    background: #ffffff21;
    border-radius: 16px;
    padding: 28px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 2px 8px #0eb24c1f;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.blg-root .editorial-strip .ed-fact:hover {
    background: #ffffff38
}

.blg-root .editorial-strip .ed-fact .fact-num {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #CDE6FE;
    letter-spacing: -.03em
}

.blg-root .editorial-strip .ed-fact .fact-lbl {
    font-size: 15px;
    color: #ffffffd9;
    line-height: 1.4;
    text-align: center
}

.blg-root .editorial-strip .ed-right-accent {
    position: absolute;
    right: 0;
    top: 28px;
    bottom: 28px;
    width: 3px;
    background: linear-gradient(to bottom, #cde6fe99, transparent);
    border-radius: 5px
}

.blg-root .zz-div5 {
    line-height: 0;
    background: #0EB24C
}

.blg-root .zz-div5 svg {
    display: block;
    width: 100%
}

.blg-root .contact-strip {
    background: #fff;
    padding: 56px 0
}

.blg-root .contact-strip .contact-inner {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start
}

.blg-root .contact-strip .contact-col {
    flex: 1 1 50%
}

.blg-root .contact-strip .contact-h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 16px;
    text-align: center
}

.blg-root .contact-strip .contact-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #0EB24C;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.blg-root .contact-strip .contact-body {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 28px;
    text-align: left
}

.blg-root .contact-strip .contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.blg-root .contact-strip .contact-links a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #BA1F1D;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background .18s cubic-bezier(0.0, 0, 0.2, 1)
}

.blg-root .contact-strip .contact-links a:hover {
    background: #ba1f1d12
}

.blg-root .contact-strip .contact-links a svg {
    flex-shrink: 0
}

.blg-root .contact-strip .form-col {
    flex: 1 1 50%
}

.blg-root .contact-strip form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.blg-root .contact-strip form input,
.blg-root .contact-strip form textarea {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #ba1f1d33;
    border-radius: 5px;
    font-size: 15px;
    color: #1b1b1b;
    background: #fff;
    box-shadow: inset 0 2px 3px -2px #ba1f1d0d;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1);
    text-overflow: ellipsis;
    box-sizing: border-box
}

.blg-root .contact-strip form input:focus,
.blg-root .contact-strip form textarea:focus {
    outline: none;
    border-color: #BA1F1D
}

.blg-root .contact-strip form textarea {
    min-height: 120px;
    resize: vertical
}

.blg-root .contact-strip form button[type="submit"] {
    padding: 16px 28px;
    background: #BA1F1D;
    color: #fff;
    font-size: 15px;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    align-self: flex-start;
    position: relative;
    outline: 2px solid transparent;
    outline-offset: 0;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), outline-offset .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.blg-root .contact-strip form button[type="submit"]:hover {
    background: #9a1917;
    outline: 2px solid #BA1F1D;
    outline-offset: 3px
}

.blg-root .contact-strip form button[type="submit"]:focus-visible {
    outline: 2px solid #BA1F1D;
    outline-offset: 3px
}

@media screen and (max-width: 860px) {
    .blg-root .tb-strip .tb-inner {
        flex-direction: column;
        gap: 28px
    }

    .blg-root .tb-strip .tb-img-col {
        width: 100%;
        flex: 0 0 auto
    }

    .blg-root .posts-belt .card-grid {
        grid-template-columns: 1fr 1fr
    }

    .blg-root .metrics-belt .metrics-inner {
        flex-direction: column;
        gap: 28px
    }

    .blg-root .contact-strip .contact-inner {
        flex-direction: column;
        gap: 28px
    }
}

@media screen and (max-width: 560px) {
    .blg-root .posts-belt .card-grid {
        grid-template-columns: 1fr
    }

    .blg-root .metrics-belt .ring-grid {
        grid-template-columns: 1fr 1fr
    }

    .blg-root .tb-strip .tb-h1 {
        font-size: 30px
    }

    .blg-root .tb-strip .tb-h1 .tb-num {
        font-size: 42px
    }

    .blg-root .editorial-strip .ed-facts {
        flex-direction: column;
        align-items: center
    }
}

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

.ab-auth .pg-cap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

@keyframes maskReveal {
    from {
        clip-path: inset(0 50% 0 50%);
        opacity: 0
    }

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

.ab-auth .reveal-mask {
    animation: maskReveal .55s cubic-bezier(0.4, 0, 0.2, 1) both
}

.ab-auth .reveal-mask-delay {
    animation: maskReveal .55s .18s cubic-bezier(0.4, 0, 0.2, 1) both
}

.ab-auth .bio-strip {
    padding: 56px 0;
    background-color: #fff;
    position: relative
}

.ab-auth .bio-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, #ba1f1d0a 0px, #ba1f1d0a 1px, transparent 1px, transparent 18px);
    pointer-events: none
}

.ab-auth .bio-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start
}

.ab-auth .bio-img-col {
    position: relative
}

.ab-auth .bio-portrait {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 8px 40px -2px #ba1f1d21
}

.ab-auth .bio-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.ab-auth .bio-portrait:hover img {
    transform: scale(1.04)
}

.ab-auth .bio-label {
    position: absolute;
    bottom: -16px;
    left: 16px;
    background: #BA1F1D;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 16px;
    border-radius: 5px;
    letter-spacing: .04em;
    font-weight: 600
}

.ab-auth .bio-text-col {
    padding-top: 8px
}

.ab-auth .bio-eyebrow {
    font-size: 14px;
    line-height: 1.4;
    color: #BA1F1D;
    letter-spacing: .08em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px
}

.ab-auth .bio-name {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b1b;
    letter-spacing: -.02em;
    margin-bottom: 8px
}

.ab-auth .bio-name span {
    color: #BA1F1D
}

.ab-auth .bio-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #0EB24C;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -3px
}

.ab-auth .bio-role {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 28px;
    font-weight: 400
}

.ab-auth .bio-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 28px
}

.ab-auth .bio-stats {
    display: flex;
    flex-direction: row;
    gap: 28px;
    flex-wrap: wrap
}

.ab-auth .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ab-auth .stat-num {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #BA1F1D;
    letter-spacing: -.02em
}

.ab-auth .stat-lbl {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    font-weight: 500
}

.ab-auth .exp-belt {
    background: #CDE6FE;
    padding: 96px 0;
    position: relative
}

.ab-auth .exp-belt::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
    height: 28px;
    background: #CDE6FE;
    clip-path: ellipse(55% 100% at 50% 0%);
    pointer-events: none
}

.ab-auth .exp-top {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: start;
    margin-bottom: 56px
}

.ab-auth .exp-heading {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b1b;
    letter-spacing: -.015em;
    margin-bottom: 16px
}

.ab-auth .exp-body {
    font-size: 15px;
    line-height: 1.9;
    color: #2a2a2a
}

.ab-auth .exp-img-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px -2px #0eb24c17;
    position: relative
}

.ab-auth .exp-img-frame img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ab-auth .exp-img-frame:hover img {
    transform: scale(1.05)
}

.ab-auth .exp-img-overlay {
    position: absolute;
    inset: 0;
    background: #ba1f1d2e;
    transition: opacity .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.ab-auth .exp-img-frame:hover .exp-img-overlay {
    opacity: 0
}

.ab-auth .skill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.ab-auth .skill-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 3px -2px #ba1f1d0d 0 4px 14px -2px #ba1f1d17;
    box-sizing: border-box;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ab-auth .skill-card:hover {
    box-shadow: 0 8px 40px -2px #ba1f1d21;
    transform: translateY(-3px)
}

.ab-auth .skill-icon {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #BA1F1D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.ab-auth .skill-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ab-auth .skill-name {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 8px
}

.ab-auth .skill-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444
}

.ab-auth .focus-band {
    padding: 96px 0;
    background: #fff;
    position: relative
}

.ab-auth .focus-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 0% 100%, #cde6fe73 0%, transparent 60%);
    pointer-events: none
}

.ab-auth .focus-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.ab-auth .focus-left {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.ab-auth .focus-heading {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b1b;
    letter-spacing: -.015em
}

.ab-auth .focus-para {
    font-size: 15px;
    line-height: 1.9;
    color: #2a2a2a
}

.ab-auth .img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.ab-auth .img-pair-tall {
    grid-row: span 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px -2px #ba1f1d17
}

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

.ab-auth .img-pair-tall:hover img {
    transform: scale(1.04)
}

.ab-auth .img-sm {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 3px -2px #ba1f1d0d
}

.ab-auth .img-sm img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ab-auth .img-sm:hover img {
    transform: scale(1.05)
}

.ab-auth .chart-area {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ab-auth .chart-label {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.ab-auth .bar-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ab-auth .bar-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.ab-auth .bar-name {
    font-size: 14px;
    line-height: 1.4;
    color: #2a2a2a;
    font-weight: 500
}

.ab-auth .bar-pct {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #BA1F1D
}

.ab-auth .bar-track {
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden
}

.ab-auth .bar-fill {
    height: 100%;
    border-radius: 5px;
    background: #BA1F1D;
    transform-origin: left;
    animation: barGrow .7s cubic-bezier(0.4, 0, 0.2, 1) both
}

.ab-auth .bar-fill.green {
    background: #0EB24C
}

.ab-auth .bar-fill.blue {
    background: #5baee8
}

@keyframes barGrow {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.ab-auth .bar-fill[style*="72%"] {
    animation-delay: .05s
}

.ab-auth .bar-fill[style*="85%"] {
    animation-delay: .15s
}

.ab-auth .bar-fill[style*="60%"] {
    animation-delay: .25s
}

.ab-auth .bar-fill[style*="78%"] {
    animation-delay: .35s
}

.ab-auth .bar-fill[style*="55%"] {
    animation-delay: .45s
}

@media (max-width: 800px) {
    .ab-auth .bio-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .ab-auth .bio-portrait {
        width: 200px
    }

    .ab-auth .bio-name {
        font-size: 30px
    }

    .ab-auth .exp-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .ab-auth .skill-grid {
        grid-template-columns: 1fr 1fr
    }

    .ab-auth .focus-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .ab-auth .img-pair {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 540px) {
    .ab-auth .skill-grid {
        grid-template-columns: 1fr
    }

    .ab-auth .bio-stats {
        gap: 16px
    }

    .ab-auth .img-pair {
        grid-template-columns: 1fr
    }
}

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

.ld-pg .ld-inner {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px
}

.ld-pg .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #BA1F1D;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.ld-pg .dot-acc.grn {
    background: #0EB24C
}

::selection {
    background: #0EB24C;
    color: #fff
}

.ld-pg .tb {
    display: flex;
    flex-direction: row;
    min-height: 0;
    padding: 0;
    position: relative
}

.ld-pg .tb-text {
    flex: 0 0 55%;
    background: #BA1F1D;
    padding: 56px 56px 56px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1
}

.ld-pg .tb-text::before {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 28px;
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #cde6fe66;
    pointer-events: none
}

.ld-pg .tb-text::after {
    content: '';
    position: absolute;
    bottom: 44px;
    left: 44px;
    width: 4px;
    height: 4px;
    border-radius: 40px;
    background: #cde6fe40;
    pointer-events: none
}

.ld-pg .tb-label {
    font-size: 14px;
    line-height: 1.4;
    color: #cde6febf;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.ld-pg .tb-h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -.03em;
    margin: 0 0 16px
}

.ld-pg .tb-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffffe0;
    margin: 0;
    max-width: 380px
}

.ld-pg .tb-sep {
    width: 40px;
    height: 2px;
    background: #CDE6FE;
    margin: 16px 0
}

.ld-pg .tb-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 380px
}

.ld-pg .tb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.ld-pg .tb-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 40%, #ba1f1d8c 100%);
    pointer-events: none
}

.ld-pg .phil {
    background: #fff;
    padding: 96px 0 56px
}

.ld-pg .phil-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start
}

.ld-pg .phil-body h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a1000;
    margin: 0 0 16px
}

.ld-pg .phil-body p {
    font-size: 15px;
    line-height: 1.9;
    color: #2e2e2e;
    margin: 0 0 16px
}

.ld-pg .phil-body p:last-child {
    margin-bottom: 0
}

.ld-pg .phil-side {
    background: #CDE6FE;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px -2px #ba1f1d17
}

.ld-pg .phil-side h4 {
    font-size: 14px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #BA1F1D;
    margin: 0 0 16px
}

.ld-pg .phil-stat {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld-pg .phil-stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.ld-pg .phil-stat-num {
    font-size: 30px;
    line-height: 1.2;
    color: #BA1F1D;
    font-weight: 700;
    min-width: 56px
}

.ld-pg .phil-stat-lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #1e1e1e
}

.ld-pg .phil-divider {
    height: 2px;
    background: #BA1F1D;
    width: 56px;
    margin: 0 0 28px
}

.ld-pg .rhythm {
    background: linear-gradient(circle at 0% 100%, #CDE6FE 0%, #f4f8ff 60%, #fff 100%);
    padding: 56px 0
}

.ld-pg .rhythm-wrap {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: stretch
}

.ld-pg .rhythm-img-col {
    flex: 0 0 42%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px -2px #ba1f1d21
}

.ld-pg .rhythm-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), filter .22s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.93) saturate(1.05)
}

.ld-pg .rhythm-img-col:hover img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1.1)
}

.ld-pg .rhythm-img-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ba1f1d21;
    z-index: 1;
    transition: opacity .2s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

.ld-pg .rhythm-img-col:hover::before {
    opacity: 0
}

.ld-pg .rhythm-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.ld-pg .rhythm-text h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a1000;
    margin: 0 0 16px
}

.ld-pg .rhythm-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #2e2e2e;
    margin: 0 0 16px
}

.ld-pg .rhythm-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.ld-pg .rhythm-tag {
    font-size: 14px;
    line-height: 1.4;
    color: #BA1F1D;
    background: #fff;
    border: 1.5px solid #BA1F1D;
    border-radius: 5px;
    padding: 4px 12px;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ld-pg .rhythm-tag:hover {
    background: #BA1F1D;
    color: #fff
}

.ld-pg .rhythm-divider {
    height: 2px;
    background: #0EB24C;
    width: 56px;
    margin: 0 0 28px
}

.ld-pg .path-sec {
    background: #1a1000;
    padding: 96px 0 56px;
    position: relative
}

.ld-pg .path-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #BA1F1D;
    pointer-events: none
}

.ld-pg .path-head {
    text-align: center;
    margin-bottom: 56px
}

.ld-pg .path-head h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 16px
}

.ld-pg .path-head p {
    font-size: 15px;
    line-height: 1.6;
    color: #cde6fecc;
    max-width: 520px;
    margin: 0 auto
}

.ld-pg .path-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.ld-pg .path-col {
    background: #cde6fe12;
    border-radius: 16px;
    padding: 28px;
    box-shadow: inset 0 2px 3px -2px #ba1f1d0d;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ld-pg .path-col:hover {
    background: #cde6fe21
}

.ld-pg .path-col-num {
    font-size: 42px;
    line-height: 1.2;
    color: #BA1F1D;
    font-weight: 700;
    margin-bottom: 16px
}

.ld-pg .path-col h4 {
    font-size: 18px;
    line-height: 1.4;
    color: #CDE6FE;
    margin: 0 0 8px
}

.ld-pg .path-col p {
    font-size: 14px;
    line-height: 1.9;
    color: #cde6feb3;
    margin: 0
}

.ld-pg .path-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px
}

.ld-pg .path-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 14px -2px #ba1f1d17
}

.ld-pg .path-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), filter .25s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.88) saturate(0.95)
}

.ld-pg .path-img-wrap:hover img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.08)
}

.ld-pg .path-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #0eb24c2e;
    transition: opacity .2s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

.ld-pg .path-img-wrap:hover::after {
    opacity: 0
}

.ld-pg .conv {
    background: #fff;
    padding: 56px 0 96px
}

.ld-pg .conv-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start
}

.ld-pg .conv-sidebar {
    background: #0EB24C;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 8px 40px -2px #0eb24c21
}

.ld-pg .conv-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px -2px #0eb24c17
}

.ld-pg .conv-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.ld-pg .conv-sidebar h4 {
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 8px
}

.ld-pg .conv-sidebar p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffd9;
    margin: 0 0 16px
}

.ld-pg .conv-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ld-pg .conv-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    background: #ffffff26;
    border-radius: 5px;
    padding: 8px 12px;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ld-pg .conv-link:hover {
    background: #ffffff47
}

.ld-pg .conv-link svg {
    flex-shrink: 0
}

.ld-pg .conv-main h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a1000;
    margin: 0 0 16px
}

.ld-pg .conv-main p {
    font-size: 15px;
    line-height: 1.9;
    color: #2e2e2e;
    margin: 0 0 16px
}

.ld-pg .conv-divider {
    height: 2px;
    background: #0EB24C;
    width: 56px;
    margin: 0 0 28px
}

.ld-pg .conv-form {
    margin-top: 28px
}

.ld-pg .conv-form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px
}

.ld-pg .conv-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.ld-pg .conv-field label {
    font-size: 14px;
    line-height: 1.4;
    color: #2e2e2e
}

.ld-pg .conv-field input,
.ld-pg .conv-field textarea {
    font-size: 15px;
    line-height: 1.6;
    color: #1a1000;
    background: #f3f8ff;
    border: 1.5px solid #CDE6FE;
    border-radius: 5px;
    padding: 8px 16px;
    outline: none;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
    text-overflow: ellipsis
}

.ld-pg .conv-field input:focus,
.ld-pg .conv-field textarea:focus {
    border-color: #0EB24C;
    box-shadow: 0 2px 3px -2px #0eb24c0d
}

.ld-pg .conv-field textarea {
    resize: vertical;
    min-height: 96px
}

.ld-pg .conv-btn {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    background: #BA1F1D;
    border: 2px solid #BA1F1D;
    border-radius: 5px;
    padding: 12px 28px;
    cursor: pointer;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), outline-offset .15s cubic-bezier(0.4, 0, 0.2, 1), outline-width .15s cubic-bezier(0.4, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 0
}

.ld-pg .conv-btn:hover {
    background: #8f1715;
    border-color: #8f1715;
    outline: 2px solid #BA1F1D;
    outline-offset: 4px
}

.ld-pg .conv-btn:focus {
    outline: 2px solid #0EB24C;
    outline-offset: 4px
}

.ld-pg .dots-cluster {
    position: absolute;
    pointer-events: none
}

.ld-pg .dots-cluster span {
    display: block;
    border-radius: 40px;
    background: #cde6fe73;
    position: absolute
}

.ld-pg .slit-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ld-pg .slit-trigger:hover .slit-wrap,
.ld-pg .slit-trigger:focus-within .slit-wrap {
    max-height: 200px
}

.ld-pg .slit-trigger {
    cursor: pointer;
    background: #f3f8ff;
    border-radius: 5px;
    padding: 16px;
    margin-top: 16px;
    box-shadow: inset 0 2px 3px -2px #ba1f1d0d;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ld-pg .slit-trigger:hover {
    background: #e8f3fe
}

.ld-pg .slit-hd {
    font-size: 15px;
    line-height: 1.6;
    color: #BA1F1D;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    user-select: none
}

.ld-pg .slit-hd svg {
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0
}

.ld-pg .slit-trigger:hover .slit-hd svg {
    transform: rotate(90deg)
}

.ld-pg .slit-wrap p {
    font-size: 14px;
    line-height: 1.9;
    color: #2e2e2e;
    margin: 8px 0 0;
    padding-top: 8px;
    border-top: 1px solid #CDE6FE
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(var(--ofs, 20px))
    }

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

.ld-pg .anim-1 {
    animation: revealUp .45s cubic-bezier(0.0, 0, 0.2, 1) both;
    --ofs: 16px
}

.ld-pg .anim-2 {
    animation: revealUp .5s .1s cubic-bezier(0.0, 0, 0.2, 1) both;
    --ofs: 24px
}

.ld-pg .anim-3 {
    animation: revealUp .55s .22s cubic-bezier(0.0, 0, 0.2, 1) both;
    --ofs: 36px
}

.ld-pg .anim-4 {
    animation: revealUp .6s .36s cubic-bezier(0.0, 0, 0.2, 1) both;
    --ofs: 52px
}

@media (max-width: 768px) {
    .ld-pg .tb {
        flex-direction: column
    }

    .ld-pg .tb-text {
        flex: none;
        padding: 56px 28px
    }

    .ld-pg .tb-img {
        min-height: 240px
    }

    .ld-pg .phil-grid {
        grid-template-columns: 1fr
    }

    .ld-pg .rhythm-wrap {
        flex-direction: column
    }

    .ld-pg .rhythm-img-col {
        flex: none;
        min-height: 220px
    }

    .ld-pg .path-cols {
        grid-template-columns: 1fr
    }

    .ld-pg .path-img-row {
        grid-template-columns: 1fr
    }

    .ld-pg .conv-layout {
        grid-template-columns: 1fr
    }

    .ld-pg .conv-form-row {
        flex-direction: column
    }

    .ld-pg .tb-h1 {
        font-size: 30px
    }
}

.success-pg {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 28px;
    background: linear-gradient(circle at 0% 100%, #0eb24c14 0%, transparent 60%)
}

.success-pg .success-card {
    max-width: 1024px;
    width: 100%;
    background: #fff;
    border-radius: 26px;
    padding: 56px;
    box-shadow: 0 8px 40px -2px #ba1f1d21;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative
}

.success-pg .success-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 40px;
    background: linear-gradient(circle at 0% 100%, #0eb24c26 0%, #cde6fe66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px -2px #0eb24c17
}

.success-pg .success-card .icon-wrap svg {
    display: block
}

.success-pg .success-card .success-heading {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin-bottom: 16px;
    font-weight: 700
}

.success-pg .success-card .success-heading span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #0EB24C;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -4px
}

.success-pg .success-card .success-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #2c2c2c;
    max-width: 520px;
    margin-bottom: 56px
}

.success-pg .success-card .divider {
    width: 56px;
    height: 3px;
    border-radius: 5px;
    background: linear-gradient(90deg, #BA1F1D, #CDE6FE);
    margin-bottom: 56px
}

.success-pg .success-card .action-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.success-pg .success-card .btn-primary {
    display: inline-block;
    padding: 16px 28px;
    background: #BA1F1D;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #BA1F1D;
    transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: 0 2px 3px -2px #ba1f1d0d;
    outline-offset: 3px
}

.success-pg .success-card .btn-primary:hover {
    background: #8f1715;
    border-color: #8f1715;
    box-shadow: 0 4px 14px -2px #ba1f1d17
}

.success-pg .success-card .btn-primary:focus-visible {
    outline: 2px solid #BA1F1D
}

.success-pg .success-card .btn-secondary {
    display: inline-block;
    padding: 16px 28px;
    background: transparent;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #CDE6FE;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background-color .18s cubic-bezier(0.4, 0, 0.2, 1);
    outline-offset: 3px
}

.success-pg .success-card .btn-secondary:hover {
    border-color: #0EB24C;
    background: #0eb24c0d
}

.success-pg .success-card .btn-secondary:focus-visible {
    outline: 2px solid #0EB24C
}

@media screen and (max-width: 640px) {
    .success-pg {
        padding: 56px 16px
    }

    .success-pg .success-card {
        padding: 28px 16px
    }

    .success-pg .success-card .success-heading {
        font-size: 30px
    }

    .success-pg .success-card .success-sub {
        font-size: 15px;
        margin-bottom: 28px
    }

    .success-pg .success-card .divider {
        margin-bottom: 28px
    }

    .success-pg .success-card .action-row {
        flex-direction: column;
        align-items: stretch
    }

    .success-pg .success-card .btn-primary,
    .success-pg .success-card .btn-secondary {
        text-align: center
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
