html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh
}

.pref-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: #005539;
    color: #FCFFB1;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 16px 8px;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1), color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: -1px 7px 28px -1px #0055391a
}

.pref-tab:hover,
.pref-tab:focus {
    background: #FC6957;
    color: #fff;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0d1a15;
    border-top: 1px solid #005539;
    box-shadow: -1px 10px 60px -1px #0055391f;
    font-family: 'Nunito', sans-serif;
    transform: translateY(100%);
    transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-bar.consent-visible {
    transform: translateY(0)
}

.consent-bar-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap
}

.consent-text {
    flex: 1 1 320px
}

.consent-text strong {
    display: block;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 700;
    color: #FCFFB1;
    margin-bottom: 8px;
    line-height: 1.55
}

.consent-text p {
    font-size: 14px;
    color: #b8d4c8;
    line-height: 1.55;
    margin: 0
}

.consent-text a {
    color: #FC6957;
    text-decoration: underline;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-text a:hover,
.consent-text a:focus {
    color: #FCFFB1;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.consent-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px
}

.consent-btn-accept {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0d1a15;
    background: #FC6957;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px
}

.consent-btn-accept:hover,
.consent-btn-accept:focus {
    background: #FCFFB1;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.consent-btn-decline {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #b8d4c8;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px;
    min-height: 44px;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-btn-decline:hover,
.consent-btn-decline:focus {
    color: #FCFFB1;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.consent-btn-prefs {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FCFFB1;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px;
    min-height: 44px;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-btn-prefs:hover,
.consent-btn-prefs:focus {
    color: #FC6957;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.consent-detail-panel {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px 16px;
    display: none
}

.consent-detail-panel.panel-open {
    display: block
}

.consent-toggle-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    border-top: 1px solid #1e3a2e
}

.consent-toggle-row label {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #b8d4c8;
    cursor: pointer;
    flex: 1
}

.consent-toggle-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FC6957;
    cursor: pointer
}

.pref-drawer {
    position: fixed;
    left: -320px;
    top: 0;
    bottom: 0;
    width: 320px;
    z-index: 1001;
    background: #0d1a15;
    border-right: 1px solid #005539;
    box-shadow: -1px 7px 28px -1px #0055391a;
    transition: left .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
    padding: 32px 16px
}

.pref-drawer.drawer-open {
    left: 0
}

.pref-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px
}

.pref-drawer-head strong {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: #FCFFB1;
    font-weight: 700;
    line-height: 1.1
}

.pref-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #b8d4c8;
    font-size: 20px;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    border-radius: 12px;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1), background-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pref-close:hover,
.pref-close:focus {
    color: #FC6957;
    background: #1e3a2e;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.pref-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #1e3a2e
}

.pref-item label {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #b8d4c8;
    flex: 1;
    line-height: 1.55;
    cursor: pointer
}

.pref-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FC6957;
    cursor: pointer;
    margin-top: 2px
}

.pref-save {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0d1a15;
    background: #FC6957;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 32px;
    min-height: 44px;
    transition: background-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pref-save:hover,
.pref-save:focus {
    background: #FCFFB1;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.site-header {
    background: #0a1f17;
    position: relative
}

.header-top {
    background: #005539;
    padding: 8px 0
}

.header-top-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FCFFB1;
    text-decoration: none;
    letter-spacing: .04em;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px
}

.header-phone:hover,
.header-phone:focus {
    color: #FC6957;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.header-phone i {
    font-size: 16px
}

.header-contact-links {
    display: flex;
    align-items: center;
    gap: 16px
}

.header-msg-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FCFFB1;
    text-decoration: none;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px
}

.header-msg-link:hover,
.header-msg-link:focus {
    color: #FC6957;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.header-msg-link i {
    font-size: 16px
}

.header-main {
    padding: 32px 0
}

.header-main-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

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

.brand-logo-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: -1px 7px 28px -1px #fc69571a 0 0 0 2px #005539;
    display: flex;
    align-items: center;
    justify-content: center
}

.brand-logo-wrap img {
    display: block;
    object-fit: contain
}

.brand-name {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 700;
    color: #FCFFB1;
    line-height: 1.1;
    letter-spacing: -.02em
}

.brand-divider {
    width: 1px;
    height: 48px;
    background: #1e4a35;
    flex-shrink: 0
}

.primary-nav {
    flex: 1
}

.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.primary-nav ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #b8d4c8;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 12px;
    letter-spacing: .03em;
    position: relative;
    overflow: hidden;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px
}

.primary-nav ul li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #005539;
    border-radius: 12px;
    transform: translateX(-100%);
    transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0
}

.primary-nav ul li a span,
.primary-nav ul li a i {
    position: relative;
    z-index: 1
}

.primary-nav ul li a:hover,
.primary-nav ul li a:focus {
    color: #FCFFB1;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.primary-nav ul li a:hover::before,
.primary-nav ul li a:focus::before {
    transform: translateX(0)
}

.primary-nav ul li a[aria-current="page"] {
    color: #FC6957;
    background: #0d2a1e
}

.primary-nav ul li a[aria-current="page"]::before {
    display: none
}

.site-footer {
    background: #060f0b;
    padding: 64px 0 0;
    border-top: 1px solid #1e3a2e
}

.footer-upper {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px 64px;
    display: flex;
    align-items: flex-start;
    gap: 64px;
    flex-wrap: wrap
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0
}

.footer-logo-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 1px 6px -1px #fc69570d 0 0 0 1px #1e4a35
}

.footer-logo-wrap img {
    display: block;
    object-fit: contain
}

.footer-brand-name {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 700;
    color: #FCFFB1;
    letter-spacing: -.01em;
    line-height: 1.1
}

.footer-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #5a8a72;
    line-height: 1.55;
    max-width: 200px
}

.footer-cols {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    flex: 1
}

.footer-col-head {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FC6957;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

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

.footer-link-list li a {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #7aaa90;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px
}

.footer-link-list li a:hover,
.footer-link-list li a:focus {
    color: #FCFFB1;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.footer-addr {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #7aaa90;
    line-height: 2;
    font-style: normal
}

.footer-contact-link {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #7aaa90;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px
}

.footer-contact-link:hover,
.footer-contact-link:focus {
    color: #FCFFB1;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

.footer-bottom {
    border-top: 1px solid #0f2a1e;
    padding: 32px;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.footer-copy {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #3d6b52;
    line-height: 1.55
}

.footer-legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.footer-legal-links a {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #3d6b52;
    text-decoration: underline;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
    color: #FCFFB1;
    outline: 2px solid #FC6957;
    outline-offset: 2px
}

@media (max-width: 1024px) {
    .header-main-inner {
        gap: 16px
    }

    .brand-divider {
        display: none
    }

    .primary-nav ul {
        gap: 8px
    }

    .footer-upper {
        gap: 32px
    }

    .footer-cols {
        gap: 32px
    }
}

@media (max-width: 768px) {
    .header-top-inner {
        padding: 0 16px;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .header-main-inner {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start
    }

    .primary-nav ul {
        gap: 8px
    }

    .footer-upper {
        padding: 0 16px 32px;
        flex-direction: column;
        gap: 32px
    }

    .footer-cols {
        flex-direction: column;
        gap: 32px
    }

    .footer-bottom {
        padding: 32px 16px;
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 360px) {
    .brand-name {
        font-size: 20px
    }

    .primary-nav ul li a {
        font-size: 14px;
        padding: 8px
    }

    .header-top-inner {
        gap: 8px
    }
}

.rules-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #e8e4f0
}

.rules-section p {
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .01em;
    margin-bottom: 16px;
    color: #e8e4f0
}

.rules-section a {
    color: #FC6957;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.rules-section a:hover {
    color: #FCFFB1
}

.rules-section hr {
    border: none;
    border-top: 1px solid #fc69572e;
    margin: 32px 0
}

.rules-section div {
    margin-bottom: 32px
}

.rules-section table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 32px;
    box-shadow: -1px 7px 28px -1px #fc69571a;
    border-radius: 12px;
    overflow: hidden
}

.rules-section thead {
    background-color: #005539
}

.rules-section thead th {
    color: #FCFFB1;
    font-size: 14px;
    letter-spacing: .04em;
    text-align: left;
    padding: 16px;
    font-weight: 600
}

.rules-section tbody tr {
    border-bottom: 1px solid #fc69571a;
    transition: background-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.rules-section tbody tr:last-child {
    border-bottom: none
}

.rules-section tbody tr:hover {
    background-color: #0055392e
}

.rules-section td {
    padding: 16px;
    color: #e8e4f0;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.55
}

.rules-section th {
    padding: 16px
}

@media (max-width: 768px) {
    .rules-section {
        padding: 32px 16px
    }

    .rules-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .rules-section p {
        font-size: 16px
    }
}

@media (max-width: 360px) {
    .rules-section {
        padding: 32px 8px
    }
}

.arcdet {
    background: #0d0b14;
    color: #e8e4f0;
    overflow-x: hidden;
    container-type: inline-size
}

.arcdet .art-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px
}

.arcdet .pub-strip {
    display: flex;
    flex-direction: row;
    gap: 64px;
    padding: 96px 0 64px;
    align-items: flex-start;
    position: relative
}

.arcdet .pub-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    right: -200px;
    bottom: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 40%, #fc695712 0%, transparent 70%);
    pointer-events: none;
    z-index: 0
}

.arcdet .img-col {
    flex: 0 0 auto;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1
}

.arcdet .img-frame {
    width: 220px;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 7px 28px -1px #fc69571a
}

.arcdet .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.arcdet .img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #00553938;
    pointer-events: none
}

.arcdet .meta-pill {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.arcdet .meta-date {
    font-size: 14px;
    line-height: 1.55;
    color: #a09ab8;
    letter-spacing: .04em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.arcdet .meta-date i {
    color: #FC6957;
    font-size: 16px
}

.arcdet .likes-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.55;
    color: #a09ab8
}

.arcdet .likes-row i {
    color: #FC6957;
    font-size: 16px
}

.arcdet .blob-a {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    background: #fc695714;
    filter: blur(40px);
    top: -32px;
    left: -32px;
    pointer-events: none;
    z-index: 0
}

.arcdet .blob-b {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: #00553926;
    filter: blur(30px);
    bottom: 0;
    right: -16px;
    pointer-events: none;
    z-index: 0
}

.arcdet .text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
    min-width: 0
}

.arcdet .art-label {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: .08em;
    color: #FC6957;
    text-transform: uppercase
}

.arcdet .art-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: #FC6957;
    border-radius: 0;
    flex-shrink: 0
}

