@import url('https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/300.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/700.css');

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Bitter', Georgia, serif;
}

.site_header {
    position: relative;
    width: 100%;
    background: linear-gradient(160deg, #F8F2F8 0%, #E5D4DF 55%, #AE70C6 100%);
    border-bottom: 1px solid rgba(174, 112, 198, 0.18);
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10);
    overflow: hidden;
}

.site_header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 48px;
    background: rgba(174, 112, 198, 0.10);
    pointer-events: none;
}

.header_top_bar {
    width: 100%;
    background: rgba(174, 112, 198, 0.12);
    border-bottom: 1px solid rgba(174, 112, 198, 0.14);
    padding: 8px 0;
}

.header_top_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.contact_phone {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #2d1a3e;
    text-decoration: none;
    letter-spacing: 0;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.25s cubic-bezier(0.34,1.56,0.64,1), background 0.25s cubic-bezier(0.34,1.56,0.64,1);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.contact_phone:hover {
    border-color: #AE70C6;
    background: rgba(174, 112, 198, 0.08);
}

.contact_email {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #3d2255;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.28s cubic-bezier(0.68,-0.55,0.27,1.55), background 0.28s cubic-bezier(0.68,-0.55,0.27,1.55);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.contact_email:hover {
    border-color: #AE70C6;
    background: rgba(174, 112, 198, 0.08);
}

.header_identity_row {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand_mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo_frame {
    width: 64px;
    height: 64px;
    border-radius: 8px 48px 8px 48px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10), 0 0 0 3px rgba(174, 112, 198, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.logo_frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand_name_text {
    margin-left: 20px;
    font-family: 'Bitter', Georgia, serif;
    font-size: 31px;
    font-weight: 700;
    color: #2d1a3e;
    line-height: 1.1;
    letter-spacing: 0;
}

.brand_name_text span {
    display: block;
    font-size: 15px;
    font-weight: 300;
    color: #5a3a72;
    line-height: 1.35;
    margin-top: 4px;
}

.header_nav_row {
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(174, 112, 198, 0.14);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.nav_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
}

.nav_link {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #2d1a3e;
    text-decoration: none;
    padding: 20px 20px;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
    position: relative;
    transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1), border-bottom-color 0.22s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
}

.nav_link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: rgba(174, 112, 198, 0.10);
    transition: height 0.25s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.nav_link:hover::after {
    height: 100%;
}

.nav_link:hover {
    color: #7a3fa8;
    border-bottom-color: #AE70C6;
}

.nav_link span {
    position: relative;
    z-index: 1;
}

@media (max-width: 1280px) {
    .header_identity_row {
        padding: 20px 20px;
    }
    .header_top_inner {
        padding: 0 20px;
    }
    .nav_inner {
        padding: 0 20px;
    }
    .nav_link {
        padding: 20px 8px;
        font-size: 15px;
    }
    .brand_name_text {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    .header_top_inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    .header_identity_row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }
    .nav_inner {
        padding: 0 8px;
        gap: 0;
    }
    .nav_link {
        padding: 20px 8px;
        font-size: 15px;
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }
    .brand_name_text {
        font-size: 23px;
    }
}

.site_footer {
    background: #2d1a3e;
    color: #E5D4DF;
    padding: 40px 0 0 0;
}

.footer_main_row {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer_brand_column {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 160px;
}

.footer_logo_frame {
    width: 60px;
    height: 60px;
    border-radius: 48px 8px 48px 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 2px 1px 3px -1px rgba(174, 112, 198, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.footer_logo_frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer_brand_label {
    font-family: 'Bitter', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #F8F2F8;
    line-height: 1.1;
}

.footer_nav_column {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_nav_heading {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #AE70C6;
    margin-bottom: 8px;
    line-height: 1.35;
}

.footer_nav_link {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #c9b8d4;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1), border-bottom-color 0.22s cubic-bezier(0.34,1.56,0.64,1);
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
}

.footer_nav_link:hover {
    color: #E5D4DF;
    border-bottom-color: #AE70C6;
}

.footer_contact_column {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_contact_heading {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #AE70C6;
    margin-bottom: 8px;
    line-height: 1.35;
}

.footer_contact_item {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #c9b8d4;
    text-decoration: none;
    line-height: 1.55;
    display: block;
    transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.footer_contact_item:hover {
    color: #F8F2F8;
}

.footer_address_text {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #a08cb0;
    line-height: 1.55;
}

.footer_bottom_strip {
    border-top: 1px solid rgba(174, 112, 198, 0.18);
    background: rgba(0, 0, 0, 0.18);
    padding: 20px 0;
}

.footer_bottom_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer_copyright {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 300;
    color: #8a7295;
    line-height: 1.35;
}

.footer_legal_links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer_legal_link {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #8a7295;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s cubic-bezier(0.34,1.56,0.64,1), border-bottom-color 0.2s cubic-bezier(0.34,1.56,0.64,1);
    padding-bottom: 2px;
}

.footer_legal_link:hover {
    color: #E5D4DF;
    border-bottom-color: #AE70C6;
}

@media (max-width: 1280px) {
    .footer_main_row {
        padding: 0 20px 40px 20px;
    }
    .footer_bottom_inner {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .footer_main_row {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px 40px 20px;
    }
    .footer_bottom_inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 20px;
    }
    .footer_legal_links {
        gap: 8px;
    }
}

.popup_bar {
    font-family: 'Bitter', Georgia, serif;
}

.popup_bar_text {
    font-size: 15px;
    color: #2d1a3e;
    line-height: 1.55;
}

.popup_bar_accept {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #2d1a3e;
    background: transparent;
    border: 2px solid #AE70C6;
    border-radius: 8px;
    padding: 8px 20px;
    cursor: pointer;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    transition: color 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.popup_bar_accept::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #AE70C6;
    transition: height 0.25s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.popup_bar_accept:hover::before {
    height: 100%;
}

.popup_bar_accept:hover {
    color: #fff;
}

.popup_bar_accept span {
    position: relative;
    z-index: 1;
}

.popup_bar_decline {
    font-family: 'Bitter', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: #5a3a72;
    background: transparent;
    border: 2px solid #E5D4DF;
    border-radius: 8px;
    padding: 8px 20px;
    cursor: pointer;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    transition: color 0.28s cubic-bezier(0.34,1.56,0.64,1), border-color 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.popup_bar_decline::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #E5D4DF;
    transition: height 0.28s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.popup_bar_decline:hover::before {
    height: 100%;
}

.popup_bar_decline:hover {
    color: #2d1a3e;
    border-color: #AE70C6;
}

.popup_bar_decline span {
    position: relative;
    z-index: 1;
}

.popup_bar_accept:focus,
.popup_bar_decline:focus {
    outline: none;
    border-color: #7a3fa8;
    background: rgba(174, 112, 198, 0.08);
}.lpxm-policy-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2d2040;
}

.lpxm-policy-body p {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #2d2040;
}

.lpxm-policy-body ul,
.lpxm-policy-body ol {
    margin: 20px 0;
    padding-left: 40px;
}

.lpxm-policy-body ul {
    list-style-type: disc;
}

.lpxm-policy-body ol {
    list-style-type: decimal;
}

.lpxm-policy-body li {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 8px;
    color: #2d2040;
}

.lpxm-policy-body li:last-child {
    margin-bottom: 0;
}

.lpxm-policy-body ul ul,
.lpxm-policy-body ol ol,
.lpxm-policy-body ul ol,
.lpxm-policy-body ol ul {
    margin: 8px 0;
    padding-left: 20px;
}

.lpxm-policy-body strong,
.lpxm-policy-body b {
    font-weight: 700;
    color: #1e1530;
}

.lpxm-policy-body em,
.lpxm-policy-body i {
    font-style: italic;
    color: #3d2d55;
}

.lpxm-policy-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    line-height: 1.55;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10);
}

.lpxm-policy-body thead {
    background-color: #AE70C6;
}

.lpxm-policy-body thead tr {
    border-bottom: none;
}

.lpxm-policy-body thead th {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    padding: 20px;
    text-align: left;
    border: none;
}

.lpxm-policy-body tbody tr {
    border-bottom: 1px solid #E5D4DF;
    transition: background-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lpxm-policy-body tbody tr:last-child {
    border-bottom: none;
}

.lpxm-policy-body tbody tr:nth-child(even) {
    background-color: #F8F2F8;
}

.lpxm-policy-body tbody tr:hover {
    background-color: #E5D4DF;
}

.lpxm-policy-body td {
    font-size: 15px;
    line-height: 1.55;
    padding: 20px;
    color: #2d2040;
    vertical-align: top;
    border: none;
}

.lpxm-policy-body hr {
    border: none;
    border-top: 1px solid #E5D4DF;
    margin: 40px 0;
}

.lpxm-policy-body div {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .lpxm-policy-body {
        padding: 40px 20px;
    }

    .lpxm-policy-body p {
        font-size: 15px;
    }

    .lpxm-policy-body li {
        font-size: 15px;
    }

    .lpxm-policy-body ul,
    .lpxm-policy-body ol {
        padding-left: 20px;
    }

    .lpxm-policy-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lpxm-policy-body thead th,
    .lpxm-policy-body td {
        padding: 8px 20px;
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .lpxm-policy-body {
        padding: 80px 40px;
    }
}
.journal_detail {
    background: #fff;
    overflow-x: clip;
}

.journal_detail .article_frame {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.journal_detail .load_column {
    opacity: 0;
    transform: translateY(24px);
    animation: column_appear 0.28s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.journal_detail .load_column:nth-child(1) { animation-delay: 0.05s; }
.journal_detail .load_column:nth-child(2) { animation-delay: 0.14s; }
.journal_detail .load_column:nth-child(3) { animation-delay: 0.22s; }

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

.journal_detail .title_band {
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    padding: 80px 0 40px;
    position: relative;
}

.journal_detail .title_band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 28px,
        rgba(174,112,198,0.07) 28px,
        rgba(174,112,198,0.07) 29px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 28px,
        rgba(174,112,198,0.07) 28px,
        rgba(174,112,198,0.07) 29px
    );
    pointer-events: none;
}

.journal_detail .title_curve_decor {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.journal_detail .title_curve_decor svg {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 520px;
    height: 380px;
    opacity: 0.18;
}

.journal_detail .title_grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.journal_detail .title_meta_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.journal_detail .tag_pill {
    background: #AE70C6;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    padding: 4px 20px;
    border-radius: 48px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.journal_detail .category_label {
    background: transparent;
    border: 1.5px solid #AE70C6;
    color: #AE70C6;
    font-size: 15px;
    line-height: 1.35;
    padding: 4px 20px;
    border-radius: 48px;
    font-weight: 500;
}

.journal_detail .readtime_badge {
    font-size: 15px;
    line-height: 1.35;
    color: #5a4060;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.journal_detail .readtime_badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.journal_detail .article_heading {
    font-size: 43px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e0a2e;
    margin: 0 0 20px;
}

.journal_detail .article_subheading {
    font-size: 18px;
    line-height: 1.55;
    color: #4a3058;
    margin: 0 0 20px;
    font-style: italic;
    font-weight: 400;
}

.journal_detail .author_line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.35;
    color: #5a4060;
}

.journal_detail .author_name_text {
    font-weight: 600;
    color: #AE70C6;
    font-style: italic;
}

.journal_detail .image_frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
}

.journal_detail .image_frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(174,112,198,0.18) 0%, rgba(229,212,223,0.22) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.journal_detail .image_frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: sepia(0.18) contrast(1.06) brightness(0.97) saturate(0.92);
}

.journal_detail .corner_rect_decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    pointer-events: none;
    z-index: 2;
}

.journal_detail .corner_rect_decor span {
    position: absolute;
    border: 1.5px solid rgba(174,112,198,0.22);
    border-radius: 8px;
    transition: width 0.25s cubic-bezier(0.34,1.56,0.64,1), height 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.journal_detail .corner_rect_decor span:nth-child(1) { inset: 0; }
.journal_detail .corner_rect_decor span:nth-child(2) { inset: 10px; }
.journal_detail .corner_rect_decor span:nth-child(3) { inset: 20px; }

.journal_detail .image_frame:hover .corner_rect_decor span:nth-child(1) { inset: -8px; }
.journal_detail .image_frame:hover .corner_rect_decor span:nth-child(2) { inset: 4px; }
.journal_detail .image_frame:hover .corner_rect_decor span:nth-child(3) { inset: 16px; }

.journal_detail .zigzag_divider {
    width: 100%;
    display: block;
    line-height: 0;
}

.journal_detail .article_body_area {
    padding: 80px 0;
    background: #fff;
}

.journal_detail .body_grid {
    display: grid;
    grid-template-columns: 680px 1fr;
    gap: 80px;
    align-items: start;
}

.journal_detail .prose_area {
    font-size: 18px;
    line-height: 1.55;
    color: #22102e;
}

.journal_detail .prose_area p {
    margin: 0 0 20px;
    counter-increment: prose_counter;
    padding-left: 40px;
    position: relative;
}

.journal_detail .prose_area p::before {
    content: counter(prose_counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
    font-weight: 700;
    color: #AE70C6;
    line-height: 1.55;
}

.journal_detail .prose_area {
    counter-reset: prose_counter;
}

.journal_detail .prose_area h2 {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e0a2e;
    margin: 40px 0 20px;
}

.journal_detail .prose_area h3 {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    color: #3a1850;
    margin: 40px 0 20px;
}

.journal_detail .prose_area blockquote {
    margin: 40px 0;
    padding: 20px 20px 20px 20px;
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    border-radius: 8px;
    font-size: 18px;
    font-style: italic;
    color: #3a1850;
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
    position: relative;
}

.journal_detail .prose_area blockquote cite {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    font-style: normal;
    color: #AE70C6;
    font-weight: 600;
}

.journal_detail .prose_area table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
}

.journal_detail .prose_area table caption {
    font-size: 15px;
    font-weight: 600;
    color: #5a4060;
    margin-bottom: 8px;
    text-align: left;
}

.journal_detail .prose_area table thead th {
    background: #AE70C6;
    color: #fff;
    padding: 8px 20px;
    text-align: left;
    font-weight: 700;
}

.journal_detail .prose_area table tbody td {
    padding: 8px 20px;
    border-bottom: 1px solid #E5D4DF;
    color: #22102e;
}

.journal_detail .prose_area table tbody tr:nth-child(even) td {
    background: #F8F2F8;
}

.journal_detail .prose_area del {
    color: #9a7aaa;
    text-decoration: line-through;
}

.journal_detail .prose_area ins {
    color: #AE70C6;
    font-weight: 600;
    text-decoration: none;
    font-style: italic;
}

.journal_detail .prose_area details {
    margin: 20px 0;
    border: 1.5px solid #E5D4DF;
    border-radius: 8px;
    padding: 8px 20px;
}

.journal_detail .prose_area summary {
    font-weight: 600;
    color: #3a1850;
    cursor: pointer;
    padding: 8px 0;
    font-size: 18px;
}

.journal_detail .sidebar_column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 40px;
}

.journal_detail .copy_url_card {
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
}

.journal_detail .copy_url_label {
    font-size: 15px;
    font-weight: 700;
    color: #3a1850;
    margin-bottom: 8px;
}

.journal_detail .copy_url_display {
    font-size: 15px;
    color: #5a4060;
    background: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    margin-bottom: 8px;
    word-break: break-all;
    border: 1.5px solid #E5D4DF;
}

.journal_detail .copy_url_button {
    display: block;
    width: 100%;
    padding: 8px 20px;
    border-radius: 8px;
    border: 2px solid #AE70C6;
    background: #fff;
    color: #AE70C6;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.journal_detail .copy_url_button::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 0;
    background: #AE70C6;
    transition: height 0.25s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.journal_detail .copy_url_button:hover::before {
    height: 100%;
}

.journal_detail .copy_url_button:hover {
    color: #fff;
}

.journal_detail .copy_url_button span {
    position: relative;
    z-index: 1;
}

.journal_detail .copy_url_button:focus-visible {
    outline: 2px solid #AE70C6;
    outline-offset: 2px;
}

.journal_detail .copy_url_button:active {
    box-shadow: inset 2px 1px 3px -1px rgba(174,112,198,0.18);
}

.journal_detail .metric_card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
    border: 1.5px solid #E5D4DF;
}

.journal_detail .metric_label {
    font-size: 15px;
    color: #5a4060;
    margin-bottom: 4px;
}

.journal_detail .metric_number {
    font-size: 43px;
    font-weight: 800;
    color: #AE70C6;
    line-height: 1.1;
    margin-bottom: 8px;
}

.journal_detail .metric_bar_track {
    height: 3px;
    background: #E5D4DF;
    border-radius: 48px;
    overflow: hidden;
}

.journal_detail .metric_bar_fill {
    height: 100%;
    background: linear-gradient(90deg, #AE70C6, #E5D4DF);
    border-radius: 48px;
    animation: bar_grow 0.32s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
    transform-origin: left;
}

@keyframes bar_grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.journal_detail .metric_sub {
    font-size: 15px;
    color: #5a4060;
    margin-top: 4px;
}

.journal_detail .bottom_band {
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    padding: 40px 0 80px;
    position: relative;
}

.journal_detail .bottom_band_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.journal_detail .back_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #3a1850;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    border: 2px solid #AE70C6;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.journal_detail .back_link::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 0;
    background: #AE70C6;
    transition: height 0.28s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.journal_detail .back_link:hover::before {
    height: 100%;
}

.journal_detail .back_link:hover {
    color: #fff;
}

.journal_detail .back_link svg,
.journal_detail .back_link_text {
    position: relative;
    z-index: 1;
}

.journal_detail .back_link:focus-visible {
    outline: 2px solid #AE70C6;
    outline-offset: 2px;
}

.journal_detail .bottom_tag_group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.journal_detail .about_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #AE70C6;
    text-decoration: none;
    padding: 4px 20px;
    border-radius: 48px;
    border: 1.5px solid #AE70C6;
    background: transparent;
    transition: background 0.22s cubic-bezier(0.34,1.56,0.64,1), color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.journal_detail .about_link:hover {
    background: #AE70C6;
    color: #fff;
}

.journal_detail .about_link:focus-visible {
    outline: 2px solid #AE70C6;
    outline-offset: 2px;
}

@media (max-width: 1280px) {
    .journal_detail .title_grid {
        grid-template-columns: 1fr 340px;
    }
    .journal_detail .body_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .journal_detail .sidebar_column {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .journal_detail .title_grid {
        grid-template-columns: 1fr;
    }
    .journal_detail .article_heading {
        font-size: 31px;
    }
    .journal_detail .title_band {
        padding: 40px 0 40px;
    }
    .journal_detail .article_body_area {
        padding: 40px 0;
    }
    .journal_detail .sidebar_column {
        grid-template-columns: 1fr;
    }
    .journal_detail .bottom_band_inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .journal_detail .title_curve_decor svg {
        width: 260px;
        height: 200px;
    }
}

.podcast {
  background: #fff;
  overflow-x: clip;
}

.podcast .podcast_schema {
  display: none;
}

.podcast .divider_gradient {
  height: 2px;
  background: linear-gradient(90deg, #AE70C6 0%, #E5D4DF 60%, transparent 100%);
  border: none;
  margin: 0;
}

.podcast .reveal_item {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.28s cubic-bezier(0.34,1.56,0.64,1), transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.podcast .reveal_item.visible {
  opacity: 1;
  transform: scale(1);
}

.podcast .manifesto_block {
  padding: 40px 20px 80px;
  position: relative;
  background: linear-gradient(233deg, #E5D4DF 0%, #F8F2F8 100%);
}

.podcast .manifesto_block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(174,112,198,0.06) 28px, rgba(174,112,198,0.06) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(174,112,198,0.06) 28px, rgba(174,112,198,0.06) 29px);
  pointer-events: none;
}

.podcast .manifesto_block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #AE70C6 0%, #E5D4DF 60%, transparent 100%);
}

.podcast .manifesto_inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.podcast .manifesto_text_side {
  flex: 1 1 0;
  min-width: 0;
}

.podcast .manifesto_label {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #AE70C6;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding: 4px 20px;
  border: 1.5px solid #AE70C6;
  border-radius: 8px;
  background: rgba(174,112,198,0.07);
}

.podcast .manifesto_heading {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b1230;
  margin: 0 0 20px;
  position: relative;
  padding-left: 20px;
}

.podcast .manifesto_heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #AE70C6 0%, #E5D4DF 100%);
  border-radius: 8px;
}

.podcast .manifesto_heading em {
  color: #AE70C6;
  font-style: italic;
}

.podcast .manifesto_declaration {
  font-size: 23px;
  line-height: 1.35;
  color: #2d1f3d;
  font-weight: 400;
  margin: 0 0 40px;
}

.podcast .manifesto_declaration strong {
  color: #AE70C6;
  font-style: italic;
}

.podcast .manifesto_sub {
  font-size: 18px;
  line-height: 1.55;
  color: #4a3560;
  margin: 0 0 40px;
}

.podcast .manifesto_cta_group {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.podcast .btn_primary {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #AE70C6;
  border: none;
  border-radius: 8px;
  padding: 20px 40px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
  transition: color 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.podcast .btn_primary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #2d1f3d;
  transition: height 0.22s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}

.podcast .btn_primary:hover::after {
  height: 100%;
}

.podcast .btn_primary span {
  position: relative;
  z-index: 1;
}

.podcast .btn_primary:hover {
  box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
  color: #fff;
}

.podcast .btn_primary:focus-visible {
  outline: 3px solid #AE70C6;
  outline-offset: 3px;
}

.podcast .btn_primary:active {
  box-shadow: inset 2px 1px 3px -1px rgba(174,112,198,0.08);
}

.podcast .btn_secondary {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #AE70C6;
  background: transparent;
  border: 2px solid #AE70C6;
  border-radius: 8px;
  padding: 20px 40px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.28s cubic-bezier(0.34,1.56,0.64,1), border-color 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.podcast .btn_secondary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #AE70C6;
  transition: height 0.22s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}

.podcast .btn_secondary:hover::after {
  height: 100%;
}

.podcast .btn_secondary span {
  position: relative;
  z-index: 1;
}

.podcast .btn_secondary:hover {
  color: #fff;
}

.podcast .btn_secondary:focus-visible {
  outline: 3px solid #AE70C6;
  outline-offset: 3px;
}

.podcast .manifesto_image_side {
  flex: 0 0 420px;
  position: relative;
}

.podcast .manifesto_image_frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
}

.podcast .manifesto_image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.podcast .manifesto_image_frame:hover img {
  transform: scale(1.04);
}

.podcast .manifesto_image_frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 3px,
    rgba(174,112,198,0.10) 3px,
    rgba(174,112,198,0.10) 4px
  );
  pointer-events: none;
}

.podcast .corner_bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.podcast .corner_bracket.top_left {
  top: -8px;
  left: -8px;
  border-top: 3px solid #AE70C6;
  border-left: 3px solid #AE70C6;
  border-radius: 8px 0 0 0;
}

.podcast .corner_bracket.top_right {
  top: -8px;
  right: -8px;
  border-top: 3px solid #AE70C6;
  border-right: 3px solid #AE70C6;
  border-radius: 0 8px 0 0;
}

.podcast .corner_bracket.bottom_left {
  bottom: -8px;
  left: -8px;
  border-bottom: 3px solid #AE70C6;
  border-left: 3px solid #AE70C6;
  border-radius: 0 0 0 8px;
}

.podcast .corner_bracket.bottom_right {
  bottom: -8px;
  right: -8px;
  border-bottom: 3px solid #AE70C6;
  border-right: 3px solid #AE70C6;
  border-radius: 0 0 8px 0;
}

.podcast .wavy_line {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 18px;
  pointer-events: none;
  z-index: 2;
}

.podcast .detail_block {
  padding: 80px 20px 80px;
  background: linear-gradient(180deg, #fff 0%, #F8F2F8 100%);
  position: relative;
}

.podcast .detail_inner {
  max-width: 1320px;
  margin: 0 auto;
}

.podcast .detail_asymmetric {
  display: grid;
  grid-template-columns: 3fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.podcast .detail_rich {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.podcast .detail_rich_heading {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b1230;
  margin: 0 0 8px;
}

.podcast .detail_rich_heading em {
  color: #AE70C6;
  font-style: italic;
}

.podcast .detail_paragraph {
  font-size: 18px;
  line-height: 1.55;
  color: #2d1f3d;
  margin: 0;
  counter-increment: para_counter;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.podcast .detail_paragraph_num {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  color: #AE70C6;
  font-style: italic;
  min-width: 28px;
  padding-top: 4px;
}

.podcast .detail_paragraph_body {
  flex: 1 1 0;
}

.podcast .detail_paragraph strong {
  color: #AE70C6;
  font-style: italic;
}

.podcast .metrics_row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  border: 1.5px solid #E5D4DF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
}

.podcast .metric_item {
  flex: 1 1 0;
  padding: 20px;
  text-align: center;
  background: #fff;
  position: relative;
}

.podcast .metric_item + .metric_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 1.5px;
  background: #E5D4DF;
}

.podcast .metric_value {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 800;
  color: #AE70C6;
  display: block;
}

.podcast .metric_label {
  font-size: 15px;
  line-height: 1.35;
  color: #4a3560;
  display: block;
  margin-top: 4px;
}

.podcast .feature_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.podcast .feature_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 2px 1px 3px -1px rgba(174,112,198,0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.podcast .feature_item:hover {
  box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
}

.podcast .feature_expand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(233deg, #E5D4DF 0%, #F8F2F8 100%);
  transition: height 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
  overflow: hidden;
}

.podcast .feature_item:hover .feature_expand {
  height: 100%;
}

.podcast .feature_icon {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(233deg, #AE70C6 0%, #E5D4DF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.podcast .feature_icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.podcast .feature_text {
  flex: 1 1 0;
  position: relative;
  z-index: 1;
}

.podcast .feature_text_name {
  font-size: 18px;
  font-weight: 700;
  color: #1b1230;
  display: block;
  margin-bottom: 4px;
}

.podcast .feature_text_desc {
  font-size: 15px;
  line-height: 1.55;
  color: #4a3560;
}

.podcast .detail_minimalist {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.podcast .detail_mini_label {
  font-size: 15px;
  color: #AE70C6;
  font-style: italic;
  font-weight: 600;
}

.podcast .detail_mini_stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.podcast .detail_mini_stat_num {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b1230;
}

.podcast .detail_mini_stat_desc {
  font-size: 18px;
  line-height: 1.35;
  color: #4a3560;
}

.podcast .detail_mini_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.podcast .detail_mini_link {
  font-size: 15px;
  color: #2d1f3d;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1.5px solid #E5D4DF;
  background: #fff;
  display: block;
  transition: border-color 0.22s cubic-bezier(0.34,1.56,0.64,1), color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.podcast .detail_mini_link:hover {
  border-color: #AE70C6;
  color: #AE70C6;
}

.podcast .detail_mini_link:focus-visible {
  outline: 3px solid #AE70C6;
  outline-offset: 2px;
}

.podcast .detail_divider_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.podcast .detail_divider_col_line {
  width: 2px;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(180deg, #AE70C6 0%, #E5D4DF 60%, transparent 100%);
  border-radius: 8px;
}

@media (max-width: 1280px) {
  .podcast .manifesto_inner {
    gap: 40px;
  }
  .podcast .manifesto_image_side {
    flex: 0 0 320px;
  }
  .podcast .manifesto_heading {
    font-size: 43px;
  }
  .podcast .detail_asymmetric {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .podcast .detail_divider_col {
    display: none;
  }
  .podcast .detail_minimalist {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .podcast .manifesto_inner {
    flex-direction: column;
    gap: 40px;
  }
  .podcast .manifesto_image_side {
    flex: 0 0 auto;
    width: 100%;
  }
  .podcast .manifesto_heading {
    font-size: 31px;
  }
  .podcast .manifesto_declaration {
    font-size: 18px;
  }
  .podcast .manifesto_cta_group {
    flex-direction: column;
    align-items: flex-start;
  }
  .podcast .detail_asymmetric {
    grid-template-columns: 1fr;
  }
  .podcast .detail_divider_col {
    display: none;
  }
  .podcast .detail_rich_heading {
    font-size: 31px;
  }
  .podcast .metrics_row {
    flex-direction: column;
  }
  .podcast .metric_item + .metric_item::before {
    top: 0;
    left: 20px;
    right: 20px;
    width: auto;
    height: 1.5px;
  }
  .podcast .detail_minimalist {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.contact-us {
    background-color: #fff;
    overflow-x: clip;
}

.contact-us .form_panel {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-us .form_lead {
    position: relative;
}

.contact-us .form_lead_tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    color: #AE70C6;
    font-style: italic;
    font-weight: 600;
    border: 1.5px solid #E5D4DF;
    border-radius: 48px;
    padding: 4px 20px;
    margin-bottom: 20px;
}

.contact-us .form_lead_heading {
    font-size: 43px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1332;
    margin-bottom: 20px;
}

.contact-us .form_lead_heading em {
    color: #AE70C6;
    font-style: italic;
}

.contact-us .form_lead_description {
    font-size: 18px;
    line-height: 1.55;
    color: #3d2f4a;
    margin-bottom: 40px;
}

.contact-us .form_lead_description span {
    display: block;
    margin-bottom: 8px;
}

.contact-us .contact_detail_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-us .contact_detail_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.contact-us .contact_detail_icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 1px 3px -1px rgba(174,112,198,0.08);
}

.contact-us .contact_detail_icon svg {
    width: 20px;
    height: 20px;
}

.contact-us .contact_detail_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-us .contact_detail_label {
    font-size: 15px;
    line-height: 1.35;
    color: #9a8aaa;
    font-weight: 500;
}

.contact-us .contact_detail_value {
    font-size: 18px;
    line-height: 1.35;
    color: #1e1332;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.contact-us .contact_detail_value:hover {
    color: #AE70C6;
}

.contact-us .form_image_strip {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-top: 40px;
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
}

.contact-us .form_image_strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: imageFadeIn 0.8s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes imageFadeIn {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

.contact-us .form_image_strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(233deg, rgba(174,112,198,0.35), rgba(229,212,223,0.15));
    pointer-events: none;
}

.contact-us .form_column {
    background: #F8F2F8;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
    position: relative;
}

.contact-us .form_column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(233deg, #AE70C6, #E5D4DF);
    border-radius: 0 0 8px 8px;
}

.contact-us .form_column_heading {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    color: #1e1332;
    margin-bottom: 8px;
}

.contact-us .form_column_sub {
    font-size: 15px;
    line-height: 1.55;
    color: #7a6888;
    margin-bottom: 40px;
}

.contact-us .field_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-us .field_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-us .field_group label {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #3d2f4a;
}

.contact-us .field_group input[type="text"],
.contact-us .field_group input[type="email"],
.contact-us .field_group input[type="tel"] {
    width: 100%;
    padding: 12px 20px;
    border: 1.5px solid #E5D4DF;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    line-height: 1.35;
    color: #1e1332;
    outline: none;
    transition: border-color 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1);
    box-sizing: border-box;
}

.contact-us .field_group input::placeholder {
    color: #b8a8c8;
}

.contact-us .field_group input:focus {
    border-color: #AE70C6;
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
}

.contact-us .field_group input:focus-visible {
    outline: 2px solid #AE70C6;
    outline-offset: 2px;
}

.contact-us .interest_group_label {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #3d2f4a;
    margin-bottom: 8px;
    display: block;
}

.contact-us .interest_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-us .interest_option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-us .interest_option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #AE70C6;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-us .interest_option_text {
    font-size: 15px;
    line-height: 1.35;
    color: #3d2f4a;
}

.contact-us .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1.5px solid #E5D4DF;
}

.contact-us .privacy_row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #AE70C6;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-us .privacy_text {
    font-size: 15px;
    line-height: 1.55;
    color: #7a6888;
}

.contact-us .privacy_text a {
    color: #AE70C6;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.contact-us .privacy_text a:hover {
    color: #8a4ea8;
}

.contact-us .submit_button {
    width: 100%;
    padding: 16px 40px;
    background: #AE70C6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
}

.contact-us .submit_button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #1e1332;
    transition: height 0.28s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.contact-us .submit_button:hover::before {
    height: 100%;
}

.contact-us .submit_button:hover {
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
}

.contact-us .submit_button:active {
    box-shadow: inset 2px 1px 3px -1px rgba(174,112,198,0.08);
}

.contact-us .submit_button span {
    position: relative;
    z-index: 1;
}

.contact-us .submit_button:focus-visible {
    outline: 2px solid #AE70C6;
    outline-offset: 3px;
}

.contact-us .divider_dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.contact-us .divider_dots span {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #E5D4DF;
    display: block;
}

.contact-us .divider_dots span:nth-child(2) {
    background: #AE70C6;
}

.contact-us .podcast_panel {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.contact-us .podcast_inner {
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-us .podcast_inner::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 48px;
    border: 2px dashed #AE70C6;
    opacity: 0.25;
    pointer-events: none;
    transform: rotate(15deg);
}

.contact-us .podcast_image_frame {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
}

.contact-us .podcast_image_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-us .podcast_text_area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us .podcast_eyebrow {
    font-size: 15px;
    line-height: 1.35;
    color: #AE70C6;
    font-style: italic;
    font-weight: 600;
}

.contact-us .podcast_heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1332;
}

.contact-us .podcast_body {
    font-size: 18px;
    line-height: 1.55;
    color: #3d2f4a;
}

.contact-us .podcast_body strong {
    color: #AE70C6;
    font-style: italic;
}

.contact-us .podcast_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
    background: #1e1332;
    border-radius: 8px;
    padding: 12px 20px;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
}

.contact-us .podcast_link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #AE70C6;
    transition: height 0.25s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.contact-us .podcast_link:hover::before {
    height: 100%;
}

.contact-us .podcast_link:hover {
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
}

.contact-us .podcast_link span {
    position: relative;
    z-index: 1;
}

.contact-us .podcast_link:focus-visible {
    outline: 2px solid #AE70C6;
    outline-offset: 3px;
}

.contact-us .dashed_path_decoration {
    position: absolute;
    bottom: 20px;
    left: 20px;
    pointer-events: none;
    opacity: 0.18;
}

@keyframes borderTrace {
    0% { stroke-dashoffset: 600; }
    100% { stroke-dashoffset: 0; }
}

.contact-us .border_trace_svg rect {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: borderTrace 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.2s forwards;
}

@media (max-width: 1280px) {
    .contact-us .form_panel {
        gap: 40px;
        padding: 80px 20px 40px;
    }
    .contact-us .podcast_panel {
        padding: 40px 20px 80px;
    }
    .contact-us .podcast_inner {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media (max-width: 768px) {
    .contact-us .form_panel {
        grid-template-columns: 1fr;
        padding: 40px 20px 20px;
        gap: 40px;
    }
    .contact-us .form_lead_heading {
        font-size: 31px;
    }
    .contact-us .field_row {
        grid-template-columns: 1fr;
    }
    .contact-us .interest_grid {
        grid-template-columns: 1fr;
    }
    .contact-us .form_image_strip {
        display: none;
    }
    .contact-us .podcast_panel {
        padding: 20px 20px 40px;
    }
    .contact-us .podcast_inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-us .podcast_image_frame {
        display: none;
    }
    .contact-us .podcast_heading {
        font-size: 23px;
    }
    .contact-us .form_column {
        padding: 20px;
    }
}

.services {
    background-color: #fff;
    color: #1a1a2e;
    overflow-x: clip;
    position: relative;
}

.services .drift_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.services .drift_background::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(174, 112, 198, 0.07);
    border-radius: 50%;
    top: -100px;
    left: -200px;
    animation: drift_move 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.services .drift_background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(229, 212, 223, 0.09);
    border-radius: 50%;
    bottom: 10%;
    right: -100px;
    animation: drift_move_alt 18s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

@keyframes drift_move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(180px, 120px) scale(1.2); }
}

@keyframes drift_move_alt {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-140px, -80px) scale(0.9); }
}

.services .page_lead {
    position: relative;
    z-index: 1;
    background: linear-gradient(233deg, #E5D4DF 0%, #F8F2F8 45%, #f0e8f4 100%);
    padding: 80px 20px;
    overflow: hidden;
}

.services .page_lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #AE70C6 0%, #E5D4DF 60%, transparent 100%);
}

.services .page_lead_inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.services .page_lead_text {
    flex: 1;
    min-width: 0;
}

.services .page_lead_text h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    color: #2d1a3e;
    margin: 0 0 20px 0;
}

.services .page_lead_text h1 em {
    color: #AE70C6;
    font-style: italic;
}

.services .page_lead_text p {
    font-size: 18px;
    line-height: 1.55;
    color: #4a3558;
    margin: 0 0 40px 0;
    max-width: 520px;
}

.services .lead_badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: rgba(174, 112, 198, 0.12);
    border: 1px solid rgba(174, 112, 198, 0.3);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 15px;
    color: #7a3fa0;
    font-weight: 600;
}

.services .page_lead_visual {
    flex: 0 0 460px;
    position: relative;
}

.services .lead_image_frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 10px 36px -1px rgba(174, 112, 198, 0.10);
}

.services .lead_image_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .lead_image_frame:hover img {
    transform: scale(1.04);
}

.services .lead_light_leak {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse at top right, rgba(248, 242, 248, 0.9) 0%, rgba(229, 212, 223, 0.4) 40%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.services .lead_counter {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #AE70C6;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10);
    z-index: 3;
    min-width: 110px;
    text-align: center;
}

.services .lead_counter .counter_number {
    font-size: 43px;
    font-weight: 800;
    line-height: 1.1;
    display: block;
}

.services .lead_counter .counter_label {
    font-size: 15px;
    line-height: 1.35;
    opacity: 0.88;
    display: block;
    margin-top: 4px;
}

.services .polygon_accent {
    position: absolute;
    bottom: 40px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(174, 112, 198, 0.08);
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
    pointer-events: none;
}

.services .catalog_section {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    background-color: #fff;
}

.services .catalog_inner {
    max-width: 1320px;
    margin: 0 auto;
}

.services .catalog_header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 80px;
    margin-bottom: 80px;
}

.services .catalog_header_text {
    flex: 1;
    min-width: 0;
}

.services .catalog_header_text h2 {
    font-size: 43px;
    line-height: 1.1;
    font-weight: 800;
    color: #2d1a3e;
    margin: 0 0 20px 0;
}

.services .catalog_header_text h2 em {
    color: #AE70C6;
    font-style: italic;
}

.services .catalog_header_aside {
    flex: 0 0 320px;
    font-size: 18px;
    line-height: 1.55;
    color: #4a3558;
}

.services .service_alternating {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.services .service_item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    position: relative;
}

.services .service_item.align_right {
    flex-direction: row-reverse;
}

.services .service_item_number {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
}

.services .service_item_number span {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: rgba(174, 112, 198, 0.18);
    display: block;
}

.services .service_item_body {
    flex: 1;
    min-width: 0;
    background: #F8F2F8;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    box-shadow: 2px 1px 3px -1px rgba(174, 112, 198, 0.08);
    transition: box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .service_item_body:hover {
    box-shadow: 2px 10px 36px -1px rgba(174, 112, 198, 0.10);
}

.services .service_item_body h3 {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
    color: #2d1a3e;
    margin: 0 0 20px 0;
}

.services .service_item_body h3 em {
    color: #AE70C6;
    font-style: italic;
}

.services .service_paragraph {
    font-size: 18px;
    line-height: 1.55;
    color: #3a2550;
    margin: 0 0 20px 0;
}

.services .service_paragraph_number {
    font-weight: 700;
    color: #AE70C6;
    margin-right: 8px;
}

.services .service_details_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.services .service_detail_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.services .detail_icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.services .detail_icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.services .service_detail_item span {
    font-size: 15px;
    line-height: 1.55;
    color: #4a3558;
}

.services .service_item_visual {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 20px;
}

.services .service_stat_block {
    background: #AE70C6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .service_stat_block:hover {
    transform: translateY(-4px);
}

.services .service_stat_block .stat_value {
    font-size: 43px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    display: block;
}

.services .service_stat_block .stat_desc {
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255,255,255,0.88);
    display: block;
    margin-top: 4px;
}

.services .service_stat_secondary {
    background: #E5D4DF;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.services .service_stat_secondary .stat_value {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.1;
    color: #2d1a3e;
    display: block;
}

.services .service_stat_secondary .stat_desc {
    font-size: 15px;
    line-height: 1.35;
    color: #4a3558;
    display: block;
    margin-top: 4px;
}

.services .complex_service_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    background: linear-gradient(233deg, rgba(229, 212, 223, 0.3) 0%, rgba(248, 242, 248, 0.5) 100%);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(174, 112, 198, 0.15);
}

.services .complex_table_side h4 {
    font-size: 23px;
    font-weight: 700;
    color: #2d1a3e;
    margin: 0 0 20px 0;
    line-height: 1.35;
}

.services .data_table {
    width: 100%;
    border-collapse: collapse;
}

.services .data_table th {
    font-size: 15px;
    font-weight: 700;
    color: #7a3fa0;
    text-align: left;
    padding: 8px 20px 8px 0;
    border-bottom: 2px solid rgba(174, 112, 198, 0.25);
}

.services .data_table td {
    font-size: 15px;
    color: #3a2550;
    padding: 8px 20px 8px 0;
    border-bottom: 1px solid rgba(174, 112, 198, 0.1);
    line-height: 1.35;
    vertical-align: top;
}

.services .data_table tr:last-child td {
    border-bottom: none;
}

.services .data_table .tag_cell {
    display: inline-block;
    background: rgba(174, 112, 198, 0.12);
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 15px;
    color: #7a3fa0;
    font-weight: 600;
}

.services .complex_narrative_side h4 {
    font-size: 23px;
    font-weight: 700;
    color: #2d1a3e;
    margin: 0 0 20px 0;
    line-height: 1.35;
}

.services .complex_narrative_side p {
    font-size: 15px;
    line-height: 1.55;
    color: #4a3558;
    margin: 0 0 20px 0;
}

.services .complex_narrative_side p:last-child {
    margin-bottom: 0;
}

.services .team_strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(174, 112, 198, 0.06);
    border-radius: 8px;
}

.services .portrait_pair {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.services .portrait_circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #AE70C6;
    flex-shrink: 0;
    box-shadow: 2px 1px 3px -1px rgba(174, 112, 198, 0.08);
}

.services .portrait_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.services .team_strip_text {
    flex: 1;
    min-width: 0;
}

.services .team_strip_text strong {
    font-size: 15px;
    color: #2d1a3e;
    display: block;
    font-weight: 700;
}

.services .team_strip_text span {
    font-size: 15px;
    color: #4a3558;
    line-height: 1.35;
}

.services .divider_brush {
    position: relative;
    height: 40px;
    overflow: hidden;
    z-index: 1;
}

.services .divider_brush svg {
    width: 100%;
    height: 40px;
    display: block;
}

.services .rating_strip {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    box-shadow: 2px 1px 3px -1px rgba(174, 112, 198, 0.08);
    margin-top: 20px;
}

.services .rating_stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.services .star_icon {
    width: 16px;
    height: 16px;
}

.services .rating_text {
    font-size: 15px;
    color: #4a3558;
    font-weight: 600;
}

.services .cta_row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.services .btn_primary {
    display: inline-block;
    padding: 20px 40px;
    background: #AE70C6;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 48px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10);
    transition: box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.services .btn_primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #2d1a3e;
    transition: height 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
    border-radius: 48px;
}

.services .btn_primary:hover::after {
    height: 100%;
}

.services .btn_primary:hover {
    box-shadow: 2px 10px 36px -1px rgba(174, 112, 198, 0.10);
    color: #fff;
}

.services .btn_primary:focus-visible {
    outline: 3px solid #AE70C6;
    outline-offset: 3px;
}

.services .btn_primary:active {
    box-shadow: inset 2px 1px 3px -1px rgba(174, 112, 198, 0.08);
}

.services .btn_secondary {
    display: inline-block;
    padding: 20px 40px;
    background: transparent;
    color: #2d1a3e;
    font-size: 18px;
    font-weight: 700;
    border-radius: 48px;
    text-decoration: none;
    border: 2px solid rgba(174, 112, 198, 0.4);
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.services .btn_secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #F8F2F8;
    transition: height 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
    border-radius: 48px;
}

.services .btn_secondary:hover::after {
    height: 100%;
}

.services .btn_secondary:hover {
    border-color: #AE70C6;
    color: #2d1a3e;
}

.services .btn_secondary:focus-visible {
    outline: 3px solid #AE70C6;
    outline-offset: 3px;
}

@media (max-width: 1280px) {
    .services .page_lead_inner {
        gap: 40px;
    }
    .services .page_lead_visual {
        flex: 0 0 360px;
    }
    .services .catalog_header {
        gap: 40px;
    }
    .services .catalog_header_aside {
        flex: 0 0 260px;
    }
    .services .service_item_visual {
        flex: 0 0 160px;
    }
}

@media (max-width: 768px) {
    .services .page_lead {
        padding: 40px 20px 80px;
    }
    .services .page_lead_inner {
        flex-direction: column;
        gap: 40px;
    }
    .services .page_lead_visual {
        flex: none;
        width: 100%;
    }
    .services .lead_counter {
        bottom: -16px;
        left: 16px;
    }
    .services .page_lead_text h1 {
        font-size: 43px;
    }
    .services .catalog_section {
        padding: 40px 20px;
    }
    .services .catalog_header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .services .catalog_header_aside {
        flex: none;
    }
    .services .catalog_header_text h2 {
        font-size: 31px;
    }
    .services .service_alternating {
        gap: 40px;
    }
    .services .service_item,
    .services .service_item.align_right {
        flex-direction: column;
        gap: 20px;
    }
    .services .service_item_number {
        flex: none;
        flex-direction: row;
        padding-top: 0;
    }
    .services .service_item_number span {
        font-size: 43px;
    }
    .services .service_item_body {
        padding: 20px;
    }
    .services .service_item_body h3 {
        font-size: 23px;
    }
    .services .service_item_visual {
        flex: none;
        flex-direction: row;
        justify-content: flex-start;
        padding-top: 0;
    }
    .services .service_stat_block,
    .services .service_stat_secondary {
        flex: 1;
    }
    .services .service_details_grid {
        grid-template-columns: 1fr;
    }
    .services .complex_service_block {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .services .cta_row {
        flex-direction: column;
        align-items: flex-start;
    }
    .services .polygon_accent {
        display: none;
    }
}

.root {
    overflow-x: hidden;
}

.root .bento_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.root .bento_cell_main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background: #F8F2F8;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
}

.root .bento_cell_main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(174,112,198,0.06) 0px,
        rgba(174,112,198,0.06) 2px,
        transparent 2px,
        transparent 14px
    );
    pointer-events: none;
}

.root .bento_cell_image {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    border-radius: 8px;
    overflow: hidden;
    min-height: 360px;
}

.root .bento_cell_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
    aspect-ratio: 4/3;
}

.root .bento_cell_sub {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    border-radius: 8px;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.root .bento_heading {
    font-size: 43px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
}

.root .bento_heading .accent_word {
    color: #AE70C6;
    font-style: italic;
}

.root .bento_tagline {
    font-size: 18px;
    line-height: 1.35;
    color: #3d3450;
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 480px;
}

.root .bento_stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.root .bento_stat_number {
    font-size: 43px;
    font-weight: 800;
    line-height: 1.1;
    color: #AE70C6;
}

.root .bento_stat_label {
    font-size: 15px;
    line-height: 1.35;
    color: #3d3450;
}

.root .bento_stat_divider {
    width: 1px;
    height: 48px;
    background: rgba(174,112,198,0.3);
}

.root .recognition_band {
    background: #fff;
    padding: 80px 20px;
    position: relative;
}

.root .recognition_band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='6'%3E%3Cpolyline points='0,6 2,0 4,6 6,0 8,6 10,0 12,6 14,0 16,6 18,0 20,6' fill='none' stroke='%23AE70C6' stroke-width='1.2'/%3E%3C/svg%3E") repeat-x center;
}

.root .recognition_inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.root .recognition_label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #AE70C6;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.root .recognition_heading {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin: 0 0 20px 0;
}

