@import "https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&display=swap";

html {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;
    scrollbar-gutter: stable;
    background: #0d0d0d;
    color: #FDFFF5;
    font-family: 'Oxygen', sans-serif;
    font-size: 16px;
    line-height: 1.6
}

.brandzone {
    background: linear-gradient(165deg, #1a0d24 0%, #0d0d0d 58%);
    border-bottom: 2px solid #7a27a547;
    padding: 32px 0;
    position: relative
}

.brandzone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #da870266 50%, transparent 100%)
}

.brandcontainer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.brandrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.logowrap {
    display: flex;
    align-items: center;
    gap: 16px
}

.logoframe {
    width: 72px;
    height: 72px;
    padding: 8px;
    background: #0d0d0dd9;
    border-radius: 12px;
    box-shadow: 0 0 0 1px #7a27a559 1px 1px 4px 0 #7a27a50d 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.logoframe:hover {
    box-shadow: 0 0 0 1px #7a27a58c 1px 1px 4px 0 #7a27a514 1px 5px 22px 0 #7a27a52e 1px 9px 44px 0 #7a27a538
}

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

.brandtext {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FDFFF5;
    letter-spacing: 0;
    line-height: 1.1
}

.credentialmark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #da87021f;
    border-radius: 8px;
    font-size: 16px;
    color: #DA8702;
    border: 1px solid #da870240;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.credentialmark::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #DA8702;
    border-radius: 3px;
    box-shadow: 0 0 8px #da870299
}

.credentialmark:hover {
    background: #da87022e
}

.navzone {
    background: #0d0d0d99;
    border-bottom: 1px solid #7a27a526;
    padding: 16px 0
}

.navcontainer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.navlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0
}

.navlist li {
    margin: 0
}

.navlist a {
    display: block;
    padding: 8px 16px;
    font-size: 16px;
    color: #FDFFF5;
    text-decoration: none;
    border-radius: 8px;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.navlist a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #7a27a526, transparent);
    transition: left .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.navlist a:hover {
    background: #7a27a533;
    color: #FDFFF5
}

.navlist a:hover::before {
    left: 100%
}

.navlist a:focus {
    outline: 3px solid #7A27A5;
    outline-offset: 2px
}

.contactzone {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.contactitem {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #7a27a514;
    border-radius: 8px;
    font-size: 16px;
    color: #FDFFF5;
    text-decoration: none;
    border: 1px solid #7a27a533;
    transition: background .19s cubic-bezier(0.4, 0, 0.2, 1), border-color .19s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactitem:hover {
    background: #7a27a526;
    border-color: #7a27a559
}

.contactitem:focus {
    outline: 3px solid #7A27A5;
    outline-offset: 2px
}

.contactitem .typcn {
    font-size: 18px;
    color: #DA8702
}

.footerzone {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a0d24 100%);
    border-top: 2px solid #7a27a547;
    padding: 32px 0;
    position: relative
}

.footerzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #da870266 50%, transparent 100%)
}

.footercontainer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.footergrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 32px
}

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

.footerheading {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #DA8702;
    margin: 0;
    line-height: 1.1
}

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

.footerlinks a {
    display: inline-block;
    padding: 4px 0;
    font-size: 16px;
    color: #FDFFF5;
    text-decoration: none;
    transition: color .17s cubic-bezier(0.4, 0, 0.2, 1), transform .17s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.footerlinks a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7A27A5;
    transition: width .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.footerlinks a:hover {
    color: #DA8702;
    transform: translateX(4px)
}

.footerlinks a:hover::after {
    width: 100%
}

.footerlinks a:focus {
    outline: 3px solid #7A27A5;
    outline-offset: 2px
}

.footerbottom {
    border-top: 1px solid #7a27a533;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.footerbrand {
    display: flex;
    align-items: center;
    gap: 16px
}

.footerlogoframe {
    width: 56px;
    height: 56px;
    padding: 8px;
    background: #0d0d0dd9;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #7a27a559 1px 1px 4px 0 #7a27a50d 1px 5px 22px 0 #7a27a51c
}

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

.footerbrandtext {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FDFFF5;
    line-height: 1.1
}

.footercopyright {
    font-size: 16px;
    color: #fdfff5b3
}

.cookiebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a0d24 0%, #0d0d0d 100%);
    border-top: 2px solid #7a27a566;
    padding: 16px 32px;
    z-index: 4000;
    box-shadow: 1px 1px 4px 0 #7a27a50d 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.cookiebar.visible {
    opacity: 1;
    transform: translateY(0)
}

.cookiewrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.cookietext {
    flex: 1;
    min-width: 280px
}

.cookieheadline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FDFFF5;
    margin: 0 0 4px;
    line-height: 1.1
}

.cookiedesc {
    font-size: 16px;
    color: #fdfff5cc;
    margin: 0;
    line-height: 1.6
}

.cookieactions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.cookiebtn {
    padding: 8px 16px;
    font-size: 16px;
    font-family: 'Oxygen', sans-serif;
    color: #FDFFF5;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: underline;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.cookiebtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 8px;
    background: #7a27a54d;
    transform: translate(-50%, -50%);
    transition: width .26s cubic-bezier(0.0, 0, 0.2, 1), height .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.cookiebtn:hover::before {
    width: 100%;
    height: 100%
}

.cookiebtn:hover {
    color: #DA8702
}

.cookiebtn:focus {
    outline: 3px solid #7A27A5;
    outline-offset: 2px
}

.cookiebtn.primary {
    background: #7A27A5;
    text-decoration: none;
    box-shadow: 1px 1px 4px 0 #7a27a50d
}

.cookiebtn.primary::before {
    background: #da87024d
}

.cookiebtn.primary:hover {
    background: #8e2fc4;
    color: #FDFFF5
}

.cookiesettings {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #7a27a533
}

.cookiesettings.visible {
    display: flex
}

.cookietoggle {
    display: flex;
    align-items: center;
    gap: 8px
}

.cookietoggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #7A27A5
}

.cookietoggle label {
    font-size: 16px;
    color: #FDFFF5;
    cursor: pointer
}

@media (max-width: 768px) {
    .brandrow {
        flex-direction: column;
        align-items: flex-start
    }

    .contactzone {
        width: 100%;
        justify-content: flex-start
    }

    .navlist {
        justify-content: flex-start
    }

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

    .footerbottom {
        flex-direction: column;
        align-items: flex-start
    }

    .cookiewrap {
        flex-direction: column;
        align-items: flex-start
    }

    .cookieactions {
        width: 100%;
        justify-content: flex-start
    }
}

@media (max-width: 1280px) {

    .brandcontainer,
    .navcontainer,
    .footercontainer {
        padding: 0 16px
    }

    .cookiebar {
        padding: 16px
    }
}