.arcdet .art-heading {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #f5f0ff;
    margin: 0;
    font-weight: 700
}

.arcdet .art-sub {
    font-size: 20px;
    line-height: 1.55;
    color: #b8b0d0;
    margin: 0;
    max-width: 560px
}

.arcdet .divider-scallop {
    width: 100%;
    height: 24px;
    position: relative;
    overflow: hidden
}

.arcdet .divider-scallop svg {
    display: block;
    width: 100%;
    height: 100%
}

.arcdet .body-zone {
    padding: 64px 0 96px;
    position: relative
}

.arcdet .body-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, #fcffb108 0%, transparent 65%);
    pointer-events: none
}

.arcdet .body-grid {
    display: grid;
    grid-template-columns: 1fr minmax(0, 640px) 1fr;
    gap: 0 32px;
    position: relative;
    z-index: 1
}

.arcdet .body-aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px
}

.arcdet .aside-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.arcdet .ring-svg {
    width: 80px;
    height: 80px
}

.arcdet .ring-label {
    font-size: 14px;
    line-height: 1.55;
    color: #7a738f;
    text-align: center;
    letter-spacing: .03em
}

.arcdet .body-text {
    min-width: 0
}

.arcdet .body-text p {
    font-size: 16px;
    line-height: 2;
    color: #ccc5e0;
    margin: 0 0 16px
}

.arcdet .body-text h2 {
    font-size: 26px;
    line-height: 1.1;
    color: #f5f0ff;
    margin: 32px 0 16px;
    font-weight: 600;
    letter-spacing: -.01em
}

.arcdet .body-text small {
    font-size: 14px;
    line-height: 1.55;
    color: #7a738f;
    display: block;
    margin-bottom: 16px
}

.arcdet .body-text ol {
    padding-left: 32px;
    margin: 0 0 16px
}

.arcdet .body-text li {
    font-size: 16px;
    line-height: 2;
    color: #ccc5e0;
    margin-bottom: 8px
}

.arcdet .body-text blockquote {
    border-left: 4px solid #FC6957;
    border-top: 1px solid #fc695733;
    border-bottom: 1px solid #fc695733;
    margin: 32px 0;
    padding: 16px 32px;
    background: #fc69570d;
    border-radius: 0 12px 12px 0;
    font-size: 20px;
    line-height: 1.55;
    color: #e8e0f8;
    font-style: italic
}

.arcdet .body-text time {
    font-size: 14px;
    line-height: 1.55;
    color: #7a738f;
    display: block;
    margin-bottom: 8px
}

.arcdet .body-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px
}

.arcdet .tag-strip {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.arcdet .tag-item {
    font-size: 14px;
    line-height: 1.55;
    color: #7a738f;
    padding: 8px 16px;
    border: 1px solid #fc695733;
    border-radius: 12px;
    letter-spacing: .03em
}

.arcdet .poll-block {
    background: #FC6957;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: -1px 10px 60px -1px #fc69571f
}

.arcdet .poll-q {
    font-size: 16px;
    line-height: 1.55;
    color: #0d0b14;
    font-weight: 600;
    margin: 0
}

.arcdet .poll-form {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.arcdet .poll-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.arcdet .poll-opt input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 0;
    border: 2px solid #0d0b14;
    background: transparent;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 2px 4px #00000026
}

.arcdet .poll-opt input[type="radio"]:checked {
    background: #0d0b14;
    border-color: #0d0b14
}

.arcdet .poll-opt input[type="radio"]:checked+.poll-lbl {
    color: #0d0b14;
    font-weight: 700
}

.arcdet .poll-lbl {
    font-size: 16px;
    line-height: 1.55;
    color: #0d0b14bf;
    cursor: pointer;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1), font-weight 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.arcdet .poll-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #0d0b14;
    color: #FC6957;
    font-size: 14px;
    line-height: 1.55;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: .04em;
    position: relative;
    overflow: hidden;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    align-self: flex-start
}

.arcdet .poll-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #FCFFB1;
    transform: translateX(-100%);
    transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0
}

.arcdet .poll-btn:hover::before {
    transform: translateX(0)
}

.arcdet .poll-btn:hover {
    color: #0d0b14
}

.arcdet .poll-btn span {
    position: relative;
    z-index: 1
}

.arcdet .cta-band {
    background: linear-gradient(112deg, #FC6957 0%, #005539 100%);
    border-radius: 12px;
    padding: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    margin: 0 0 96px;
    box-shadow: -1px 10px 60px -1px #fc69571f;
    position: relative;
    overflow: hidden
}

.arcdet .cta-band::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: #fcffb114;
    filter: blur(30px);
    pointer-events: none
}

.arcdet .cta-txt {
    flex: 1 1 0;
    min-width: 0
}

.arcdet .cta-h {
    font-size: 36px;
    line-height: 1.1;
    color: #FCFFB1;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -.01em
}

.arcdet .cta-p {
    font-size: 16px;
    line-height: 1.55;
    color: #fcffb1cc;
    margin: 0
}

.arcdet .cta-acts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0
}

.arcdet .btn-prim {
    display: inline-block;
    padding: 16px 32px;
    background: #FCFFB1;
    color: #0d0b14;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap
}

.arcdet .btn-prim::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0
}

.arcdet .btn-prim:hover::before {
    transform: translateX(0)
}

.arcdet .btn-prim span {
    position: relative;
    z-index: 1
}

.arcdet .btn-sec {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #FCFFB1;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid #fcffb180;
    text-decoration: none !important;
    transition: border-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1), color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    text-align: center
}

.arcdet .btn-sec:hover {
    border-color: #FCFFB1;
    color: #fff
}

.arcdet .clip-reveal {
    clip-path: inset(0 100% 0 0);
    animation: wipeIn .35s cubic-bezier(0.34, 1.56, 0.64, 1) .1s forwards
}

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

@media (max-width: 1024px) {
    .arcdet .body-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .arcdet .body-aside {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 0
    }

    .arcdet .body-right {
        padding-top: 0
    }

    .arcdet .art-heading {
        font-size: 36px
    }

    .arcdet .pub-strip {
        gap: 32px
    }
}

@media (max-width: 768px) {
    .arcdet .pub-strip {
        flex-direction: column;
        gap: 32px;
        padding: 64px 0 32px
    }

    .arcdet .img-col {
        width: 100%
    }

    .arcdet .img-frame {
        width: 100%;
        max-width: 320px
    }

    .arcdet .art-heading {
        font-size: 26px
    }

    .arcdet .cta-band {
        flex-direction: column;
        padding: 32px;
        gap: 32px
    }

    .arcdet .cta-acts {
        width: 100%
    }

    .arcdet .btn-prim,
    .arcdet .btn-sec {
        text-align: center;
        width: 100%;
        display: block
    }

    .arcdet .art-wrap {
        padding: 0 16px
    }

    .arcdet .body-text blockquote {
        padding: 16px
    }

    .arcdet .poll-block {
        padding: 16px
    }
}

@media (max-width: 360px) {
    .arcdet .art-heading {
        font-size: 20px
    }

    .arcdet .cta-h {
        font-size: 26px
    }
}

.ctpg {
    background: #0d0b14;
    color: #e8e4f0;
    overflow-x: clip;
    container-type: inline-size
}

.ctpg .reveal-wrap {
    clip-path: inset(0 50% 0 50%);
    animation: revealCenter .7s cubic-bezier(0.34, 1.56, 0.64, 1) .1s forwards
}

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

.ctpg .pg-top {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 32px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.ctpg .pg-top-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px
}

.ctpg .pg-top-label .shape-anchor {
    width: 10px;
    height: 10px;
    background: #FC6957;
    border-radius: 0;
    transform: rotate(45deg);
    flex-shrink: 0
}

.ctpg .pg-top-label span {
    font-size: 14px;
    letter-spacing: .12em;
    color: #FC6957;
    text-transform: uppercase
}

.ctpg .pg-heading {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #e8e4f0;
    margin: 0 0 16px;
    font-weight: 700
}

.ctpg .pg-heading em {
    font-style: normal;
    color: #FC6957
}

.ctpg .pg-desc {
    font-size: 16px;
    line-height: 1.55;
    color: #a89ec0;
    margin: 0 0 32px;
    max-width: 420px
}

.ctpg .divider-asym {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px
}