.root .recognition_body {
    font-size: 18px;
    line-height: 1.55;
    color: #3d3450;
    margin: 0;
}

.root .recognition_body span.em_accent {
    color: #AE70C6;
    font-style: italic;
}

.root .cert_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.root .cert_item {
    border: 1.5px dashed #AE70C6;
    border-radius: 8px;
    padding: 20px;
    background: #F8F2F8;
    transition: background 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1);
    cursor: default;
}

.root .cert_item:hover {
    background: #E5D4DF;
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
}

.root .cert_item_icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.root .cert_item_name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    line-height: 1.35;
}

.root .cert_item_desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3d3450;
    margin: 0;
}

.root .scale_section {
    padding: 80px 20px;
    background: linear-gradient(233deg, #AE70C6 0%, #E5D4DF 55%, #F8F2F8 100%);
    position: relative;
    animation: edge_glow 3.5s cubic-bezier(0.45,0,0.55,1) infinite alternate;
}

@keyframes edge_glow {
    0% {
        box-shadow: 0 0 0px 0px rgba(174,112,198,0.0), inset 0 0 0px 0px rgba(174,112,198,0.0);
    }
    100% {
        box-shadow: 0 0 48px 8px rgba(174,112,198,0.18), inset 0 0 32px 0px rgba(174,112,198,0.08);
    }
}

.root .scale_inner {
    max-width: 1320px;
    margin: 0 auto;
}

.root .scale_top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.root .scale_metric {
    background: rgba(255,255,255,0.72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 2px 1px 3px -1px rgba(174,112,198,0.08);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.root .scale_metric:hover {
    transform: translateY(-4px);
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
}

.root .scale_metric_value {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: #AE70C6;
}

.root .scale_metric_unit {
    font-size: 23px;
    font-weight: 700;
    color: #AE70C6;
}

.root .scale_metric_desc {
    font-size: 15px;
    line-height: 1.35;
    color: #3d3450;
}

.root .scale_bottom {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.root .scale_image_wrap {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.root .scale_image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.root .scale_text_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.root .scale_heading {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin: 0;
}

.root .scale_paragraph {
    font-size: 18px;
    line-height: 1.55;
    color: #3d3450;
    margin: 0;
}

.root .scale_paragraph.large_line {
    font-size: 23px;
    font-weight: 700;
    color: #1a1a2e;
}

.root .scale_paragraph span.em_accent {
    color: #AE70C6;
    font-style: italic;
}

.root .example_section {
    padding: 80px 20px;
    background: #fff;
    position: relative;
}

.root .example_section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='6'%3E%3Cpolyline points='0,6 2,0 4,6 6,0 8,6 10,0 12,6 14,0 16,6 18,0 20,6' fill='none' stroke='%23E5D4DF' stroke-width='1.5'/%3E%3C/svg%3E") repeat-x center;
}

.root .example_inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.root .example_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.root .example_label {
    font-size: 15px;
    font-weight: 700;
    color: #AE70C6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.root .example_heading {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin: 0;
}

.root .example_paragraph {
    font-size: 18px;
    line-height: 1.55;
    color: #3d3450;
    margin: 0;
    counter-increment: para_count;
    padding-left: 28px;
    position: relative;
}

.root .example_paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    counter-reset: para_count;
}

.root .example_paragraph::before {
    content: counter(para_count, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    font-weight: 700;
    color: #AE70C6;
    line-height: 1.8;
}

.root .example_paragraph span.em_accent {
    color: #AE70C6;
    font-style: italic;
}

.root .example_aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.root .example_image_wrap {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.root .example_image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.root .example_detail_box {
    border: 1.5px dashed #AE70C6;
    border-radius: 8px;
    padding: 20px;
    background: #F8F2F8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.root .example_detail_heading {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.root .example_detail_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.root .example_detail_list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    align-items: start;
    font-size: 15px;
    line-height: 1.55;
    color: #3d3450;
}

.root .example_detail_list li svg {
    margin-top: 3px;
    flex-shrink: 0;
}

.root .audience_section {
    padding: 80px 20px;
    background: #F8F2F8;
    position: relative;
    overflow: hidden;
}

.root .audience_bg_pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(174,112,198,0.10) 1px, transparent 0),
        radial-gradient(circle at 9px 9px, rgba(174,112,198,0.06) 1px, transparent 0);
    background-size: 18px 18px, 18px 18px;
    pointer-events: none;
}

.root .audience_inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.root .audience_top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: end;
}

.root .audience_heading {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin: 0;
}

.root .audience_heading span.em_accent {
    color: #AE70C6;
    font-style: italic;
}

.root .audience_intro {
    font-size: 18px;
    line-height: 1.55;
    color: #3d3450;
    margin: 0;
}

.root .audience_profiles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.root .profile_card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 1px 3px -1px rgba(174,112,198,0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1), transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
}

.root .profile_card:hover {
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
    transform: translateY(-4px);
}

.root .profile_card_portrait {
    width: 100%;
    aspect-ratio: 5/7;
    object-fit: cover;
    object-position: center;
    display: block;
}

.root .profile_card_body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.root .profile_card_name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.35;
}