.policy-view {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px;
    background: #0a0a0a;
    color: #FDFFF5
}

.policy-view h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 32px;
    color: #FDFFF5
}

.policy-view h2 {
    font-size: 22px;
    line-height: 1.1;
    margin: 32px 0 16px;
    color: #DA8702
}

.policy-view h3 {
    font-size: 18px;
    line-height: 1.1;
    margin: 32px 0 16px;
    color: #7A27A5
}

.policy-view h4,
.policy-view h5,
.policy-view h6 {
    font-size: 16px;
    line-height: 1.1;
    margin: 32px 0 16px;
    color: #FDFFF5
}

.policy-view p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #FDFFF5
}

.policy-view ul,
.policy-view ol {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    padding: 0 0 0 32px;
    color: #FDFFF5
}

.policy-view li {
    margin: 0 0 8px
}

.policy-view li:last-child {
    margin-bottom: 0
}

.policy-view em,
.policy-view i {
    font-style: italic;
    color: #DA8702
}

.policy-view table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 32px;
    font-size: 16px;
    background: #121212;
    border-radius: 8px;
    overflow: hidden
}

.policy-view thead {
    background: linear-gradient(135deg, #7A27A5 0%, #1a0a24 100%)
}

.policy-view th {
    padding: 16px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    border-bottom: 1px solid #7a27a54d
}

.policy-view td {
    padding: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    border-bottom: 1px solid #7a27a526
}

.policy-view tbody tr:last-child td {
    border-bottom: none
}

.policy-view tbody tr {
    transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-view tbody tr:hover {
    background: #7a27a514
}

.policy-view hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7a27a54d 50%, transparent 100%);
    margin: 32px 0
}

@media (max-width: 768px) {
    .policy-view {
        padding: 16px 8px
    }

    .policy-view h1 {
        font-size: 22px;
        margin-bottom: 16px
    }

    .policy-view h2 {
        font-size: 18px
    }

    .policy-view h3,
    .policy-view h4,
    .policy-view h5,
    .policy-view h6 {
        font-size: 16px
    }

    .policy-view table {
        font-size: 16px
    }

    .policy-view th,
    .policy-view td {
        padding: 8px
    }
}

.blogdetail {
    background: #0a0a0a;
    color: #FDFFF5;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: clip
}

.blogdetail::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: -2;
    animation: breathe 8s ease-in-out infinite
}

@keyframes breathe {

    0%,
    100% {
        filter: brightness(1)
    }

    50% {
        filter: brightness(1.08)
    }
}

.blogdetail * {
    box-sizing: border-box
}

.blogdetail .crumbs {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.blogdetail .crumbs a,
.blogdetail .crumbs span {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .6;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.blogdetail .crumbs a:hover {
    opacity: 1
}

.blogdetail .crumbs span {
    opacity: 1
}

.blogdetail .crumbs::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #DA8702;
    border-radius: 50%;
    margin: 0 4px
}

.blogdetail .crumbs a:not(:last-of-type)::after {
    content: '/';
    margin: 0 0 0 8px;
    opacity: .4
}

.blogdetail .leadzone {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: center;
    position: relative
}

.blogdetail .leadzone::before {
    content: '';
    position: absolute;
    top: -80px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7a27a526 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0
}

.blogdetail .leadzone::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #da87021f 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0
}

.blogdetail .imagebox {
    position: relative;
    z-index: 1
}

.blogdetail .imagebox img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    border-radius: 8px
}

.blogdetail .textbox {
    position: relative;
    z-index: 1
}

.blogdetail .tagline {
    display: inline-block;
    font-size: 16px;
    line-height: 1.6;
    color: #DA8702;
    background: #da87021a;
    padding: 4px 16px;
    border-radius: 3px;
    margin: 0 0 16px
}

.blogdetail .textbox h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 300;
    letter-spacing: 0;
    color: #FDFFF5
}

.blogdetail .textbox h1 span {
    color: #7A27A5
}

.blogdetail .subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .8;
    margin: 0 0 32px
}

.blogdetail .linkrow {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.blogdetail .linkrow a {
    font-size: 16px;
    line-height: 1.6;
    color: #7A27A5;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.blogdetail .linkrow a:hover {
    border-bottom-color: #7A27A5
}

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

.blogdetail .authorinfo {
    display: flex;
    align-items: center;
    gap: 8px
}

.blogdetail .authorinfo svg {
    width: 20px;
    height: 20px;
    fill: #DA8702
}

.blogdetail .authorinfo span {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5
}

.blogdetail .stats {
    display: flex;
    gap: 32px;
    align-items: center
}

.blogdetail .statitem {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .7
}

.blogdetail .statitem svg {
    width: 18px;
    height: 18px;
    fill: #7A27A5
}

.blogdetail .articlecontent {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    position: relative
}

.blogdetail .articlecontent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #7A27A5 0%, #0a0a0a 100%);
    opacity: .03;
    pointer-events: none;
    z-index: 0
}

.blogdetail .maincol {
    position: relative;
    z-index: 1
}

.blogdetail .maincol h2 {
    font-size: 22px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 32px 0 16px;
    font-weight: 600
}

.blogdetail .maincol h3 {
    font-size: 18px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 32px 0 16px;
    font-weight: 600
}

.blogdetail .maincol p {
    font-size: 18px;
    line-height: 1.6;
    color: #FDFFF5;
    margin: 0 0 16px;
    opacity: .9
}

.blogdetail .maincol mark {
    background: linear-gradient(90deg, #7A27A5 0%, #DA8702 100%);
    color: #FDFFF5;
    padding: 4px 8px;
    border-radius: 3px
}

.blogdetail .maincol code {
    background: #7a27a526;
    color: #DA8702;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1.6
}

.blogdetail .maincol table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: #7a27a50d;
    border-radius: 8px;
    overflow: hidden
}

.blogdetail .maincol thead {
    background: #7a27a533
}

.blogdetail .maincol th,
.blogdetail .maincol td {
    padding: 16px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    border-bottom: 1px solid #fdfff51a
}

.blogdetail .maincol caption {
    padding: 16px;
    font-size: 18px;
    line-height: 1.6;
    color: #DA8702;
    text-align: left;
    font-weight: 600
}

.blogdetail .sidecol {
    position: relative;
    z-index: 1
}

.blogdetail .highlightbox {
    background: #da870214;
    border: 2px dashed #da87024d;
    border-radius: 12px;
    padding: 32px;
    position: sticky;
    top: 32px
}

.blogdetail .highlightbox h3 {
    font-size: 18px;
    line-height: 1.1;
    color: #DA8702;
    margin: 0 0 16px;
    font-weight: 600
}

.blogdetail .highlightbox p {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    margin: 0 0 16px;
    opacity: .85
}