.ctpg .divider-asym .dl {
    height: 1px;
    width: 80px;
    background: #FC6957;
    opacity: .7
}

.ctpg .divider-asym .ds {
    height: 1px;
    width: 20px;
    background: #FC6957;
    opacity: .3
}

.ctpg .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctpg .ccard {
    background: #16122a;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: -1px 7px 28px -1px #fc69571a;
    transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: inherit
}

.ctpg .ccard:hover {
    box-shadow: -1px 10px 60px -1px #fc69571f;
    transform: translateY(-2px)
}

.ctpg .ccard-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fc69571f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FC6957;
    font-size: 20px
}

.ctpg .ccard-body {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctpg .ccard-label {
    font-size: 14px;
    color: #6b5f8a;
    letter-spacing: .06em;
    text-transform: uppercase
}

.ctpg .ccard-val {
    font-size: 16px;
    color: #e8e4f0;
    line-height: 1.55;
    text-decoration: none
}

.ctpg .ccard-val a {
    color: #e8e4f0;
    text-decoration: none;
    transition: color .15s linear
}

.ctpg .ccard-val a:hover {
    color: #FC6957
}

.ctpg .msg-links {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 8px
}

.ctpg .msg-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #fc695740;
    color: #e8e4f0;
    transition: background .2s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color .15s linear
}

.ctpg .msg-link:hover {
    background: #fc69571f;
    border-color: #FC6957
}

.ctpg .metric-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #ffffff0f
}

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

.ctpg .metric-num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    color: #FCFFB1;
    display: flex;
    align-items: center;
    gap: 8px
}

.ctpg .metric-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #005539;
    margin-bottom: 4px
}

.ctpg .metric-lbl {
    font-size: 14px;
    color: #6b5f8a;
    line-height: 1.55
}

.ctpg .form-band {
    background: #005539;
    padding: 64px 0;
    position: relative
}

.ctpg .form-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #FC6957 0%, transparent 60%)
}

.ctpg .form-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start
}

.ctpg .form-context {
    position: sticky;
    top: 32px
}

.ctpg .form-context-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px
}

.ctpg .form-context-label .shape-sq {
    width: 8px;
    height: 8px;
    background: #FCFFB1;
    border-radius: 0
}

.ctpg .form-context-label span {
    font-size: 14px;
    color: #FCFFB1;
    letter-spacing: .1em;
    text-transform: uppercase
}

.ctpg .form-heading {
    font-size: 36px;
    line-height: 1.1;
    color: #FCFFB1;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -.01em
}

.ctpg .form-sub {
    font-size: 16px;
    line-height: 1.55;
    color: #fcffb1b3;
    margin: 0 0 32px
}

.ctpg .mini-infographic {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background: #0003;
    border-radius: 12px;
    border: 1px solid #fcffb11a
}

.ctpg .infog-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.ctpg .infog-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #fcffb11a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FCFFB1;
    font-size: 16px;
    flex-shrink: 0
}

.ctpg .infog-text {
    font-size: 14px;
    color: #fcffb1cc;
    line-height: 1.55
}

.ctpg .infog-text strong {
    color: #FCFFB1;
    font-weight: 600
}

.ctpg .contact-form {
    background: #0d0b14;
    border-radius: 12px;
    padding: 32px;
    box-shadow: -1px 10px 60px -1px #0055391f
}

.ctpg .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.ctpg .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.ctpg .form-group label {
    font-size: 14px;
    color: #a89ec0;
    letter-spacing: .04em
}

.ctpg .form-group input,
.ctpg .form-group select,
.ctpg .form-group textarea {
    background: #16122a;
    border: 1px solid #ffffff14;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    color: #e8e4f0;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 2px 4px #00553914;
    transition: border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .2s cubic-bezier(0.34, 1.56, 0.64, 1);
    appearance: none;
    -webkit-appearance: none
}

.ctpg .form-group input::placeholder,
.ctpg .form-group textarea::placeholder {
    color: #4a4060;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.ctpg .form-group input:focus,
.ctpg .form-group select:focus,
.ctpg .form-group textarea:focus {
    border-color: #FC6957;
    box-shadow: inset 0 2px 4px #fc695714 -1px 1px 6px -1px #fc69570d
}

.ctpg .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a89ec0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer
}

.ctpg .form-group select option {
    background: #16122a;
    color: #e8e4f0
}

.ctpg .form-group textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.55
}

.ctpg .options-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px
}

.ctpg .opt-check {
    display: none
}

.ctpg .opt-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #a89ec0;
    border: 1px solid #ffffff14;
    cursor: pointer;
    transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .15s linear, color .15s linear;
    user-select: none
}

.ctpg .opt-label:hover {
    background: #fc695714;
    border-color: #fc69574d;
    color: #e8e4f0
}

.ctpg .opt-check:checked+.opt-label {
    background: #fc695726;
    border-color: #FC6957;
    color: #FC6957
}

.ctpg .opt-dot {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: currentColor;
    transform: rotate(45deg);
    flex-shrink: 0
}

.ctpg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding: 16px;
    background: #ffffff08;
    border-radius: 12px;
    border: 1px solid #ffffff0f
}

.ctpg .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: #FC6957;
    margin-top: 2px;
    cursor: pointer;
    box-shadow: inset 0 1px 3px #fc69571a
}

.ctpg .privacy-text {
    font-size: 14px;
    color: #6b5f8a;
    line-height: 1.55
}

.ctpg .privacy-text a {
    color: #FC6957;
    text-decoration: none;
    transition: color .15s linear
}

.ctpg .privacy-text a:hover {
    color: #FCFFB1
}

.ctpg .submit-btn {
    position: relative;
    overflow: hidden;
    background: #FC6957;
    color: #0d0b14;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .02em;
    box-shadow: -1px 7px 28px -1px #fc69571a;
    transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .2s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%
}

.ctpg .submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #005539;
    transition: left .35s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.ctpg .submit-btn:hover::before {
    left: 0
}

.ctpg .submit-btn:hover {
    color: #FCFFB1;
    box-shadow: -1px 10px 60px -1px #fc69571f;
    transform: translateY(-2px)
}

.ctpg .submit-btn:active {
    transform: translateY(0)
}

.ctpg .submit-btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.ctpg .options-label {
    font-size: 14px;
    color: #a89ec0;
    margin-bottom: 8px;
    letter-spacing: .04em
}

@media (max-width: 1024px) {
    .ctpg .pg-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 64px 32px 32px
    }

    .ctpg .pg-heading {
        font-size: 36px
    }

    .ctpg .form-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .ctpg .form-context {
        position: static
    }
}

@media (max-width: 768px) {
    .ctpg .pg-top {
        padding: 64px 16px 32px
    }

    .ctpg .pg-heading {
        font-size: 36px
    }

    .ctpg .form-row {
        grid-template-columns: 1fr
    }

    .ctpg .form-inner {
        padding: 0 16px
    }

    .ctpg .contact-form {
        padding: 16px
    }

    .ctpg .metric-row {
        flex-wrap: wrap
    }
}

@media (max-width: 360px) {
    .ctpg .pg-heading {
        font-size: 26px
    }

    .ctpg .form-heading {
        font-size: 26px
    }

    .ctpg .msg-links {
        flex-direction: column
    }
}

.abut {
    background: #0d0b14;
    color: #e8e4f0;
    overflow-x: clip
}

.abut .ld-schema {
    display: none
}

.abut .pge-top {
    padding: 96px 32px;
    text-align: center;
    position: relative
}

.abut .pge-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(168deg, #fc695714 0%, transparent 60%);
    pointer-events: none
}

.abut .pge-top .deco-shape-a {
    position: absolute;
    top: 32px;
    left: 8%;
    width: 64px;
    height: 64px;
    border: 2px dashed #fc695740;
    border-radius: 12px;
    transform: rotate(18deg);
    pointer-events: none
}

.abut .pge-top .deco-shape-b {
    position: absolute;
    bottom: 64px;
    right: 6%;
    width: 44px;
    height: 44px;
    border: 2px dashed #fcffb12e;
    border-radius: 0;
    transform: rotate(32deg);
    pointer-events: none
}

.abut .pge-top .deco-shape-c {
    position: absolute;
    top: 96px;
    right: 14%;
    width: 28px;
    height: 28px;
    background: #00553959;
    border-radius: 0;
    transform: rotate(12deg);
    pointer-events: none
}

.abut .top-kicker {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .12em;
    color: #FC6957;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 16px;
    border: 1px solid #fc69574d;
    border-radius: 0
}

.abut .top-hdg {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #f0ecfa;
    max-width: 700px;
    margin: 0 auto 16px
}

.abut .top-hdg .accent-phrase {
    color: #FC6957
}

.abut .top-sub {
    font-size: 20px;
    line-height: 1.55;
    color: #a89ec0;
    max-width: 520px;
    margin: 0 auto 32px
}

.abut .img-frame {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden
}

.abut .img-frame img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    filter: blur(0px)
}

.abut .img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 60px 20px #0d0b14, inset 0 0 120px 40px #0d0b1499;
    pointer-events: none
}

.abut .img-frame .frame-border {
    position: absolute;
    inset: 16px;
    border: 1px dashed #fc695733;
    border-radius: 12px;
    pointer-events: none;
    z-index: 1
}

.abut .detail-band {
    background: #FC6957;
    padding: 64px 32px;
    position: relative;
    overflow: hidden
}