.root .profile_card_role {
    font-size: 15px;
    color: #AE70C6;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

.root .profile_card_story {
    font-size: 15px;
    line-height: 1.55;
    color: #3d3450;
    margin: 0;
}

.root .profile_card_no_portrait {
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 1px 3px -1px rgba(174,112,198,0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1), transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.root .profile_card_no_portrait:hover {
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
    transform: translateY(-4px);
}

.root .profile_no_portrait_placeholder {
    width: 100%;
    aspect-ratio: 5/7;
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.root .profile_no_portrait_placeholder svg {
    opacity: 0.4;
}

.root .checkerboard_hover {
    position: relative;
    overflow: hidden;
}

.root .checkerboard_hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(174,112,198,0.12) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(174,112,198,0.12) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(174,112,198,0.12) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(174,112,198,0.12) 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
    opacity: 0;
    transition: opacity 0.28s cubic-bezier(0.34,1.56,0.64,1);
    pointer-events: none;
    border-radius: 8px;
}

.root .checkerboard_hover:hover::after {
    opacity: 1;
}

.root .audience_link {
    display: inline-block;
    margin-top: 40px;
    background: #AE70C6;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
}

.root .audience_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #1a1a2e;
    transition: height 0.25s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.root .audience_link:hover::before {
    height: 100%;
}

.root .audience_link:hover {
    color: #fff;
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
}

.root .audience_link span {
    position: relative;
    z-index: 1;
}

.root .audience_link:focus-visible {
    outline: 3px solid #AE70C6;
    outline-offset: 3px;
}

@media (max-width: 1280px) {
    .root .bento_grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .root .bento_cell_main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .root .bento_cell_image {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
    }
    .root .bento_cell_sub {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .root .recognition_inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .root .scale_top {
        grid-template-columns: 1fr 1fr;
    }
    .root .scale_bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .root .example_inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .root .audience_profiles {
        grid-template-columns: 1fr 1fr;
    }
    .root .audience_top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .root .bento_grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .root .bento_cell_main {
        grid-column: 1;
        grid-row: auto;
        min-height: 240px;
        padding: 20px;
    }
    .root .bento_cell_image {
        grid-column: 1;
        grid-row: auto;
        min-height: 220px;
    }
    .root .bento_cell_sub {
        grid-column: 1;
        grid-row: auto;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }
    .root .bento_heading {
        font-size: 31px;
    }
    .root .bento_stat_number {
        font-size: 31px;
    }
    .root .bento_stat_divider {
        display: none;
    }
    .root .recognition_band {
        padding: 40px 20px;
    }
    .root .cert_grid {
        grid-template-columns: 1fr;
    }
    .root .scale_section {
        padding: 40px 20px;
    }
    .root .scale_top {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .root .scale_metric_value {
        font-size: 43px;
    }
    .root .example_section {
        padding: 40px 20px;
    }
    .root .audience_section {
        padding: 40px 20px;
    }
    .root .audience_profiles {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .root .scale_heading {
        font-size: 23px;
    }
    .root .example_heading {
        font-size: 23px;
    }
    .root .audience_heading {
        font-size: 23px;
    }
}

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

.about_us_page .about_us_row {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


.about_us_page .panoramic_header {
    background: #F8F2F8;
    padding: 80px 20px;
    position: relative;
}

@keyframes brightness_pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.93; }
}

.about_us_page .panoramic_header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(233deg, #E5D4DF 0%, #F8F2F8 100%);
    animation: brightness_pulse 7s ease-in-out infinite;
    pointer-events: none;
}

.about_us_page .panoramic_header::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 48px;
    border: 1px solid rgba(174, 112, 198, 0.08);
    pointer-events: none;
}

.about_us_page .header_grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.about_us_page .header_text_column {
    flex: 1 1 0;
    min-width: 0;
}

.about_us_page .header_image_column {
    flex: 0 0 480px;
    position: relative;
}

.about_us_page .bracket_frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about_us_page .bracket_frame::before,
.about_us_page .bracket_frame::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 2;
    pointer-events: none;
}

.about_us_page .bracket_frame::before {
    top: 12px;
    left: 12px;
    border-top: 2px solid rgba(174, 112, 198, 0.7);
    border-left: 2px solid rgba(174, 112, 198, 0.7);
}

.about_us_page .bracket_frame::after {
    bottom: 12px;
    right: 12px;
    border-bottom: 2px solid rgba(174, 112, 198, 0.7);
    border-right: 2px solid rgba(174, 112, 198, 0.7);
}

.about_us_page .header_image_column .bracket_inner_corners {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.about_us_page .header_image_column .bracket_inner_corners::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-bottom: 2px solid rgba(174, 112, 198, 0.7);
    border-left: 2px solid rgba(174, 112, 198, 0.7);
}

.about_us_page .header_image_column .bracket_inner_corners::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-top: 2px solid rgba(174, 112, 198, 0.7);
    border-right: 2px solid rgba(174, 112, 198, 0.7);
}

.about_us_page .header_photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    filter: brightness(0.88);
    transition: filter 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.about_us_page .header_photo:hover {
    filter: brightness(1.04);
}

.about_us_page .vignette_overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, transparent 40%, rgba(174, 112, 198, 0.18) 100%);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