.blogdetail .highlightbox p:last-child {
    margin: 0
}

.blogdetail .divider {
    position: relative;
    height: 80px;
    overflow: hidden
}

.blogdetail .divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    fill: #7a27a51a
}

.blogdetail .featuregrid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px;
    background: #050505;
    position: relative
}

.blogdetail .featuregrid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none" stroke="#7a27a50d" stroke-width="1"/></svg>');
    opacity: .5;
    pointer-events: none;
    z-index: 0
}

.blogdetail .featuregrid h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0 0 32px;
    font-weight: 300;
    text-align: center;
    position: relative;
    z-index: 1
}

.blogdetail .featurelist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1
}

.blogdetail .featurecard {
    background: #7a27a50f;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .25s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: 1px 1px 4px 0 #7a27a50d 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521
}

.blogdetail .featurecard:hover {
    transform: translateY(-4px);
    box-shadow: 1px 1px 4px 0 #da87020d 1px 5px 22px 0 #da87021c 1px 9px 44px 0 #da870221
}

.blogdetail .featurecard.left .iconwrap {
    float: left;
    margin: 0 16px 16px 0
}

.blogdetail .featurecard.right .iconwrap {
    float: right;
    margin: 0 0 16px 16px
}

.blogdetail .iconwrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7A27A5 0%, #DA8702 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.blogdetail .iconwrap svg {
    width: 32px;
    height: 32px;
    fill: #FDFFF5
}

.blogdetail .featurecard h3 {
    font-size: 22px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0 0 16px;
    font-weight: 600
}

.blogdetail .featurecard p {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    margin: 0;
    opacity: .85;
    clear: both
}

.blogdetail .visualpanel {
    position: relative;
    padding: 32px 0;
    overflow: hidden
}

.blogdetail .visualpanel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="#da870208" stroke-width="1"/></svg>');
    opacity: .6;
    pointer-events: none;
    z-index: 0
}

.blogdetail .visualpanel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #7A27A5 0%, #0a0a0af2 100%);
    opacity: .85;
    pointer-events: none;
    z-index: 1
}

.blogdetail .visualpanel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block
}

.blogdetail .dualcontent {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
    margin-top: -200px
}

.blogdetail .contentbox {
    background: #050505f2;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 1px 1px 4px 0 #7a27a50d 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521
}

.blogdetail .contentbox h3 {
    font-size: 22px;
    line-height: 1.1;
    color: #DA8702;
    margin: 0 0 16px;
    font-weight: 600
}

.blogdetail .contentbox p {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    margin: 0 0 16px;
    opacity: .85
}

.blogdetail .contentbox ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.blogdetail .contentbox li {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    margin: 0 0 8px;
    padding: 0 0 0 32px;
    position: relative;
    opacity: .85
}

.blogdetail .contentbox li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #7A27A5;
    border-radius: 50%
}

.blogdetail .visualbox {
    background: #050505f2;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 4px 0 #da87020d 1px 5px 22px 0 #da87021c 1px 9px 44px 0 #da870221
}

.blogdetail .visualbox svg {
    width: 120px;
    height: 120px;
    margin: 0 0 16px
}

.blogdetail .visualbox .circle {
    fill: none;
    stroke: #7a27a533;
    stroke-width: 8
}

.blogdetail .visualbox .progress {
    fill: none;
    stroke: url(#grad);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 70;
    transform-origin: center;
    transform: rotate(-90deg);
    animation: fillcircle 3s ease-in-out infinite
}

@keyframes fillcircle {

    0%,
    100% {
        stroke-dashoffset: 70
    }

    50% {
        stroke-dashoffset: 20
    }
}

.blogdetail .visualbox p {
    font-size: 18px;
    line-height: 1.6;
    color: #FDFFF5;
    text-align: center;
    margin: 0;
    opacity: .85
}

@media (max-width: 1280px) {
    .blogdetail .leadzone {
        grid-template-columns: 1fr;
        padding: 32px 16px
    }

    .blogdetail .articlecontent {
        grid-template-columns: 1fr;
        padding: 32px 16px
    }

    .blogdetail .featurelist {
        grid-template-columns: 1fr
    }

    .blogdetail .dualcontent {
        grid-template-columns: 1fr;
        padding: 32px 16px;
        margin-top: -150px
    }

    .blogdetail .textbox h1 {
        font-size: 56px
    }

    .blogdetail .featuregrid h2 {
        font-size: 56px
    }
}

@media (max-width: 768px) {
    .blogdetail .leadzone {
        padding: 16px
    }

    .blogdetail .textbox h1 {
        font-size: 22px
    }

    .blogdetail .featuregrid h2 {
        font-size: 22px
    }

    .blogdetail .metadata {
        flex-direction: column;
        align-items: flex-start
    }

    .blogdetail .stats {
        width: 100%;
        justify-content: space-between
    }

    .blogdetail .crumbs {
        padding: 16px
    }

    .blogdetail .articlecontent {
        padding: 16px
    }

    .blogdetail .featuregrid {
        padding: 16px
    }

    .blogdetail .dualcontent {
        padding: 16px;
        margin-top: -100px
    }

    .blogdetail .highlightbox {
        position: static
    }
}

.podcast {
    background: #000;
    color: #FDFFF5;
    margin: 0;
    padding: 0
}

.podcast .titlearea {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 16px 144px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

.podcast .titlearea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #7A27A5 0%, #FDFFF5 100%)
}

.podcast .titlearea h1 {
    font-size: 72px;
    line-height: 1.1;
    margin: 0;
    font-weight: 300;
    letter-spacing: .02em;
    background: linear-gradient(90deg, #7A27A5 0%, #DA8702 50%, #FDFFF5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.podcast .titlearea img {
    width: 100%;
    max-width: 680px;
    height: auto;
    border-radius: 12px;
    opacity: .75;
    filter: saturate(0.6);
    box-shadow: 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521
}

.podcast .episodes {
    background: #0a0a0a;
    padding: 72px 16px;
    position: relative;
    overflow: hidden
}

.podcast .episodes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #7A27A5
}

.podcast .episodes .episodeswrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: start
}

.podcast .episodes .sidebar {
    background: linear-gradient(180deg, #7a27a514 0%, #0a0a0a00 100%);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #7a27a533;
    position: relative
}

.podcast .episodes .sidebar::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid #7a27a51a;
    border-radius: 8px;
    pointer-events: none
}

.podcast .episodes .sidebar h2 {
    font-size: 22px;
    line-height: 1.1;
    margin: 0 0 16px;
    color: #DA8702;
    font-weight: 600
}

.podcast .episodes .sidebar p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #fdfff5d9
}