.abut .detail-band::before {
    content: '';
    position: absolute;
    top: -32px;
    right: -32px;
    width: 200px;
    height: 200px;
    background: #fcffb11f;
    border-radius: 0;
    transform: rotate(22deg);
    pointer-events: none
}

.abut .detail-band::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 8%;
    width: 120px;
    height: 120px;
    background: #0055392e;
    border-radius: 12px;
    transform: rotate(-10deg);
    pointer-events: none
}

.abut .band-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1
}

.abut .band-left {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abut .band-hdg-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abut .band-shape-mark {
    width: 32px;
    height: 32px;
    background: #005539;
    border-radius: 0;
    flex-shrink: 0
}

.abut .band-hdg {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.015em;
    font-weight: 800;
    color: #0d0b14;
    margin: 0
}

.abut .band-body {
    font-size: 16px;
    line-height: 1.55;
    color: #1a0e08
}

.abut .band-body p {
    margin: 0 0 16px
}

.abut .band-body p:last-child {
    margin-bottom: 0
}

.abut .band-right {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abut .fact-row {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abut .fact-item {
    background: #00553926;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #0055394d;
    transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .2s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.abut .fact-item:hover {
    background: #00553952;
    border-color: #00553999
}

.abut .fact-icon {
    width: 40px;
    height: 40px;
    background: #005539;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.abut .fact-icon i {
    font-size: 20px;
    color: #FCFFB1
}

.abut .fact-txt {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abut .fact-lbl {
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 700;
    color: #0d0b14;
    text-transform: uppercase
}

.abut .fact-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #1a0e08;
    margin: 0
}

.abut .portrait-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.abut .portrait-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: default;
    box-shadow: -1px 7px 28px -1px #fc69571a
}

.abut .portrait-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abut .portrait-card:hover img {
    transform: scale(1.04)
}

.abut .portrait-overlay {
    position: absolute;
    inset: 0;
    background: #0d0b1400;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 12px
}

.abut .portrait-card:hover .portrait-overlay {
    background: #0d0b14c7
}

.abut .portrait-name {
    font-size: 16px;
    font-weight: 700;
    color: #f0ecfa;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abut .portrait-role {
    font-size: 14px;
    color: #FCFFB1;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s, transform .26s cubic-bezier(0.34, 1.56, 0.64, 1) .05s
}

.abut .portrait-card:hover .portrait-name,
.abut .portrait-card:hover .portrait-role {
    opacity: 1;
    transform: translateY(0)
}

.abut .slide-left {
    animation: slideFromLeft .32s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.abut .slide-right {
    animation: slideFromRight .32s cubic-bezier(0.34, 1.56, 0.64, 1) .12s both
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

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

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

@media (max-width: 1024px) {
    .abut .band-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abut .top-hdg {
        font-size: 36px
    }
}

@media (max-width: 768px) {
    .abut .pge-top {
        padding: 64px 16px
    }

    .abut .top-hdg {
        font-size: 26px
    }

    .abut .top-sub {
        font-size: 16px
    }

    .abut .detail-band {
        padding: 64px 16px
    }

    .abut .portrait-pair {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 360px) {
    .abut .top-hdg {
        font-size: 20px
    }

    .abut .portrait-pair {
        grid-template-columns: 1fr
    }
}

.tech {
    background: #0d0b14;
    color: #e8e4f0;
    overflow-x: clip;
    container-type: inline-size
}

.tech .reveal {
    opacity: 0;
    transform: translateY(32px);
    animation: revealUp .35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.tech .reveal.d1 {
    animation-delay: .1s
}

.tech .reveal.d2 {
    animation-delay: .2s
}

.tech .reveal.d3 {
    animation-delay: .28s
}

.tech .reveal.d4 {
    animation-delay: .36s
}

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

.tech .pg-band {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px
}

.tech .geo-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FC6957;
    border-radius: 0;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0
}

.tech .divider-shape {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
    width: fit-content
}

.tech .divider-shape span {
    display: block;
    width: 64px;
    height: 1px;
    background: #005539
}

.tech .divider-shape svg {
    width: 10px;
    height: 10px;
    fill: #FC6957
}

.tech .accent-top {
    border-top: 3px solid #FC6957
}

.tech .accent-top-green {
    border-top: 3px solid #005539
}

.tech .titband {
    padding: 64px 0 32px;
    position: relative;
    overflow: hidden
}

.tech .titband::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: repeating-linear-gradient(-45deg, transparent, transparent 10px, #fc69570f 10px, #fc69570f 11px);
    pointer-events: none
}

.tech .titband-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

.tech .titband-text {
    text-align: center;
    max-width: 680px
}

.tech .titband-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: .12em;
    color: #FC6957;
    text-transform: uppercase;
    margin-bottom: 16px
}

.tech .titband-h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #e8e4f0;
    margin: 0 0 16px
}

.tech .titband-h1 em {
    font-style: normal;
    color: #FC6957
}

.tech .titband-lead {
    font-size: 20px;
    line-height: 1.55;
    color: #a89ec0;
    margin: 0
}

.tech .titband-img-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    justify-content: center;
    width: 100%;
    max-width: 820px
}

.tech .titband-dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: center
}

.tech .titband-dots span {
    display: block;
    width: 6px;
    height: 6px;
    background: #FCFFB1;
    border-radius: 0;
    opacity: .5
}

.tech .titband-dots span:nth-child(2) {
    opacity: .3
}

.tech .titband-dots span:nth-child(3) {
    opacity: .15
}

.tech .titband-img-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    flex: 1
}

.tech .titband-img-wrap img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(1) contrast(1.15)
}

.tech .titband-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0d0b14 0%, transparent 55%);
    pointer-events: none
}

.tech .stackgrid {
    padding: 64px 0;
    background: #120f1e;
    position: relative
}

.tech .stackgrid-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px
}

.tech .stackgrid-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    margin-bottom: 64px
}

.tech .stackgrid-label {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.tech .stackgrid-label-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #FCFFB1;
    letter-spacing: .1em;
    text-transform: uppercase
}

.tech .stackgrid-h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #e8e4f0;
    margin: 0
}

.tech .stackgrid-body {
    flex: 1;
    font-size: 16px;
    line-height: 1.55;
    color: #a89ec0;
    margin: 0
}

.tech .stack-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.tech .scard {
    background: #0d0b14;
    border-radius: 12px;
    padding: 32px;
    box-shadow: -1px 7px 28px -1px #fc69571a;
    transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden
}

.tech .scard:hover {
    transform: translateY(-6px);
    box-shadow: -1px 10px 60px -1px #fc69571f
}

.tech .scard-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fc69571f;
    border-radius: 0;
    margin-bottom: 16px
}

.tech .scard-icon i {
    font-size: 20px;
    color: #FC6957
}

.tech .scard h4 {
    font-size: 16px;
    line-height: 1.1;
    color: #e8e4f0;
    margin: 0 0 8px;
    letter-spacing: .01em
}

.tech .scard p {
    font-size: 14px;
    line-height: 1.55;
    color: #7a7090;
    margin: 0
}

.tech .scard-tag {
    display: inline-block;
    font-size: 14px;
    color: #FCFFB1;
    background: #fcffb114;
    border-radius: 0;
    padding: 8px;
    margin-top: 16px;
    letter-spacing: .06em
}

.tech .socproof {
    padding: 96px 0;
    position: relative;
    background: #FC6957
}

.tech .socproof-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.tech .socproof-left {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.tech .socproof-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0d0b14
}

.tech .socproof-eyebrow span {
    display: block;
    width: 20px;
    height: 2px;
    background: #0d0b14
}

.tech .socproof-h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #0d0b14;
    margin: 0;
    letter-spacing: -.01em
}

.tech .testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.tech .tcard {
    background: #0d0b1414;
    border-radius: 12px;
    padding: 32px;
    border-top: 3px solid #0d0b14;
    transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.tech .tcard:hover {
    background: #0d0b1424
}

.tech .tcard-quote {
    font-size: 16px;
    line-height: 1.55;
    color: #0d0b14;
    margin: 0 0 16px
}

.tech .tcard-person {
    display: flex;
    align-items: center;
    gap: 16px
}

.tech .tcard-portrait {
    width: 48px;
    height: 67px;
    overflow: hidden;
    flex-shrink: 0
}

.tech .tcard-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.tech .tcard-meta strong {
    display: block;
    font-size: 14px;
    color: #0d0b14;
    letter-spacing: .04em
}

.tech .tcard-meta span {
    font-size: 14px;
    color: #0d0b1499
}

.tech .socproof-right {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.tech .stat-row {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.tech .statitem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #0d0b1414;
    border-radius: 12px;
    padding: 32px;
    transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.tech .statitem:hover {
    background: #0d0b1426
}

.tech .statitem-num {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #0d0b14;
    font-weight: 700;
    flex-shrink: 0
}

.tech .statitem-label {
    font-size: 16px;
    line-height: 1.55;
    color: #0d0b14bf
}

.tech .portrait-feature {
    width: 100%;
    aspect-ratio: 5/7;
    overflow: hidden
}

.tech .portrait-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.tech .process {
    padding: 96px 0;
    background: #0d0b14;
    position: relative
}

.tech .process::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 160px;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, #00553912 10px, #00553912 11px);
    pointer-events: none
}

.tech .process-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px
}

.tech .process-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 64px
}

.tech .process-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #005539
}

.tech .process-h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #e8e4f0;
    margin: 0;
    letter-spacing: -.01em
}