.about_us_page .eyebrow_label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    color: #AE70C6;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 4px 20px;
    border: 1px solid rgba(174, 112, 198, 0.3);
    border-radius: 48px;
    background: rgba(174, 112, 198, 0.06);
}

.about_us_page .main_heading {
    font-size: 43px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1320;
    margin: 0 0 20px 0;
}

.about_us_page .header_description {
    font-size: 18px;
    line-height: 1.55;
    color: #3d2b47;
    margin: 0 0 40px 0;
    max-width: 520px;
}

.about_us_page .founded_note {
    font-size: 15px;
    line-height: 1.35;
    color: #7a5a8a;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.about_us_page .founded_dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #AE70C6;
    flex-shrink: 0;
}


.about_us_page .story_process {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
}

.about_us_page .story_process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, #F8F2F8 0%, transparent 100%);
    pointer-events: none;
}

.about_us_page .story_process::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 340px;
    height: 340px;
    border-radius: 48px;
    border: 1px solid rgba(229, 212, 223, 0.25);
    pointer-events: none;
    transform: rotate(20deg);
}

.about_us_page .story_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about_us_page .story_left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about_us_page .story_heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1320;
    margin: 0 0 20px 0;
}

.about_us_page .numbered_paragraph {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.about_us_page .paragraph_number {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #AE70C6;
    flex-shrink: 0;
    width: 28px;
    padding-top: 2px;
}

.about_us_page .paragraph_body {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2b47;
    margin: 0;
}

.about_us_page .paragraph_body em {
    color: #AE70C6;
    font-style: italic;
}

.about_us_page .story_images_stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about_us_page .stacked_photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    filter: brightness(0.88);
    transition: filter 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.about_us_page .stacked_photo:hover {
    filter: brightness(1.05);
}

.about_us_page .photo_pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.about_us_page .team_values {
    padding: 80px 20px;
    background: linear-gradient(233deg, #E5D4DF 0%, #F8F2F8 100%);
    position: relative;
}

.about_us_page .team_values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, #ffffff 0%, transparent 100%);
    pointer-events: none;
}

.about_us_page .circle_decor_one {
    position: absolute;
    top: 40px;
    right: 80px;
    width: 200px;
    height: 200px;
    border-radius: 48px;
    border: 1px solid rgba(174, 112, 198, 0.1);
    pointer-events: none;
}

.about_us_page .circle_decor_two {
    position: absolute;
    bottom: 80px;
    left: 40px;
    width: 120px;
    height: 120px;
    border-radius: 48px;
    border: 1px solid rgba(174, 112, 198, 0.08);
    pointer-events: none;
}

.about_us_page .team_values_inner {
    position: relative;
    z-index: 1;
}

.about_us_page .team_section_label {
    font-size: 15px;
    line-height: 1.35;
    color: #7a5a8a;
    font-weight: 600;
    margin-bottom: 8px;
}

.about_us_page .team_heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1320;
    margin: 0 0 40px 0;
}

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