.podcast .episodes .sidebar .statshape {
    width: 120px;
    height: 120px;
    margin: 32px auto 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid #7A27A5;
    border-radius: 50%;
    background: #7a27a50d;
    box-shadow: inset 1px 2px 4px 0 #7a27a526
}

.podcast .episodes .sidebar .statshape .statnum {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: #DA8702;
    margin: 0
}

.podcast .episodes .sidebar .statshape .statlabel {
    font-size: 16px;
    line-height: 1.1;
    color: #fdfff5b3;
    margin: 4px 0 0
}

.podcast .episodes .maincontent {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.podcast .episodes .maincontent h3 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 32px;
    font-weight: 300;
    color: #FDFFF5;
    letter-spacing: .01em
}

.podcast .episodes .episodelist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    animation: cascadeappear .9s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

@keyframes cascadeappear {
    0% {
        opacity: 0;
        transform: translateY(32px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.podcast .episodes .episodelist .episodecard {
    background: linear-gradient(135deg, #da87020f 0%, #0a0a0acc 100%);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #da870226;
    position: relative;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    animation-delay: calc(var(--card-index) * 0.12s)
}

.podcast .episodes .episodelist .episodecard:nth-child(1) {
    --card-index: 0
}

.podcast .episodes .episodelist .episodecard:nth-child(2) {
    --card-index: 1
}

.podcast .episodes .episodelist .episodecard:nth-child(3) {
    --card-index: 2
}

.podcast .episodes .episodelist .episodecard:nth-child(4) {
    --card-index: 3
}

.podcast .episodes .episodelist .episodecard:nth-child(5) {
    --card-index: 4
}

.podcast .episodes .episodelist .episodecard:nth-child(6) {
    --card-index: 5
}

.podcast .episodes .episodelist .episodecard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7A27A5 0%, #DA8702 100%);
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.podcast .episodes .episodelist .episodecard:hover {
    transform: translateY(-4px);
    box-shadow: 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521;
    border-color: #da870266
}

.podcast .episodes .episodelist .episodecard:hover::before {
    opacity: 1
}

.podcast .episodes .episodelist .episodecard .episodenum {
    font-size: 18px;
    line-height: 1.1;
    color: #7A27A5;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: .05em
}

.podcast .episodes .episodelist .episodecard h4 {
    font-size: 22px;
    line-height: 1.1;
    margin: 0 0 16px;
    color: #FDFFF5;
    font-weight: 600
}

.podcast .episodes .episodelist .episodecard p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #fdfff5bf
}

.podcast .resources {
    background: #000;
    padding: 72px 16px;
    position: relative;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #7a27a505 2px, #7a27a505 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #7a27a505 2px, #7a27a505 4px);
    background-size: 32px 32px
}

.podcast .resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #DA8702
}

.podcast .resources .resourceswrap {
    max-width: 1100px;
    margin: 0 auto
}

.podcast .resources h2 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 32px;
    font-weight: 300;
    color: #FDFFF5;
    text-align: center
}

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

.podcast .resources .resourcegrid .resourceitem {
    background: linear-gradient(180deg, #da87020d 0%, #0009 100%);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #da870233;
    position: relative;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .18s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px
}

.podcast .resources .resourcegrid .resourceitem::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid #da870214;
    border-radius: 8px;
    pointer-events: none
}

.podcast .resources .resourcegrid .resourceitem:hover {
    transform: scale(1.03);
    border-color: #da870280
}

.podcast .resources .resourcegrid .resourceitem .iconwrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7A27A5 0%, #DA8702 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 4px 0 #7a27a50d
}

.podcast .resources .resourcegrid .resourceitem .iconwrap svg {
    width: 32px;
    height: 32px;
    fill: #FDFFF5
}

.podcast .resources .resourcegrid .resourceitem h4 {
    font-size: 22px;
    line-height: 1.1;
    margin: 0;
    color: #FDFFF5;
    font-weight: 600
}

.podcast .resources .resourcegrid .resourceitem p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #fdfff5cc
}

.podcast .resources .resourcegrid .resourceitem .resourcelink {
    font-size: 16px;
    line-height: 1.1;
    color: #DA8702;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), gap .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.podcast .resources .resourcegrid .resourceitem .resourcelink:hover {
    color: #FDFFF5;
    gap: 12px
}

.podcast .resources .resourcegrid .resourceitem .resourcelink::after {
    content: '→';
    font-size: 18px
}

@media (max-width: 1280px) {
    .podcast .titlearea h1 {
        font-size: 56px
    }

    .podcast .episodes .episodeswrap {
        grid-template-columns: 1fr
    }

    .podcast .episodes .sidebar {
        order: 2
    }

    .podcast .episodes .maincontent {
        order: 1
    }

    .podcast .resources .resourcegrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .podcast .titlearea {
        padding: 56px 16px 96px
    }

    .podcast .titlearea h1 {
        font-size: 56px
    }

    .podcast .episodes {
        padding: 56px 16px
    }

    .podcast .episodes .maincontent h3 {
        font-size: 56px
    }

    .podcast .episodes .episodelist {
        grid-template-columns: 1fr
    }

    .podcast .resources {
        padding: 56px 16px
    }

    .podcast .resources h2 {
        font-size: 56px
    }

    .podcast .resources .resourcegrid {
        grid-template-columns: 1fr
    }
}

::selection {
    background: #7a27a526;
    color: #FDFFF5
}

.blog {
    background: #000;
    color: #FDFFF5;
    padding: 0;
    margin: 0
}

.blog * {
    box-sizing: border-box
}

.blog .titlezone {
    position: relative;
    padding: 32px 16px;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden
}

.blog .titlezone img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
    border-radius: 8px;
    margin-bottom: 32px
}

.blog .titlewrap {
    position: relative;
    z-index: 2
}

.blog .titlewrap h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 16px;
    color: #FDFFF5;
    font-weight: 300;
    letter-spacing: 0
}

.blog .titlewrap .tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .85;
    margin: 0
}

.blog .decorshape {
    position: absolute;
    top: 32px;
    right: 16px;
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, #7A27A5 0%, #7a27a533 100%);
    transform: rotate(45deg);
    opacity: .15;
    pointer-events: none;
    z-index: 1
}

.blog .postsgrid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px
}

.blog .postcard {
    background: linear-gradient(135deg, #7a27a514 0%, #0009 100%);
    border-radius: 12px;
    padding: 32px;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: 1px 1px 4px 0 #7a27a50d 1px 5px 22px 0 #7a27a51c;
    position: relative;
    overflow: hidden
}

.blog .postcard:hover {
    transform: translateY(-4px);
    box-shadow: 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521
}

.blog .postcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #7A27A5 0%, #DA8702 100%);
    opacity: 0;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog .postcard:hover::before {
    opacity: 1
}

.blog .cardtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px
}