.tech .process-subtext {
    font-size: 16px;
    line-height: 1.55;
    color: #7a7090;
    max-width: 520px;
    margin: 0
}

.tech .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.tech .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.tech .pstep {
    display: flex;
    flex-direction: row;
    gap: 32px;
    position: relative;
    padding-bottom: 32px
}

.tech .pstep:last-child {
    padding-bottom: 0
}

.tech .pstep-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0
}

.tech .pstep-num {
    width: 40px;
    height: 40px;
    background: #fc69571f;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FC6957;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.tech .pstep:hover .pstep-num {
    background: #fc695740
}

.tech .pstep-line {
    flex: 1;
    width: 1px;
    background: #fc695726;
    margin-top: 8px
}

.tech .pstep:last-child .pstep-line {
    display: none
}

.tech .pstep-body {
    flex: 1;
    padding-top: 8px
}

.tech .pstep-body h4 {
    font-size: 16px;
    line-height: 1.1;
    color: #e8e4f0;
    margin: 0 0 8px
}

.tech .pstep-body p {
    font-size: 14px;
    line-height: 1.55;
    color: #7a7090;
    margin: 0
}

.tech .pstep-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.tech .ptag {
    font-size: 14px;
    color: #FCFFB1;
    background: #fcffb112;
    padding: 8px;
    border-radius: 0;
    letter-spacing: .04em
}

.tech .process-aside {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.tech .process-portrait-wrap {
    width: 100%;
    aspect-ratio: 5/7;
    overflow: hidden;
    box-shadow: -1px 10px 60px -1px #0055391f
}

.tech .process-portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.tech .process-note {
    background: #120f1e;
    border-radius: 12px;
    padding: 32px;
    border-top: 3px solid #005539;
    box-shadow: -1px 7px 28px -1px #0055391a
}

.tech .process-note h5 {
    font-size: 16px;
    line-height: 1.1;
    color: #e8e4f0;
    margin: 0 0 8px
}

.tech .process-note p {
    font-size: 14px;
    line-height: 1.55;
    color: #7a7090;
    margin: 0
}

.tech .process-note .slash-list {
    font-size: 14px;
    line-height: 2;
    color: #a89ec0;
    margin: 8px 0 0
}

.tech .slash-list span {
    color: #FC6957;
    margin: 0 8px
}

@media (max-width: 1024px) {
    .tech .titband-h1 {
        font-size: 36px
    }

    .tech .stack-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .tech .socproof-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .tech .process-grid {
        grid-template-columns: 1fr
    }

    .tech .process-portrait-wrap {
        aspect-ratio: 1/1
    }

    .tech .stackgrid-top {
        flex-direction: column;
        gap: 32px
    }

    .tech .stackgrid-label {
        width: 100%
    }
}

@media (max-width: 768px) {
    .tech .titband {
        padding: 32px 0 16px
    }

    .tech .titband-inner {
        padding: 0 16px;
        gap: 16px
    }

    .tech .titband-h1 {
        font-size: 36px
    }

    .tech .titband-lead {
        font-size: 16px
    }

    .tech .stackgrid {
        padding: 32px 0
    }

    .tech .stackgrid-inner {
        padding: 0 16px
    }

    .tech .stack-cards {
        grid-template-columns: 1fr
    }

    .tech .socproof {
        padding: 64px 0
    }

    .tech .socproof-inner {
        padding: 0 16px
    }

    .tech .process {
        padding: 64px 0
    }

    .tech .process-inner {
        padding: 0 16px
    }

    .tech .pg-band {
        padding: 0 16px
    }

    .tech .statitem-num {
        font-size: 36px
    }
}

@media (max-width: 360px) {
    .tech .titband-h1 {
        font-size: 26px
    }

    .tech .socproof-h2 {
        font-size: 26px
    }

    .tech .process-h2 {
        font-size: 26px
    }

    .tech .scard {
        padding: 16px
    }

    .tech .tcard {
        padding: 16px
    }

    .tech .statitem {
        padding: 16px
    }
}

.archv {
    background: #0d0b14;
    color: #e8e2f0;
    overflow-x: hidden
}

.archv .pg-band {
    background: linear-gradient(135deg, #1a1040 0%, #0d0b14 100%);
    padding: 96px 32px 64px;
    position: relative
}

.archv .pg-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 18px, #fc69570a 18px, #fc69570a 19px);
    pointer-events: none
}

.archv .pg-band-inner {
    max-width: 1170px;
    margin: 0 auto;
    position: relative
}

.archv .pg-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: .08em;
    color: #FC6957;
    margin-bottom: 16px;
    text-transform: uppercase
}

.archv .pg-label span {
    width: 8px;
    height: 8px;
    background: #FC6957;
    transform: rotate(45deg);
    display: inline-block;
    flex-shrink: 0
}

.archv .pg-hdg {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #FCFFB1;
    margin: 0 0 16px;
    max-width: 600px
}

.archv .pg-sub {
    font-size: 16px;
    line-height: 1.55;
    color: #a89ec0;
    max-width: 480px
}

.archv .divider-curve {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px
}

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

.archv .posts-grid-sec {
    background: #0d0b14;
    padding: 64px 32px
}

.archv .posts-grid-inner {
    max-width: 1170px;
    margin: 0 auto
}

.archv .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.archv .post-card {
    background: #16112a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: -1px 7px 28px -1px #fc69571a;
    transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #fcffb10f
}

.archv .post-card:hover {
    box-shadow: -1px 10px 60px -1px #fc69572e;
    transform: translateY(-4px)
}

.archv .post-img-wrap {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative
}

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

.archv .post-card:hover .post-img-wrap img {
    transform: scale(1.04)
}

.archv .post-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, #0d0b14b3 100%);
    pointer-events: none
}

.archv .post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 16px 0;
    font-size: 14px;
    color: #7a6e96
}

.archv .post-meta .meta-date {
    display: flex;
    align-items: center;
    gap: 8px
}

.archv .post-meta .meta-likes {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FC6957
}

.archv .post-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.archv .post-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    color: #e8e2f0;
    margin: 0
}

.archv .post-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #8a80a8;
    margin: 0;
    flex: 1
}

.archv .post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #FCFFB1;
    text-decoration: none;
    padding: 8px 0;
    margin-top: 8px;
    transition: color .2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-top: 1px solid #fcffb11a
}

.archv .post-link:hover {
    color: #FC6957
}

.archv .post-link i {
    font-size: 16px;
    transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.archv .post-link:hover i {
    transform: translateX(4px)
}

.archv .divider-line {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fc69574d, transparent)
}

.archv .about-sec {
    background: #0d0b14;
    padding: 96px 32px
}

.archv .about-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.archv .about-img-col {
    position: relative
}

.archv .about-img-frame {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: -1px 10px 60px -1px #0055391f
}

.archv .about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.archv .about-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fc695740 0%, transparent 60%);
    pointer-events: none;
    border-radius: 12px
}

.archv .about-deco-line {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-top: 2px solid #fc695766;
    border-left: 2px solid #fc695766;
    border-radius: 12px 0 0 0;
    pointer-events: none
}

.archv .about-deco-line-br {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid #00553980;
    border-right: 2px solid #00553980;
    border-radius: 0 0 12px 0;
    pointer-events: none
}

.archv .about-txt-col {
    padding: 32px 0
}

.archv .sec-anchor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: .06em;
    color: #FC6957;
    margin-bottom: 16px;
    text-transform: uppercase
}

.archv .sec-anchor span {
    width: 6px;
    height: 6px;
    background: #FC6957;
    transform: rotate(45deg);
    display: inline-block
}

.archv .about-hdg {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #FCFFB1;
    margin: 0 0 16px
}

.archv .about-txt {
    font-size: 16px;
    line-height: 1.55;
    color: #a89ec0;
    margin: 0 0 16px
}

.archv .about-facts {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #fcffb114
}

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

.archv .fact-num {
    font-size: 36px;
    font-weight: 800;
    color: #FC6957;
    line-height: 1.1
}

.archv .fact-lbl {
    font-size: 14px;
    color: #7a6e96;
    line-height: 1.55
}

.archv .divider-accent {
    height: 2px;
    background: linear-gradient(90deg, #005539, transparent);
    max-width: 1170px;
    margin: 0 auto
}

.archv .process-sec {
    background: #FC6957;
    padding: 96px 32px;
    position: relative;
    overflow: hidden
}

.archv .process-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #005539 0%, transparent 50%);
    opacity: .15;
    pointer-events: none
}

.archv .process-inner {
    max-width: 1170px;
    margin: 0 auto;
    position: relative
}

.archv .process-hdg {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    color: #0d0b14;
    margin: 0 0 8px;
    letter-spacing: -.01em
}

.archv .process-sub {
    font-size: 16px;
    line-height: 1.55;
    color: #0d0b14b3;
    max-width: 480px;
    margin: 0 0 64px
}

.archv .timeline {
    display: flex;
    flex-direction: column;
    gap: 0
}

.archv .tl-group {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid #0d0b1426
}

.archv .tl-period {
    font-size: 14px;
    font-weight: 700;
    color: #0d0b1480;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding-top: 4px
}