.about_us_page .team_members_column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about_us_page .person_card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255,255,255,0.72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10);
    border: 1px solid rgba(229, 212, 223, 0.5);
    transition: box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.about_us_page .person_card:hover {
    box-shadow: 2px 10px 36px -1px rgba(174, 112, 198, 0.10);
    border-color: rgba(174, 112, 198, 0.4);
}

.about_us_page .person_card:focus-within {
    outline: 2px solid #AE70C6;
    outline-offset: 2px;
}

.about_us_page .portrait_crop {
    flex-shrink: 0;
    width: 72px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.about_us_page .portrait_crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.88);
    transition: filter 0.28s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.about_us_page .portrait_crop img:hover {
    filter: brightness(1.05);
}

.about_us_page .person_info {
    flex: 1 1 0;
    min-width: 0;
}

.about_us_page .person_name {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1e1320;
    margin: 0 0 4px 0;
}

.about_us_page .person_role {
    font-size: 15px;
    line-height: 1.35;
    color: #AE70C6;
    font-style: italic;
    margin: 0 0 8px 0;
}

.about_us_page .person_bio {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2b47;
    margin: 0;
}

.about_us_page .no_portrait_card {
    background: rgba(255,255,255,0.72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10);
    border: 1px solid rgba(229, 212, 223, 0.5);
}