.blog .cardtag {
    display: inline-block;
    padding: 4px 16px;
    background: #da870233;
    color: #DA8702;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1.6
}

.blog .carddate {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .6
}

.blog .cardheading {
    font-size: 22px;
    line-height: 1.6;
    margin: 0 0 8px;
    color: #FDFFF5;
    font-weight: 600
}

.blog .cardheading a {
    color: inherit;
    text-decoration: none;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog .cardheading a:hover {
    color: #7A27A5
}

.blog .cardsub {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #FDFFF5;
    opacity: .75;
    font-weight: 300
}

.blog .carddesc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #FDFFF5;
    opacity: .85
}

.blog .cardbottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #fdfff51a;
    flex-wrap: wrap;
    gap: 16px
}

.blog .cardauthor {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .8
}

.blog .cardmeta {
    display: flex;
    align-items: center;
    gap: 16px
}

.blog .metaitem {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .7
}

.blog .metaitem svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.blog .asymgrid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start
}

.blog .maintext {
    background: linear-gradient(90deg, #da87020d 0%, #0006 100%);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 1px 1px 4px 0 #da87020d 1px 5px 22px 0 #da87021c
}

.blog .maintext h2 {
    font-size: 22px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #FDFFF5;
    font-weight: 600
}

.blog .maintext p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #FDFFF5;
    opacity: .85
}

.blog .maintext p:last-child {
    margin-bottom: 0
}

.blog .sidebar {
    background: #7a27a51a;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 1px 1px 4px 0 #7a27a50d
}

.blog .sidebar h3 {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #DA8702;
    font-weight: 600
}

.blog .sidebar p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #FDFFF5;
    opacity: .85
}

.blog .wavesection {
    position: relative;
    padding: 32px 16px;
    background: linear-gradient(180deg, #000 0%, #7a27a526 50%, #000 100%);
    overflow: hidden
}

.blog .wavesection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #7A27A5 10%, transparent 20%, transparent 30%, #7A27A5 40%, transparent 50%, transparent 60%, #7A27A5 70%, transparent 80%, transparent 90%, #DA8702 100%);
    clip-path: polygon(0% 50%, 5% 30%, 10% 50%, 15% 70%, 20% 50%, 25% 20%, 30% 50%, 35% 80%, 40% 50%, 45% 10%, 50% 50%, 55% 90%, 60% 50%, 65% 0%, 70% 50%, 75% 100%, 80% 50%, 85% 10%, 90% 50%, 95% 90%, 100% 50%)
}

.blog .wavecontent {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.blog .wavecontent h2 {
    font-size: 22px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #FDFFF5;
    font-weight: 300;
    letter-spacing: 0
}

.blog .wavecontent p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #FDFFF5;
    opacity: .85
}

.blog .sidebyside {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px;
    display: flex;
    gap: 32px;
    align-items: flex-start
}

.blog .tallbox {
    flex: 1;
    background: linear-gradient(90deg, #7a27a51f 0%, #00000080 100%);
    border-radius: 12px;
    padding: 32px;
    min-height: 380px;
    position: relative;
    box-shadow: 1px 5px 22px 0 #7a27a51c
}

.blog .tallbox::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: #DA8702;
    transform: rotate(45deg);
    opacity: .3;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.blog .shortbox {
    flex: 1;
    background: linear-gradient(90deg, #da87021f 0%, #00000080 100%);
    border-radius: 12px;
    padding: 32px;
    min-height: 280px;
    box-shadow: 1px 5px 22px 0 #da87021c
}

.blog .tallbox h2,
.blog .shortbox h2 {
    font-size: 22px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #FDFFF5;
    font-weight: 600
}

.blog .tallbox p,
.blog .shortbox p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #FDFFF5;
    opacity: .85
}

.blog .tallbox p:last-child,
.blog .shortbox p:last-child {
    margin-bottom: 0
}

.blog .bulletlist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0
}

.blog .bulletlist li {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .85;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative
}

.blog .bulletlist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #DA8702;
    border-radius: 50%
}

@media (max-width: 1280px) {
    .blog .titlewrap h1 {
        font-size: 56px
    }

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

    .blog .sidebyside {
        flex-direction: column
    }
}

@media (max-width: 768px) {
    .blog .titlewrap h1 {
        font-size: 22px
    }

    .blog .titlewrap .tagline {
        font-size: 16px
    }

    .blog .postsgrid {
        padding: 16px
    }

    .blog .postcard {
        padding: 16px
    }

    .blog .cardheading {
        font-size: 18px
    }

    .blog .cardsub {
        font-size: 16px
    }

    .blog .asymgrid,
    .blog .wavesection,
    .blog .sidebyside {
        padding: 16px
    }

    .blog .maintext,
    .blog .sidebar,
    .blog .tallbox,
    .blog .shortbox {
        padding: 16px
    }

    .blog .decorshape {
        width: 60px;
        height: 60px
    }
}

.aboutauthor {
    background: #0a0a0b;
    color: #FDFFF5;
    overflow-x: clip
}

.aboutauthor ::selection {
    background: #7a27a52e;
    color: #FDFFF5
}

.aboutauthor h1,
.aboutauthor h2,
.aboutauthor h3,
.aboutauthor h4,
.aboutauthor h5,
.aboutauthor h6 {
    margin: 0;
    font-weight: 400
}

.aboutauthor p {
    margin: 0
}

.aboutauthor a {
    color: inherit;
    text-decoration: none;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutauthor img {
    display: block;
    max-width: 100%;
    height: auto
}

.aboutauthor button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit
}

.titlehero {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.titlehero::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 280px;
    line-height: 1;
    color: #7a27a514;
    font-weight: 700;
    pointer-events: none;
    z-index: 1
}

.titlecontent {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.titlecontent h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #FDFFF5;
    font-weight: 300;
    letter-spacing: .02em
}

.titletagline {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5d9;
    max-width: 620px
}

.titlelinks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px
}

.titlelinks a {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    font-size: 16px;
    border-radius: 8px;
    background: linear-gradient(90deg, #7A27A5 0%, #FDFFF5 100%);
    color: #0a0a0b;
    font-weight: 500;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 1px 1px 4px 0 #7a27a50d 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521
}

.titlelinks a:hover {
    transform: translateY(-2px);
    box-shadow: 1px 2px 6px 0 #7a27a514 1px 7px 28px 0 #7a27a526 1px 12px 52px 0 #7a27a52e
}

.titlelinks a:active {
    transform: translateY(0)
}

.titlelinks a:nth-child(2) {
    background: #fdfff514;
    color: #FDFFF5;
    border: 1px solid #fdfff526
}

.titleimage {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px
}

.titleimage img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.titleimage:hover img {
    transform: scale(1.04)
}

@media (min-width: 768px) {
    .titlehero {
        padding: 32px
    }

    .titlehero::before {
        font-size: 380px;
        left: 32px
    }

    .titlecontent h1 {
        font-size: 72px
    }

    .titleimage {
        max-width: 560px
    }
}

@media (min-width: 1280px) {
    .titlehero {
        padding: 32px
    }
}

.biography {
    position: relative;
    background: #0d0d0f;
    padding: 32px 0
}

.biography::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #7A27A5 0%, #DA8702 100%)
}