.archv .tl-events {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.archv .tl-event {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.archv .tl-dot {
    width: 10px;
    height: 10px;
    background: #0d0b14;
    border-radius: 0;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: 6px
}

.archv .tl-evtxt {
    font-size: 16px;
    line-height: 1.55;
    color: #0d0b14;
    font-weight: 600
}

.archv .tl-evdesc {
    font-size: 14px;
    line-height: 1.55;
    color: #0d0b14a6;
    margin-top: 4px
}

.archv .divider-curve2 {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #FC6957;
    margin-bottom: -1px
}

.archv .divider-curve2 svg {
    display: block;
    width: 100%
}

.archv .contact-sec {
    background: #0d0b14;
    padding: 96px 32px
}

.archv .contact-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.archv .contact-txt {
    padding: 32px 0
}

.archv .contact-hdg {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    color: #FCFFB1;
    margin: 0 0 16px;
    letter-spacing: -.01em
}

.archv .contact-body {
    font-size: 16px;
    line-height: 1.55;
    color: #a89ec0;
    margin: 0 0 32px
}

.archv .contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.archv .contact-link-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #e8e2f0;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.archv .contact-link-item:hover {
    color: #FC6957
}

.archv .contact-link-item i {
    font-size: 20px;
    color: #FC6957;
    width: 32px;
    text-align: center;
    flex-shrink: 0
}

.archv .contact-form-col {
    background: #16112a;
    border-radius: 12px;
    padding: 32px;
    box-shadow: -1px 7px 28px -1px #0055391a;
    border: 1px solid #fcffb10f
}

.archv .form-hdg {
    font-size: 20px;
    font-weight: 700;
    color: #FCFFB1;
    margin: 0 0 32px;
    line-height: 1.1
}

.archv .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.archv .form-field label {
    font-size: 14px;
    color: #7a6e96;
    font-weight: 600;
    letter-spacing: .04em
}

.archv .form-field input,
.archv .form-field textarea {
    background: #0d0b14;
    border: 1px solid #fcffb11a;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    color: #e8e2f0;
    outline: none;
    transition: border-color .2s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow .2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: inset 0 2px 4px #00553914;
    width: 100%;
    box-sizing: border-box;
    text-overflow: ellipsis
}

.archv .form-field input::placeholder,
.archv .form-field textarea::placeholder {
    color: #4a4060;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.archv .form-field input:focus,
.archv .form-field textarea:focus {
    border-color: #fc695780;
    box-shadow: inset 0 2px 4px #00553914 0 0 0 2px #fc69571f
}

.archv .form-field textarea {
    resize: vertical;
    min-height: 120px
}

.archv .form-btn {
    position: relative;
    overflow: hidden;
    background: #FC6957;
    color: #0d0b14;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: color .2s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.archv .form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #005539;
    transition: left .35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0
}

.archv .form-btn:hover::before {
    left: 0
}

.archv .form-btn:hover {
    color: #FCFFB1
}

.archv .form-btn span {
    position: relative;
    z-index: 1
}

.archv .form-btn:focus {
    outline: 2px solid #FCFFB1;
    outline-offset: 2px
}

@keyframes archvFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

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

.archv .pg-band-inner,
.archv .posts-grid,
.archv .about-inner,
.archv .process-inner,
.archv .contact-inner {
    animation: archvFadeIn .35s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

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

    .archv .about-inner,
    .archv .contact-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .archv .about-img-col {
        max-width: 480px
    }
}

@media (max-width: 768px) {
    .archv .pg-hdg {
        font-size: 36px
    }

    .archv .posts-grid {
        grid-template-columns: 1fr
    }

    .archv .about-facts {
        flex-direction: column;
        gap: 16px
    }

    .archv .tl-group {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .archv .pg-band,
    .archv .posts-grid-sec,
    .archv .about-sec,
    .archv .process-sec,
    .archv .contact-sec {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media (max-width: 360px) {
    .archv .pg-hdg {
        font-size: 26px
    }

    .archv .about-hdg,
    .archv .process-hdg,
    .archv .contact-hdg {
        font-size: 26px
    }

    .archv .about-facts {
        gap: 16px
    }
}

.srvc {
    background: #0d0b14;
    color: #e8e4f0;
    overflow-x: clip;
    container-type: inline-size
}

.srvc .fade-in {
    animation: srvFadeIn .55s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

@keyframes srvFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.srvc .pg-cap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px
}

.srvc .pg-cap.narrow {
    max-width: 760px
}

.srvc .titl {
    padding: 96px 32px 64px;
    position: relative
}

.srvc .titl-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    position: relative;
    z-index: 1
}

.srvc .titl-geo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 480px;
    border: 1px solid #fc695714;
    border-radius: 0;
    animation: slowRot 28s linear infinite;
    pointer-events: none;
    z-index: 0
}

.srvc .titl-geo::before {
    content: "";
    display: block;
    position: absolute;
    inset: 32px;
    border: 1px solid #0055391f;
    border-radius: 0;
    animation: slowRot 18s linear infinite reverse
}

@keyframes slowRot {
    to {
        transform: translateX(-50%) rotate(360deg)
    }
}

.srvc .titl-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: .12em;
    color: #FC6957;
    border: 1px solid #fc69574d;
    border-radius: 0;
    padding: 8px 16px
}

.srvc .titl-tag i {
    font-size: 16px
}

.srvc .titl-h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 700;
    color: #e8e4f0;
    max-width: 700px
}

.srvc .titl-h1 em {
    font-style: normal;
    color: #FC6957
}

.srvc .titl-sub {
    font-size: 20px;
    line-height: 1.55;
    color: #e8e4f099;
    max-width: 520px
}

.srvc .titl-img {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 1/1;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 10px 60px -1px #fc69571f
}

.srvc .titl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.75);
    mix-blend-mode: luminosity
}

.srvc .titl-img::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #fc695747 0%, transparent 60%);
    pointer-events: none
}

.srvc .svclist {
    padding: 96px 0;
    position: relative
}

.srvc .svclist::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(180deg, #FC6957 0%, transparent 100%);
    border-radius: 0
}

.srvc .svclist-grid {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.srvc .svclist-head {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px
}

.srvc .shape-anchor {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #FC6957;
    border-radius: 0;
    flex-shrink: 0
}

.srvc .svclist-h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #e8e4f0
}

.srvc .svclist-lead {
    font-size: 16px;
    line-height: 1.55;
    color: #e8e4f099;
    max-width: 520px
}

.srvc .svc-card {
    background: #ffffff08;
    border: 1px solid #ffffff12;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: -1px 1px 6px -1px #fc69570d
}

.srvc .svc-card:hover {
    border-color: #fc695759;
    box-shadow: -1px 7px 28px -1px #fc69571a
}

.srvc .svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fc69571f;
    border: 2px solid #fc695747;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srvc .svc-icon i {
    font-size: 20px;
    color: #FC6957
}

.srvc .svc-name {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: #e8e4f0
}

.srvc .svc-desc {
    font-size: 16px;
    line-height: 1.55;
    color: #e8e4f099
}

.srvc .svc-meta {
    font-size: 14px;
    color: #e8e4f066;
    letter-spacing: .04em;
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.srvc .svc-meta span {
    padding: 0 8px;
    border-left: 2px solid #fc69574d;
    border-top: 1px solid #fc695726
}

.srvc .svc-meta span:first-child {
    border-left: none;
    border-top: none;
    padding-left: 0
}

.srvc .proc {
    padding: 96px 0;
    background: linear-gradient(170deg, #0055392e 0%, transparent 70%);
    position: relative
}

.srvc .proc::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent 0%, #005539 100%);
    border-radius: 0
}

.srvc .proc-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.srvc .proc-left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvc .proc-h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #e8e4f0
}

.srvc .proc-lead {
    font-size: 16px;
    line-height: 1.55;
    color: #e8e4f099
}

.srvc .proc-img {
    margin-top: 32px;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 7px 28px -1px #0055391a
}

.srvc .proc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.6) brightness(0.8)
}

.srvc .proc-img::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, #00553966 0%, transparent 60%);
    pointer-events: none
}

.srvc .proc-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0
}

.srvc .step {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid #ffffff0f;
    align-items: flex-start
}

.srvc .step:first-child {
    padding-top: 0
}

.srvc .step:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.srvc .step-num {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #fc695726;
    letter-spacing: -.04em;
    flex-shrink: 0;
    width: 64px;
    text-align: right
}

.srvc .step-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px
}

.srvc .step-name {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: #e8e4f0
}

.srvc .step-txt {
    font-size: 16px;
    line-height: 1.55;
    color: #e8e4f099
}

.srvc .social {
    padding: 96px 0;
    background: #FC6957;
    position: relative
}

.srvc .social-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.srvc .social-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.srvc .social-h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #0d0b14
}

.srvc .testi {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvc .testi-item {
    background: #0d0b1414;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvc .testi-quote {
    font-size: 16px;
    line-height: 1.55;
    color: #0d0b14
}

.srvc .testi-person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.srvc .testi-portrait {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #0d0b1433
}

.srvc .testi-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.srvc .testi-name {
    font-size: 14px;
    font-weight: 700;
    color: #0d0b14;
    letter-spacing: .04em
}

.srvc .testi-role {
    font-size: 14px;
    color: #0d0b148c
}

.srvc .social-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvc .faq-h3 {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    color: #0d0b14
}

.srvc .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvc .faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: #0d0b1412
}

.srvc .faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #0d0b14;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background-color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.srvc .faq-q:hover {
    background: #0d0b1414
}

.srvc .faq-q:focus-visible {
    outline: 2px solid #0d0b14;
    outline-offset: 2px
}