.about_us_page .no_portrait_initials {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background: linear-gradient(233deg, #AE70C6, #E5D4DF);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.about_us_page .no_portrait_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.about_us_page .values_column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about_us_page .values_block {
    background: rgba(255,255,255,0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 1px 3px -1px rgba(174, 112, 198, 0.08);
    border: 1px solid rgba(229, 212, 223, 0.4);
}

.about_us_page .values_block_heading {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1e1320;
    margin: 0 0 20px 0;
}

.about_us_page .values_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about_us_page .values_list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.55;
    color: #3d2b47;
}

.about_us_page .check_icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.about_us_page .steps_block {
    background: rgba(255,255,255,0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 1px 3px -1px rgba(174, 112, 198, 0.08);
    border: 1px solid rgba(229, 212, 223, 0.4);
}

.about_us_page .steps_heading {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1e1320;
    margin: 0 0 20px 0;
}

.about_us_page .steps_vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about_us_page .step_item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.about_us_page .step_line_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 28px;
}

.about_us_page .step_number_badge {
    width: 28px;
    height: 28px;
    border-radius: 48px;
    background: #AE70C6;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.about_us_page .step_connector {
    width: 2px;
    flex: 1 1 0;
    background: linear-gradient(180deg, #AE70C6 0%, rgba(174,112,198,0.15) 100%);
    min-height: 20px;
}

.about_us_page .step_item:last-child .step_connector {
    display: none;
}

.about_us_page .step_content {
    padding-bottom: 20px;
    flex: 1 1 0;
}

.about_us_page .step_item:last-child .step_content {
    padding-bottom: 0;
}

.about_us_page .step_title {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1e1320;
    margin: 0 0 4px 0;
}

.about_us_page .step_desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2b47;
    margin: 0;
}


@media (max-width: 1280px) {
    .about_us_page .header_image_column {
        flex: 0 0 380px;
    }
    .about_us_page .header_grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about_us_page .panoramic_header {
        padding: 40px 20px;
    }
    .about_us_page .header_grid {
        flex-direction: column;
        gap: 40px;
    }
    .about_us_page .header_image_column {
        flex: none;
        width: 100%;
    }
    .about_us_page .header_description {
        max-width: 100%;
    }
    .about_us_page .main_heading {
        font-size: 31px;
    }
    .about_us_page .story_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about_us_page .story_process {
        padding: 40px 20px;
    }
    .about_us_page .team_values {
        padding: 40px 20px;
    }
    .about_us_page .team_layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about_us_page .photo_pair {
        grid-template-columns: 1fr;
    }
    .about_us_page .circle_decor_one,
    .about_us_page .circle_decor_two {
        display: none;
    }
}

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

.journal * {
    box-sizing: border-box;
}

.journal .split_header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

.journal .split_header_text {
    background: #AE70C6;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.journal .split_header_text::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 28px;
    height: 28px;
    border-top: 2px solid #E5D4DF;
    border-left: 2px solid #E5D4DF;
    border-radius: 8px 0 0 0;
}

.journal .split_header_text::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    border-bottom: 2px solid #E5D4DF;
    border-right: 2px solid #E5D4DF;
    border-radius: 0 0 8px 0;
}