.biographyinner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px
}

.biosplit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative
}

.biosplit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 0;
    background: #fdfff51f;
    pointer-events: none
}

.bioleft {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.bioright {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.profilecard {
    background: #7a27a50f;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #7a27a526;
    transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.profilecard:hover {
    border-color: #7a27a559;
    box-shadow: 1px 1px 4px 0 #7a27a50d 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521
}

.portraitframe {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    position: relative
}

.portraitframe::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7a27a500 0%, #da87024d 100%);
    opacity: 0;
    transition: opacity .26s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

.profilecard:hover .portraitframe::after {
    opacity: 1
}

.portraitframe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.profilecard:hover .portraitframe img {
    transform: scale(1.08)
}

.profilemeta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.profilemeta h2 {
    font-size: 22px;
    line-height: 1.1;
    color: #FDFFF5;
    font-weight: 500
}

.profilerole {
    font-size: 16px;
    line-height: 1.6;
    color: #DA8702
}

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

.storyblock h3 {
    font-size: 22px;
    line-height: 1.1;
    color: #FDFFF5;
    font-weight: 300;
    position: relative;
    padding-bottom: 8px
}

.storyblock h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, #7A27A5 0%, #FDFFF5 100%)
}

.storyblock p {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff5d1
}

.quotebubble {
    position: relative;
    background: linear-gradient(135deg, #da870214 0%, #7a27a514 100%);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #da870233;
    margin-top: 16px
}

.quotebubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 48px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #da870233
}

.quotebubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 49px;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #da870214
}

.quotebubble p {
    font-size: 18px;
    line-height: 1.6;
    color: #FDFFF5;
    font-style: italic
}

.valuesgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}

.valueitem {
    background: #fdfff50a;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #fdfff514;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.valueitem:hover {
    background: #fdfff50f;
    border-color: #fdfff526
}

.valueitem h4 {
    font-size: 18px;
    line-height: 1.1;
    color: #DA8702;
    margin-bottom: 8px;
    font-weight: 500
}

.valueitem p {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff5bf
}

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

.expertiseitem {
    position: relative;
    padding-left: 32px
}

.expertiseitem::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: linear-gradient(135deg, #7A27A5 0%, #DA8702 100%)
}

.expertiseitem h4 {
    font-size: 18px;
    line-height: 1.1;
    color: #FDFFF5;
    margin-bottom: 4px;
    font-weight: 400
}

.expertiseitem p {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff5b8
}

.contactbox {
    background: #7a27a514;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #7a27a533;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contactbox h3 {
    font-size: 22px;
    line-height: 1.1;
    color: #FDFFF5;
    font-weight: 400
}

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

.contactitem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff5d9
}

.contacticon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.contacticon svg {
    width: 20px;
    height: 20px;
    fill: #DA8702
}

.contactitem a {
    color: #DA8702;
    text-decoration: none;
    transition: color .19s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactitem a:hover {
    color: #FDFFF5;
    text-decoration: underline
}

.dotborder {
    position: absolute;
    pointer-events: none;
    z-index: 1
}

.dotborder.topleft {
    top: -8px;
    left: -8px;
    width: 120px;
    height: 120px
}

.dotborder.bottomright {
    bottom: -8px;
    right: -8px;
    width: 140px;
    height: 140px
}

.dotborder svg {
    width: 100%;
    height: 100%
}

.dotborder circle {
    fill: #7a27a526
}

@media (min-width: 768px) {
    .biographyinner {
        padding: 0 32px
    }

    .biosplit {
        grid-template-columns: 2fr 1fr;
        gap: 32px
    }

    .biosplit::after {
        height: 100%
    }

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

    .portraitframe {
        width: 220px;
        height: 220px
    }
}

@media (min-width: 1280px) {
    .biography {
        padding: 32px 0
    }

    .biosplit {
        gap: 32px
    }
}

.imagegallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px
}

.galleryitem {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9
}

.galleryitem::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #7a27a500 0%, #7a27a566 100%);
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

.galleryitem:hover::after {
    opacity: 1
}

.galleryitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.galleryitem:hover img {
    transform: scale(1.06)
}

@media (min-width: 768px) {
    .imagegallery {
        grid-template-columns: repeat(3, 1fr)
    }
}

.backgroundanimation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.radialglow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #7a27a514 0%, #7a27a500 70%);
    animation: glowshift 18s ease-in-out infinite;
    opacity: .6
}

.radialglow.one {
    top: -200px;
    left: -200px;
    animation-delay: 0s
}

.radialglow.two {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, #da87020f 0%, #da870200 70%);
    animation-delay: 6s
}

@keyframes glowshift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(80px, 60px) scale(1.1)
    }

    66% {
        transform: translate(-60px, 80px) scale(0.95)
    }
}

.biography {
    position: relative
}

.biography .backgroundanimation {
    z-index: 0
}

.biography .biographyinner {
    position: relative;
    z-index: 1
}

.opening {
    background: #0a0a0a;
    color: #FDFFF5;
    overflow-x: hidden
}

.opening * {
    box-sizing: border-box
}

.opening .titlezone {
    position: relative;
    background: radial-gradient(ellipse at center, #7A27A5, #0a0a0a);
    padding: 96px 16px 48px;
    overflow: hidden
}

.opening .titlezone::before {
    content: '';
    position: absolute;
    top: 32px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #da870226, transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg)
}

.opening .titlezone::after {
    content: '';
    position: absolute;
    bottom: 48px;
    right: -80px;
    width: 160px;
    height: 160px;
    background: linear-gradient(225deg, #7a27a533, transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(-15deg)
}

.opening .titlezone .inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2
}

.opening .titlezone h1 {
    font-size: 72px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0;
    text-align: center;
    animation: splitreveal .28s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

@keyframes splitreveal {
    from {
        letter-spacing: -.05em;
        opacity: .4
    }

    to {
        letter-spacing: 0;
        opacity: 1
    }
}

.opening .titlezone .visual {
    width: 100%;
    max-width: 480px;
    height: 320px;
    position: relative
}

.opening .titlezone .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%)
}

.opening .postarea {
    background: #0a0a0a;
    padding: 64px 16px
}