.srvc .faq-q i {
    font-size: 20px;
    color: #0d0b14;
    flex-shrink: 0;
    transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.srvc .faq-item details[open] .faq-q i {
    transform: rotate(45deg)
}

.srvc .faq-a {
    font-size: 16px;
    line-height: 1.55;
    color: #0d0b14bf;
    padding: 0 16px 16px
}

.srvc .divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 16px 0
}

.srvc .divider-line {
    width: 40px;
    height: 1px;
    background: #e8e4f033
}

.srvc .divider-dot {
    width: 6px;
    height: 6px;
    background: #FC6957;
    border-radius: 0;
    transform: rotate(45deg)
}

@media (max-width: 1024px) {
    .srvc .proc-inner {
        flex-direction: column;
        gap: 32px
    }

    .srvc .proc-left {
        flex: none;
        width: 100%
    }

    .srvc .proc-img {
        max-width: 340px
    }

    .srvc .social-inner {
        flex-direction: column;
        gap: 32px
    }
}

@media (max-width: 768px) {
    .srvc .titl-h1 {
        font-size: 36px
    }

    .srvc .svclist-grid {
        grid-template-columns: 1fr
    }

    .srvc .svclist-h2,
    .srvc .proc-h2,
    .srvc .social-h2 {
        font-size: 26px
    }

    .srvc .titl {
        padding: 64px 32px
    }

    .srvc .svclist,
    .srvc .proc,
    .srvc .social {
        padding: 64px 0
    }

    .srvc .proc-inner,
    .srvc .social-inner {
        padding: 0 16px
    }

    .srvc .svclist-grid {
        padding: 0 16px
    }

    .srvc .titl {
        padding: 64px 16px
    }
}

@media (max-width: 360px) {
    .srvc .titl-h1 {
        font-size: 26px
    }

    .srvc .titl-sub {
        font-size: 16px
    }

    .srvc .svc-card {
        padding: 16px
    }

    .srvc .step-num {
        font-size: 36px;
        width: 48px
    }
}

.frst {
    background: #0d0b14;
    color: #e8e4f0;
    overflow-x: clip;
    container-type: inline-size
}

.frst .titband {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 340px;
    position: relative;
    padding: 64px 0;
    max-width: 1170px;
    margin: 0 auto;
    gap: 32px
}

.frst .titband .imgside {
    flex: 0 0 340px;
    position: relative;
    border-radius: 12px;
    overflow: hidden
}

.frst .titband .imgside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.frst .titband .imgside::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0d0b14 0%, transparent 70%);
    pointer-events: none
}

.frst .titband .dotpat {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #FC6957 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: .18;
    pointer-events: none
}

.frst .titband .dotpat2 {
    position: absolute;
    bottom: 16px;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #FCFFB1 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: .13;
    pointer-events: none
}

.frst .titband .textside {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding-left: 32px
}

.frst .titband .textside .eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    color: #FC6957;
    text-transform: uppercase;
    line-height: 1.55
}

.frst .titband .textside h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #e8e4f0;
    margin: 0
}

.frst .titband .textside h1 span {
    color: #FC6957
}

.frst .titband .textside h1 strong {
    color: #FCFFB1;
    font-size: 66px;
    display: block
}

.frst .titband .textside .sub {
    font-size: 16px;
    line-height: 1.55;
    color: #b0a8c4;
    max-width: 480px;
    margin: 0
}

.frst .titband .textside .acts {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.frst .titband .textside .btnprim {
    display: inline-block;
    padding: 16px 32px;
    background: #FC6957;
    color: #0d0b14;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: -1px 7px 28px -1px #fc69571a
}

.frst .titband .textside .btnprim::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #005539;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0
}

.frst .titband .textside .btnprim:hover::before {
    transform: translateX(0)
}

.frst .titband .textside .btnprim:hover {
    color: #FCFFB1
}

.frst .titband .textside .btnprim span {
    position: relative;
    z-index: 1
}

.frst .titband .textside .btnsec {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #e8e4f0;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #e8e4f033;
    cursor: pointer;
    transition: border-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1), color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.frst .titband .textside .btnsec:hover {
    border-color: #FCFFB1;
    color: #FCFFB1
}

.frst .divmon {
    text-align: center;
    padding: 32px 0;
    position: relative
}

.frst .divmon .monletter {
    font-size: 66px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #fc695740;
    line-height: 1.1;
    letter-spacing: -.04em;
    user-select: none
}

.frst .divmon .monline {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #fc69572e 30%, #fc69572e 70%, transparent 100%);
    transform: translateY(-50%);
    z-index: 0
}

.frst .workrel {
    max-width: 1170px;
    margin: 0 auto;
    padding: 64px 32px;
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 64px;
    align-items: start
}

.frst .workrel .wrleft {
    position: sticky;
    top: 32px
}

.frst .workrel .wrleft .shapeanchor {
    width: 32px;
    height: 32px;
    background: #FC6957;
    border-radius: 0;
    margin-bottom: 16px;
    box-shadow: -1px 7px 28px -1px #fc69571a
}

.frst .workrel .wrleft h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #e8e4f0;
    margin: 0 0 16px
}

.frst .workrel .wrleft .wrtag {
    font-size: 14px;
    color: #FC6957;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.55
}

.frst .workrel .wrright {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.frst .workrel .wrright .writem {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 32px;
    background: #ffffff08;
    border-radius: 12px;
    border-top: 1px solid #fc69571f;
    border-right: 1px solid #fc69570f;
    transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.frst .workrel .wrright .writem:hover {
    background: #fc69570f
}

.frst .workrel .wrright .writem .wrico {
    flex: 0 0 48px;
    height: 48px;
    background: #005539;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 7px 28px -1px #0055391a
}

.frst .workrel .wrright .writem .wrico i {
    font-size: 20px;
    color: #FCFFB1
}

.frst .workrel .wrright .writem .writxt h4 {
    font-size: 20px;
    line-height: 1.1;
    color: #e8e4f0;
    margin: 0 0 8px;
    letter-spacing: -.01em
}

.frst .workrel .wrright .writem .writxt p {
    font-size: 16px;
    line-height: 1.55;
    color: #b0a8c4;
    margin: 0
}

.frst .divmon2 {
    text-align: center;
    padding: 32px 0;
    position: relative
}

.frst .divmon2 .monletter {
    font-size: 66px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #00553959;
    line-height: 1.1;
    letter-spacing: -.04em;
    user-select: none
}

.frst .divmon2 .monline {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #00553933 30%, #00553933 70%, transparent 100%);
    transform: translateY(-50%);
    z-index: 0
}

.frst .standing {
    background: #110f1a;
    position: relative;
    overflow: hidden
}

.frst .standing::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #fc695714;
    border-radius: 0;
    pointer-events: none;
    animation: edgeglow 4s ease-in-out infinite
}

@keyframes edgeglow {

    0%,
    100% {
        box-shadow: inset 0 0 40px #fc695708
    }

    50% {
        box-shadow: inset 0 0 80px #fc695717
    }
}

.frst .standing .standinner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 32px;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center
}

.frst .standing .standinner .standimg {
    flex: 0 0 320px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: -1px 10px 60px -1px #fc69571f
}

.frst .standing .standinner .standimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.frst .standing .standinner .standtxt {
    flex: 1 1 0
}

.frst .standing .standinner .standtxt .shapeanchor {
    width: 24px;
    height: 24px;
    border: 2px solid #FCFFB1;
    border-radius: 0;
    margin-bottom: 16px
}

.frst .standing .standinner .standtxt h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #e8e4f0;
    margin: 0 0 16px
}

.frst .standing .standinner .standtxt p {
    font-size: 16px;
    line-height: 1.55;
    color: #b0a8c4;
    margin: 0 0 16px
}

.frst .standing .standinner .standtxt .assoclist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px
}

.frst .standing .standinner .standtxt .assoclist .assoctag {
    padding: 8px 16px;
    border-radius: 0;
    border: 1px solid #fcffb133;
    font-size: 14px;
    color: #FCFFB1;
    letter-spacing: .06em;
    position: relative;
    overflow: hidden;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.frst .standing .standinner .standtxt .assoclist .assoctag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #FCFFB1;
    transform: translateX(-100%);
    transition: transform .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.frst .standing .standinner .standtxt .assoclist .assoctag:hover::before {
    transform: translateX(0)
}

.frst .standing .standinner .standtxt .assoclist .assoctag:hover {
    color: #0d0b14
}

.frst .standing .standinner .standtxt .assoclist .assoctag span {
    position: relative;
    z-index: 1
}

.frst .divmon3 {
    text-align: center;
    padding: 32px 0;
    position: relative
}

.frst .divmon3 .monletter {
    font-size: 66px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #fcffb133;
    line-height: 1.1;
    letter-spacing: -.04em;
    user-select: none
}

.frst .divmon3 .monline {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #fcffb126 30%, #fcffb126 70%, transparent 100%);
    transform: translateY(-50%);
    z-index: 0
}

.frst .patternblock {
    background: #FC6957;
    position: relative
}

.frst .patternblock .pattinner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 32px
}

.frst .patternblock .pattinner .shapeanchor {
    width: 28px;
    height: 28px;
    background: #0d0b14;
    border-radius: 0;
    margin-bottom: 16px
}

.frst .patternblock .pattinner h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #0d0b14;
    margin: 0 0 16px;
    max-width: 600px
}

.frst .patternblock .pattinner .pattlead {
    font-size: 20px;
    line-height: 1.55;
    color: #0d0b14;
    margin: 0 0 32px;
    max-width: 560px
}