.journal .split_header_label {
    font-size: 15px;
    color: #E5D4DF;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.journal .split_header_heading {
    font-size: 43px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.journal .split_header_sub {
    font-size: 18px;
    line-height: 1.55;
    color: #E5D4DF;
    margin: 0;
}

.journal .split_header_image {
    position: relative;
    overflow: hidden;
}

.journal .split_header_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.journal .split_header_image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(233deg, rgba(174,112,198,0.55), rgba(229,212,223,0.3));
}

.journal .dots_row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 20px 0 0 0;
}

.journal .dots_row span {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #E5D4DF;
    display: block;
}

.journal .dots_row span:first-child {
    background: #AE70C6;
    width: 18px;
}

.journal .posts_grid_area {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px;
}

.journal .posts_grid_area_heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.journal .posts_divider {
    width: 60px;
    height: 2px;
    background: #AE70C6;
    margin: 0 0 40px 0;
}

.journal .posts_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.journal .post_card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 5px 14px -1px rgba(174,112,198,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.28s cubic-bezier(0.34,1.56,0.64,1), transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.journal .post_card:hover {
    box-shadow: 2px 10px 36px -1px rgba(174,112,198,0.10);
    transform: translateY(-4px);
}

.journal .post_card_image_wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.journal .post_card_image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}