.opening .postarea .contain {
    max-width: 1100px;
    margin: 0 auto
}

.opening .postarea .postwrap {
    background: linear-gradient(135deg, #7a27a514, #da87020d);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.opening .postarea .postwrap:hover {
    transform: translateY(-4px);
    box-shadow: 1px 9px 44px 0 #7a27a521 1px 12px 56px 0 #da870226
}

.opening .postarea .postimg {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 16px
}

.opening .postarea .postimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.opening .postarea .postwrap:hover .postimg img {
    transform: scale(1.05)
}

.opening .postarea .metatop {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: 0 0 8px;
    flex-wrap: wrap
}

.opening .postarea .badge {
    display: inline-block;
    padding: 4px 16px;
    background: linear-gradient(90deg, #7A27A5, #DA8702);
    color: #FDFFF5;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1.6
}

.opening .postarea .timestamp {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff599
}

.opening .postarea .posttitle {
    font-size: 56px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0 0 8px
}

.opening .postarea .subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #fdfff5cc;
    margin: 0 0 16px
}

.opening .postarea .excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5bf;
    margin: 0 0 16px
}

.opening .postarea .metabot {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    margin: 0 0 16px;
    flex-wrap: wrap
}

.opening .postarea .byline {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5b3
}

.opening .postarea .stats {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.opening .postarea .metric {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff599;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.opening .postarea .metric svg {
    width: 16px;
    height: 16px;
    fill: #fdfff599
}

.opening .postarea .readlink {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(90deg, #7A27A5, #DA8702);
    color: #FDFFF5;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.6;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 1px 1px 4px 0 #7a27a50d;
    position: relative;
    overflow: hidden
}

.opening .postarea .readlink::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fdfff533;
    transform: translate(-50%, -50%);
    transition: width .24s cubic-bezier(0.0, 0, 0.2, 1), height .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.opening .postarea .readlink:hover::before {
    width: 300px;
    height: 300px
}

.opening .postarea .readlink:hover {
    transform: translateY(-2px);
    box-shadow: 1px 5px 22px 0 #7a27a51c
}

.opening .postarea .readlink:active {
    transform: translateY(0)
}

.opening .subscribe {
    background: linear-gradient(90deg, #7A27A5 0%, #0a0a0a 100%);
    padding: 64px 16px
}

.opening .subscribe .contain {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start
}

.opening .subscribe .primary {
    background: #fdfff508;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 0 #da87020d
}

.opening .subscribe h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0 0 16px;
    font-weight: 300;
    letter-spacing: .02em
}

.opening .subscribe .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5cc;
    margin: 0 0 32px
}

.opening .subscribe form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opening .subscribe .field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.opening .subscribe label {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff5b3
}

.opening .subscribe input[type="email"] {
    padding: 16px;
    background: #0a0a0a99;
    border: 1px solid #7a27a54d;
    border-radius: 8px;
    color: #FDFFF5;
    font-size: 18px;
    line-height: 1.6;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 1px 2px 3px 0 #7a27a51a
}

.opening .subscribe input[type="email"]:focus {
    outline: none;
    border-color: #7A27A5;
    box-shadow: inset 1px 2px 3px 0 #7a27a526 0 0 0 3px #7a27a51a
}

.opening .subscribe input[type="email"]::placeholder {
    font-style: italic;
    opacity: .5;
    color: #fdfff580
}

.opening .subscribe button[type="submit"] {
    padding: 16px 32px;
    background: linear-gradient(90deg, #DA8702, #7A27A5);
    color: #FDFFF5;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.6;
    cursor: pointer;
    transition: transform .19s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .19s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 1px 1px 4px 0 #da87020d;
    align-self: flex-start
}

.opening .subscribe button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 1px 5px 22px 0 #da87021c
}

.opening .subscribe button[type="submit"]:active {
    transform: translateY(0)
}

.opening .subscribe .aside {
    background: #fdfff50d;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 0 #7a27a50d
}

.opening .subscribe .perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opening .subscribe .perks li {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5bf;
    padding-left: 32px;
    position: relative
}

.opening .subscribe .perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #7A27A5, #DA8702);
    border-radius: 50%
}

.opening .territories {
    background: #0a0a0a;
    padding: 64px 16px;
    position: relative
}

.opening .territories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, #7a27a54d 0px, #7a27a54d 16px, transparent 16px, transparent 24px, #da87024d 24px, #da87024d 48px, transparent 48px, transparent 56px)
}

.opening .territories .contain {
    max-width: 1100px;
    margin: 0 auto
}

.opening .territories h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0 0 32px;
    text-align: center
}

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

.opening .territories .zone {
    background: linear-gradient(135deg, #da87020d, #7a27a514);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 0 #7a27a50d;
    transition: transform .21s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .21s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.opening .territories .zone::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 32px 32px 0;
    border-color: transparent #7a27a533 transparent transparent;
    border-radius: 0 12px 0 0
}

.opening .territories .zone:hover {
    transform: translateY(-4px);
    box-shadow: 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #da870221
}

.opening .territories .zone h3 {
    font-size: 22px;
    line-height: 1.6;
    color: #DA8702;
    margin: 0 0 8px
}

.opening .territories .zone p {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5bf;
    margin: 0 0 16px
}

.opening .territories .zone .trait {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff599;
    font-style: italic
}

.opening .thematic {
    background: linear-gradient(90deg, #0a0a0a 0%, #7A27A5 100%);
    padding: 64px 16px
}

.opening .thematic .contain {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: start
}

.opening .thematic .leftcol {
    background: #fdfff508;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 0 #da87020d
}

.opening .thematic .centercol {
    background: #fdfff50d;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 5px 22px 0 #7a27a51c
}

.opening .thematic .rightcol {
    background: #fdfff508;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 0 #da87020d
}

.opening .thematic h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0 0 16px;
    font-weight: 300
}

.opening .thematic h3 {
    font-size: 22px;
    line-height: 1.6;
    color: #DA8702;
    margin: 0 0 8px
}

.opening .thematic p {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5bf;
    margin: 0 0 16px
}

.opening .thematic .sequence {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opening .thematic .sequence li {
    padding: 16px;
    background: #0a0a0a66;
    border-radius: 8px;
    border-left: 3px solid #7A27A5;
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5cc;
    transition: background .17s cubic-bezier(0.4, 0, 0.2, 1)
}

.opening .thematic .sequence li:hover {
    background: #0a0a0a99
}

.opening .thematic .imgwrap {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 16px
}

.opening .thematic .imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.opening .adjacent {
    background: #0a0a0a;
    padding: 64px 16px;
    position: relative
}

.opening .adjacent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, #da87024d 0px, #da87024d 24px, transparent 24px, transparent 32px, #7a27a54d 32px, #7a27a54d 40px, transparent 40px, transparent 48px)
}

.opening .adjacent .contain {
    max-width: 1100px;
    margin: 0 auto
}

.opening .adjacent h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0 0 32px
}