.frst .patternblock .pattinner .pattgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px
}

.frst .patternblock .pattinner .pattgrid .pattcard {
    background: #0d0b1414;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.frst .patternblock .pattinner .pattgrid .pattcard .pattport {
    flex: 0 0 64px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden
}

.frst .patternblock .pattinner .pattgrid .pattcard .pattport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.frst .patternblock .pattinner .pattgrid .pattcard .patttxt h5 {
    font-size: 16px;
    color: #0d0b14;
    margin: 0 0 8px;
    line-height: 1.1;
    font-weight: 700
}

.frst .patternblock .pattinner .pattgrid .pattcard .patttxt .pattname {
    font-size: 14px;
    color: #0d0b1499;
    margin: 0 0 8px;
    line-height: 1.55
}

.frst .patternblock .pattinner .pattgrid .pattcard .patttxt p {
    font-size: 14px;
    line-height: 1.55;
    color: #0d0b14bf;
    margin: 0
}

.frst .patternblock .pattinner .pattgrid .pattcard.breakout {
    grid-column: span 2;
    background: #0d0b1424;
    border-left: 4px solid #005539;
    border-radius: 0 12px 12px 0
}

.frst .divmon4 {
    text-align: center;
    padding: 32px 0;
    position: relative
}

.frst .divmon4 .monletter {
    font-size: 66px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #00553940;
    line-height: 1.1;
    letter-spacing: -.04em;
    user-select: none
}

.frst .divmon4 .monline {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #0055392e 30%, #0055392e 70%, transparent 100%);
    transform: translateY(-50%);
    z-index: 0
}

.frst .notfor {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start
}

.frst .notfor .nfhead {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px
}

.frst .notfor .nfhead .shapeanchor {
    width: 20px;
    height: 20px;
    border: 2px solid #FC6957;
    border-radius: 0;
    flex-shrink: 0;
    margin-top: 8px
}

.frst .notfor .nfhead h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #e8e4f0;
    margin: 0
}

.frst .notfor .nfitem {
    padding: 32px;
    background: #ffffff05;
    border-radius: 12px;
    border-top: 2px solid #fc695733
}

.frst .notfor .nfitem h5 {
    font-size: 16px;
    color: #FC6957;
    margin: 0 0 8px;
    line-height: 1.1;
    font-weight: 700
}

.frst .notfor .nfitem p {
    font-size: 14px;
    line-height: 1.55;
    color: #b0a8c4;
    margin: 0
}

.frst .notfor .nfimg {
    grid-column: span 3;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: -1px 10px 60px -1px #0055391f
}

.frst .notfor .nfimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.frst .divmon5 {
    text-align: center;
    padding: 32px 0;
    position: relative
}

.frst .divmon5 .monletter {
    font-size: 66px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #fc69572e;
    line-height: 1.1;
    letter-spacing: -.04em;
    user-select: none
}

.frst .divmon5 .monline {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #fc695724 30%, #fc695724 70%, transparent 100%);
    transform: translateY(-50%);
    z-index: 0
}

.frst .commit {
    background: #0a0812;
    position: relative;
    overflow: hidden
}

.frst .commit::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #0055391f;
    pointer-events: none;
    animation: edgeglow2 5s ease-in-out infinite
}

@keyframes edgeglow2 {

    0%,
    100% {
        box-shadow: inset 0 0 50px #0055390a
    }

    50% {
        box-shadow: inset 0 0 100px #0055391a
    }
}

.frst .commit .commitinner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 32px;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.frst .commit .commitinner .commitlft {
    flex: 0 0 30%
}

.frst .commit .commitinner .commitlft .shapeanchor {
    width: 32px;
    height: 8px;
    background: #005539;
    border-radius: 0;
    margin-bottom: 16px
}

.frst .commit .commitinner .commitlft h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #e8e4f0;
    margin: 0 0 16px
}

.frst .commit .commitinner .commitlft p {
    font-size: 16px;
    line-height: 1.55;
    color: #b0a8c4;
    margin: 0
}

.frst .commit .commitinner .commitrgt {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.frst .commit .commitinner .commitrgt .reqitem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: #ffffff08;
    border-radius: 12px;
    transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.frst .commit .commitinner .commitrgt .reqitem:hover {
    background: #0055391f
}

.frst .commit .commitinner .commitrgt .reqitem .reqnum {
    font-size: 26px;
    font-weight: 900;
    color: #fc695733;
    line-height: 1.1;
    flex: 0 0 48px;
    letter-spacing: -.03em
}

.frst .commit .commitinner .commitrgt .reqitem .reqtxt h5 {
    font-size: 16px;
    color: #e8e4f0;
    margin: 0 0 4px;
    line-height: 1.1
}

.frst .commit .commitinner .commitrgt .reqitem .reqtxt p {
    font-size: 14px;
    line-height: 1.55;
    color: #b0a8c4;
    margin: 0
}

.frst .commit .commitinner .commitrgt .reqitem.featured {
    background: #0055392e;
    border-top: 1px solid #00553966;
    border-right: 1px solid #00553933;
    transform: translateX(16px) !important;
    margin-left: 0
}

.frst .commit .commitinner .commitrgt .reqitem.featured .reqnum {
    color: #005539
}

@media (max-width: 1024px) {
    .frst .titband {
        flex-direction: column;
        padding: 64px 32px
    }

    .frst .titband .imgside {
        flex: 0 0 240px;
        width: 100%;
        max-height: 240px
    }

    .frst .titband .textside {
        padding-left: 0
    }

    .frst .workrel {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frst .workrel .wrleft {
        position: static
    }

    .frst .standing .standinner {
        flex-direction: column;
        padding: 64px 32px
    }

    .frst .standing .standinner .standimg {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        aspect-ratio: 1/1
    }

    .frst .notfor {
        grid-template-columns: 1fr 1fr;
        padding: 64px 32px
    }

    .frst .notfor .nfhead {
        grid-column: span 2
    }

    .frst .notfor .nfimg {
        grid-column: span 2
    }

    .frst .patternblock .pattinner .pattgrid {
        grid-template-columns: 1fr
    }

    .frst .patternblock .pattinner .pattgrid .pattcard.breakout {
        grid-column: span 1
    }

    .frst .commit .commitinner {
        flex-direction: column;
        padding: 64px 32px;
        gap: 32px
    }

    .frst .commit .commitinner .commitlft {
        flex: none;
        width: 100%
    }
}

@media (max-width: 768px) {
    .frst .titband .textside h1 {
        font-size: 36px
    }

    .frst .titband .textside h1 strong {
        font-size: 50px
    }

    .frst .notfor {
        grid-template-columns: 1fr;
        padding: 64px 16px
    }

    .frst .notfor .nfhead {
        grid-column: span 1
    }

    .frst .notfor .nfimg {
        grid-column: span 1
    }

    .frst .workrel {
        padding: 64px 16px
    }

    .frst .standing .standinner {
        padding: 64px 16px
    }

    .frst .patternblock .pattinner {
        padding: 64px 16px
    }

    .frst .commit .commitinner {
        padding: 64px 16px
    }

    .frst .commit .commitinner .commitrgt .reqitem.featured {
        transform: translateX(8px) !important
    }
}

@media (max-width: 360px) {
    .frst .titband {
        padding: 32px 16px
    }

    .frst .titband .textside h1 {
        font-size: 26px
    }

    .frst .titband .textside h1 strong {
        font-size: 36px
    }

    .frst .titband .textside .acts {
        flex-direction: column
    }

    .frst .workrel .wrright .writem {
        flex-direction: column
    }
}

.successPage {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background: #0d0b14
}

.successPage .successWrap {
    max-width: 560px;
    width: 100%;
    text-align: center
}

.successPage .iconRing {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: #005539;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: -1px 7px 28px -1px #0055391a
}

.successPage .iconRing svg {
    display: block
}

.successPage .successTitle {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #FCFFB1;
    font-weight: 700;
    margin: 0 0 16px
}

.successPage .successBody {
    font-size: 16px;
    line-height: 1.55;
    color: #b8b4cc;
    margin: 0 0 32px
}

.successPage .successBody span {
    color: #e8e4f8
}

.successPage .dividerLine {
    width: 48px;
    height: 2px;
    background: #FC6957;
    margin: 0 auto 32px;
    border-radius: 0
}

.successPage .returnBtn {
    display: inline-block;
    padding: 16px 32px;
    background: #FC6957;
    color: #0d0b14;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: .01em;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: -1px 7px 28px -1px #fc69571a;
    transition: color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.successPage .returnBtn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #005539;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 12px
}

.successPage .returnBtn:hover {
    color: #FCFFB1
}

.successPage .returnBtn:hover::before {
    transform: translateX(0)
}

.successPage .returnBtn .btnLabel {
    position: relative;
    z-index: 1
}

.successPage .metaNote {
    margin: 32px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: #6b6480
}

.successPage .metaNote a {
    color: #FC6957;
    text-decoration: none;
    border-bottom: 1px solid #fc69574d;
    transition: border-color 150ms cubic-bezier(0.34, 1.56, 0.64, 1), color 150ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.successPage .metaNote a:hover {
    color: #FCFFB1;
    border-color: #fcffb166
}

@media (max-width: 768px) {
    .successPage {
        padding: 64px 16px
    }

    .successPage .successTitle {
        font-size: 26px
    }
}

@media (max-width: 360px) {
    .successPage {
        padding: 64px 8px
    }

    .successPage .successWrap {
        padding: 0 8px
    }
}