.journal .post_card:hover .post_card_image_wrap img {
    transform: scale(1.04);
}

.journal .post_card_tag_overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #AE70C6;
    color: #fff;
    font-size: 15px;
    padding: 4px 20px;
    border-radius: 48px;
    font-weight: 600;
}

.journal .post_card_body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.journal .post_card_meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.journal .post_card_category {
    font-size: 15px;
    color: #AE70C6;
    font-style: italic;
    font-weight: 600;
}

.journal .post_card_readtime {
    font-size: 15px;
    color: #8a7a90;
}

.journal .post_card_dot {
    width: 4px;
    height: 4px;
    border-radius: 48px;
    background: #E5D4DF;
    display: inline-block;
}

.journal .post_card_title {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.journal .post_card_subtitle {
    font-size: 15px;
    line-height: 1.55;
    color: #5a4f62;
    margin: 0;
}

.journal .post_card_description {
    font-size: 15px;
    line-height: 1.55;
    color: #5a4f62;
    margin: 0;
    flex: 1;
}

.journal .post_card_footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #E5D4DF;
    margin-top: 8px;
}

.journal .post_card_author {
    font-size: 15px;
    color: #5a4f62;
    font-weight: 600;
}

.journal .post_card_link {
    display: inline-block;
    font-size: 15px;
    color: #AE70C6;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    border: 2px solid #AE70C6;
    transition: background 0.25s cubic-bezier(0.34,1.56,0.64,1), color 0.25s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
}

.journal .post_card_link::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 0;
    background: #AE70C6;
    transition: height 0.22s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.journal .post_card_link:hover::before {
    height: 100%;
}

.journal .post_card_link:hover {
    color: #fff;
    border-color: #AE70C6;
}

.journal .post_card_link:hover span {
    color: #fff;
}

.journal .post_card_link span {
    position: relative;
    z-index: 1;
    color: #AE70C6;
    transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.journal .post_card_link:focus-visible {
    outline: 2px dashed #AE70C6;
    outline-offset: 2px;
}

.journal .numbered_block {
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    padding: 80px 0;
}

.journal .numbered_block_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.journal .numbered_block_left_heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
}

.journal .numbered_block_left_text {
    font-size: 18px;
    line-height: 1.55;
    color: #3d3245;
    margin: 0 0 20px 0;
}

.journal .numbered_block_left_accent {
    color: #AE70C6;
    font-style: italic;
}

.journal .numbered_block_divider {
    width: 40px;
    height: 2px;
    background: #AE70C6;
    margin: 20px 0;
}

.journal .numbered_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journal .numbered_list_item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.journal .numbered_list_num {
    font-size: 43px;
    line-height: 1.1;
    font-weight: 700;
    color: #AE70C6;
    opacity: 0.35;
    min-width: 56px;
    text-align: right;
}

.journal .numbered_list_text_group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
}

.journal .numbered_list_item_heading {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.journal .numbered_list_item_body {
    font-size: 15px;
    line-height: 1.55;
    color: #5a4f62;
    margin: 0;
}

.journal .metrics_strip {
    background: #1a1a2e;
    padding: 40px 0;
}

.journal .metrics_strip_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.journal .metric_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.journal .metric_value {
    font-size: 43px;
    line-height: 1.1;
    font-weight: 700;
    color: #AE70C6;
}

.journal .metric_label {
    font-size: 15px;
    line-height: 1.35;
    color: #E5D4DF;
}

.journal .metric_divider_line {
    width: 1px;
    height: 60px;
    background: rgba(174,112,198,0.3);
}

.journal .editorial_block {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.journal .editorial_heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
}

.journal .editorial_divider {
    width: 40px;
    height: 2px;
    background: #AE70C6;
    margin: 0 0 20px 0;
}

.journal .editorial_paragraph {
    font-size: 18px;
    line-height: 1.55;
    color: #3d3245;
    margin: 0 0 20px 0;
}

.journal .editorial_paragraph_num {
    font-size: 15px;
    color: #AE70C6;
    font-weight: 700;
    margin-right: 8px;
}

.journal .editorial_accent {
    color: #AE70C6;
    font-style: italic;
}

.journal .editorial_right {
    background: #F8F2F8;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 2px 1px 3px -1px rgba(174,112,198,0.08);
}

.journal .editorial_right_heading {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.journal .editorial_icon_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journal .editorial_icon_item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    align-items: start;
}

.journal .editorial_icon_svg {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.journal .editorial_icon_item_text {
    font-size: 15px;
    line-height: 1.55;
    color: #3d3245;
    margin: 0;
}

.journal .editorial_icon_item_label {
    font-weight: 700;
    color: #1a1a2e;
}

.journal .abbrev_anchor {
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    color: rgba(174,112,198,0.08);
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
}

.journal .split_header_text_relative {
    position: relative;
    overflow: hidden;
}

@keyframes diagonal_slide_in {
    from {
        opacity: 0;
        transform: translate(-32px, 32px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.journal .split_header_text_relative {
    animation: diagonal_slide_in 0.32s cubic-bezier(0.34,1.56,0.64,1) both;
}

.journal .posts_grid_area {
    animation: diagonal_slide_in 0.28s cubic-bezier(0.34,1.56,0.64,1) 0.08s both;
}

@media (max-width: 1280px) {
    .journal .split_header {
        grid-template-columns: 1fr 1fr;
    }
    .journal .posts_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .journal .numbered_block_inner {
        gap: 40px;
    }
    .journal .editorial_block {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .journal .split_header {
        grid-template-columns: 1fr;
    }
    .journal .split_header_image {
        min-height: 220px;
        order: -1;
    }
    .journal .split_header_text {
        padding: 40px 20px;
    }
    .journal .split_header_heading {
        font-size: 31px;
    }
    .journal .posts_grid_area {
        padding: 40px 20px;
    }
    .journal .posts_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .journal .numbered_block_inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
    }
    .journal .numbered_block {
        padding: 40px 0;
    }
    .journal .metrics_strip_inner {
        padding: 0 20px;
        gap: 20px;
        justify-content: flex-start;
    }
    .journal .metric_divider_line {
        display: none;
    }
    .journal .editorial_block {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
    .journal .abbrev_anchor {
        font-size: 43px;
    }
}

.success_page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
}

.success_page .success_card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 2px 10px 36px -1px rgba(174, 112, 198, 0.10);
    padding: 80px 40px;
    max-width: 560px;
    width: 100%;
    text-align: left;
}

.success_page .success_icon_wrapper {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: linear-gradient(233deg, #E5D4DF, #F8F2F8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.success_page .success_icon_wrapper svg {
    width: 32px;
    height: 32px;
}

.success_page .success_heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;
    color: #1b1024;
    margin: 0 0 20px 0;
}

.success_page .success_heading em {
    color: #AE70C6;
    font-style: italic;
}

.success_page .success_description {
    font-size: 18px;
    line-height: 1.55;
    color: #3d2e4a;
    margin: 0 0 40px 0;
}

.success_page .success_meta {
    font-size: 15px;
    line-height: 1.35;
    color: #7a6488;
    margin: 0 0 40px 0;
    padding: 20px;
    border-radius: 8px;
    background: #F8F2F8;
    border-top: 2px solid #E5D4DF;
}

.success_page .return_link {
    display: inline-block;
    padding: 20px 40px;
    background: #AE70C6;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1), color 0.22s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 2px 5px 14px -1px rgba(174, 112, 198, 0.10);
}

.success_page .return_link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #1b1024;
    transition: height 0.28s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 0;
}

.success_page .return_link:hover::before {
    height: 100%;
}

.success_page .return_link:hover {
    box-shadow: 2px 10px 36px -1px rgba(174, 112, 198, 0.10);
    color: #ffffff;
}

.success_page .return_link span {
    position: relative;
    z-index: 1;
}

.success_page .return_link:focus-visible {
    outline: 2px solid #AE70C6;
    outline-offset: 4px;
}

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

    .success_page .success_card {
        padding: 40px 20px;
    }

    .success_page .success_heading {
        font-size: 23px;
    }

    .success_page .success_description {
        font-size: 15px;
    }
}