.opening .adjacent .dual {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.opening .adjacent .tall {
    flex: 1;
    background: linear-gradient(135deg, #7a27a514, #da87020d);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 5px 22px 0 #7a27a51c;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opening .adjacent .short {
    flex: 1;
    background: linear-gradient(135deg, #da87020d, #7a27a514);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 0 #da87020d;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opening .adjacent h3 {
    font-size: 22px;
    line-height: 1.6;
    color: #DA8702;
    margin: 0
}

.opening .adjacent p {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5bf;
    margin: 0
}

.opening .adjacent .imgset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.opening .adjacent .imgitem {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden
}

.opening .adjacent .imgitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.opening .adjacent .profile {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #0a0a0a66;
    border-radius: 8px
}

.opening .adjacent .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.opening .adjacent .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.opening .adjacent .bio {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.opening .adjacent .name {
    font-size: 18px;
    line-height: 1.6;
    color: #FDFFF5;
    margin: 0
}

.opening .adjacent .role {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff599;
    margin: 0
}

.opening .bigstat {
    background: linear-gradient(90deg, #DA8702 0%, #0a0a0a 100%);
    padding: 64px 16px
}

.opening .bigstat .contain {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

.opening .bigstat .hero {
    font-size: 72px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0;
    text-align: center;
    background: linear-gradient(90deg, #7A27A5, #DA8702);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.opening .bigstat .context {
    font-size: 22px;
    line-height: 1.6;
    color: #fdfff5cc;
    margin: 0;
    text-align: center;
    max-width: 700px
}

.opening .bigstat .support {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%
}

.opening .bigstat .metric {
    background: #fdfff508;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 0 #7a27a50d;
    text-align: center;
    position: relative
}

.opening .bigstat .metric::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 24px 24px;
    border-color: transparent transparent #da870233;
    border-radius: 0 0 0 12px
}

.opening .bigstat .number {
    font-size: 56px;
    line-height: 1.1;
    color: #DA8702;
    margin: 0 0 8px
}

.opening .bigstat .label {
    font-size: 18px;
    line-height: 1.6;
    color: #fdfff5b3;
    margin: 0
}

@media (max-width: 1280px) {
    .opening .titlezone h1 {
        font-size: 56px
    }

    .opening .subscribe .contain {
        grid-template-columns: 1fr
    }

    .opening .territories .grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .opening .thematic .contain {
        grid-template-columns: 1fr
    }

    .opening .bigstat .support {
        grid-template-columns: 1fr
    }
}

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

    .opening .titlezone h1 {
        font-size: 56px
    }

    .opening .titlezone .visual {
        max-width: 100%;
        height: 240px
    }

    .opening .postarea {
        padding: 32px 16px
    }

    .opening .postarea .postwrap {
        padding: 16px
    }

    .opening .postarea .posttitle {
        font-size: 56px
    }

    .opening .subscribe {
        padding: 32px 16px
    }

    .opening .subscribe h2 {
        font-size: 56px
    }

    .opening .subscribe .primary {
        padding: 16px
    }

    .opening .subscribe .aside {
        padding: 16px
    }

    .opening .territories {
        padding: 32px 16px
    }

    .opening .territories h2 {
        font-size: 56px
    }

    .opening .territories .grid {
        grid-template-columns: 1fr
    }

    .opening .thematic {
        padding: 32px 16px
    }

    .opening .thematic h2 {
        font-size: 56px
    }

    .opening .thematic .leftcol,
    .opening .thematic .centercol,
    .opening .thematic .rightcol {
        padding: 16px
    }

    .opening .adjacent {
        padding: 32px 16px
    }

    .opening .adjacent h2 {
        font-size: 56px
    }

    .opening .adjacent .dual {
        flex-direction: column
    }

    .opening .adjacent .tall,
    .opening .adjacent .short {
        padding: 16px
    }

    .opening .bigstat {
        padding: 32px 16px
    }

    .opening .bigstat .hero {
        font-size: 56px
    }
}

::selection {
    background: #7a27a526;
    color: #FDFFF5
}

.successpage {
    background: linear-gradient(90deg, #7A27A5 0%, #0a0514 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px
}

.successpage .confirmmessage {
    background: #0a0514;
    max-width: 600px;
    width: 100%;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521;
    text-align: center
}

.successpage .iconwrap {
    width: 88px;
    height: 88px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #7A27A5 0%, #DA8702 100%);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.successpage .iconwrap::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 16px;
    border-left: 4px solid #FDFFF5;
    border-bottom: 4px solid #FDFFF5;
    transform: rotate(-45deg) translateY(-4px)
}

.successpage .mainheading {
    font-size: 56px;
    line-height: 1.1;
    color: #FDFFF5;
    margin: 0 0 16px
}

.successpage .description {
    font-size: 18px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .85;
    margin: 0 0 32px
}

.successpage .actiongroup {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.successpage .primaryaction {
    background: linear-gradient(90deg, #7A27A5 0%, #DA8702 100%);
    color: #FDFFF5;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 1px 1px 4px 0 #7a27a50d;
    text-decoration: none;
    display: inline-block
}

.successpage .primaryaction:hover {
    transform: translateY(-2px);
    box-shadow: 1px 5px 22px 0 #7a27a51c 1px 9px 44px 0 #7a27a521
}

.successpage .primaryaction:active {
    transform: translateY(0)
}

.successpage .secondaryaction {
    background: transparent;
    color: #FDFFF5;
    border: 2px solid #fdfff54d;
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .21s cubic-bezier(0.4, 0, 0.2, 1), background .21s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block
}

.successpage .secondaryaction:hover {
    border-color: #fdfff599;
    background: #fdfff50d
}

.successpage .additionalinfo {
    margin: 32px 0 0;
    padding: 16px;
    background: #7a27a51a;
    border-radius: 8px;
    border-top: 2px solid #7a27a54d
}

.successpage .additionalinfo .infotext {
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFF5;
    opacity: .75;
    margin: 0
}

.successpage .additionalinfo .contactlink {
    color: #DA8702;
    text-decoration: none;
    transition: opacity .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.successpage .additionalinfo .contactlink:hover {
    opacity: .7;
    text-decoration: underline
}

@media (max-width: 768px) {
    .successpage .mainheading {
        font-size: 42px
    }

    .successpage .confirmmessage {
        padding: 32px 16px
    }

    .successpage .actiongroup {
        flex-direction: column
    }

    .successpage .primaryaction,
    .successpage .secondaryaction {
        width: 100%
    }
}