:root {
    --navy-1: #01051c;
    --navy-2: #020c38;
    --navy-3: #061b67;
    --blue-1: #003cff;
    --blue-2: #0077ff;
    --blue-3: #00b7ff;
    --cyan: #00f0ff;
    --cyan-2: #7cffff;
    --green: #8cff00;
    --green-2: #c8ff00;
    --green-3: #55d900;
    --yellow: #ffe600;
    --gold: #ffb800;
    --orange: #ff7300;
    --red: #ff1744;
    --pink: #ff00d4;
    --white: #ffffff;
    --text: #10204a;
    --bg: #edf5ff;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 183, 255, .22), transparent 27%),
        radial-gradient(circle at 100% 12%, rgba(140, 255, 0, .17), transparent 23%),
        radial-gradient(circle at 50% 90%, rgba(255, 184, 0, .10), transparent 30%),
        linear-gradient(180deg, #fafdff 0%, #eaf4ff 45%, #f9fcff 100%);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 105, 255, .025) 0,
            rgba(0, 105, 255, .025) 1px,
            transparent 1px,
            transparent 34px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 105, 255, .025) 0,
            rgba(0, 105, 255, .025) 1px,
            transparent 1px,
            transparent 34px
        );
}

body::after {
    content: "";
    position: fixed;
    z-index: -2;
    width: 900px;
    height: 900px;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
    background:
        conic-gradient(
            from 0deg,
            rgba(0, 183, 255, .14),
            rgba(140, 255, 0, .10),
            rgba(255, 230, 0, .08),
            rgba(255, 0, 212, .06),
            rgba(0, 183, 255, .14)
        );
    filter: blur(80px);
    animation: bgSpin 18s linear infinite;
}

.ast-separate-container,
.site-content,
.ast-container,
.content-area,
.site-main,
.entry-content {
    background: transparent;
}

.ast-container {
    max-width: 1320px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.ast-primary-header-bar {
    min-height: 84px;
    position: relative;
    overflow: hidden;
    border: 0 !important;
    background:
        radial-gradient(circle at 15% 0%, rgba(0, 240, 255, .26), transparent 26%),
        radial-gradient(circle at 80% 100%, rgba(140, 255, 0, .22), transparent 24%),
        linear-gradient(
            110deg,
            #01041b 0%,
            #03104a 28%,
            #002caa 58%,
            #006dff 82%,
            #00a8ff 100%
        ) !important;
    box-shadow:
        0 10px 45px rgba(0, 55, 190, .45),
        0 0 40px rgba(0, 183, 255, .15),
        inset 0 1px 0 rgba(255, 255, 255, .20);
}

.ast-primary-header-bar::before {
    content: "";
    position: absolute;
    inset: -80%;
    pointer-events: none;
    background:
        conic-gradient(
            transparent 0deg,
            transparent 40deg,
            rgba(0, 240, 255, .12) 80deg,
            transparent 120deg,
            transparent 180deg,
            rgba(140, 255, 0, .10) 230deg,
            transparent 270deg
        );
    animation: headerSpin 10s linear infinite;
}

.ast-primary-header-bar::after {
    content: "";
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 200%;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--green),
            var(--yellow),
            var(--orange),
            var(--pink),
            var(--cyan)
        );
    background-size: 300% 100%;
    box-shadow:
        0 0 10px var(--cyan),
        0 0 22px var(--green),
        0 0 32px rgba(255, 230, 0, .55);
    animation: neonRunner 2.2s linear infinite;
}

.site-title,
.site-title a {
    color: #fff !important;
    font-size: 31px !important;
    font-weight: 1000 !important;
    letter-spacing: -1.2px;
    text-shadow:
        0 0 5px #fff,
        0 0 15px rgba(0, 240, 255, .8),
        0 0 30px rgba(0, 126, 255, .65);
}

.site-title a {
    display: inline-flex;
    align-items: center;
    position: relative;
    animation: logoPulse 1.8s ease-in-out infinite;
}

.site-title a::before {
    content: "";
    position: absolute;
    inset: -10px -16px;
    z-index: -1;
    border-radius: 14px;
    background:
        radial-gradient(circle, rgba(0, 240, 255, .18), transparent 68%);
    filter: blur(6px);
}

.site-title a::after {
    content: "";
    width: 12px;
    height: 12px;
    margin-left: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow:
        0 0 4px var(--green),
        0 0 10px var(--green),
        0 0 20px var(--green),
        0 0 36px var(--green);
    animation: onlineBlink .75s ease-in-out infinite;
}

.main-header-menu .menu-link,
.ast-builder-menu-1 .menu-item > .menu-link {
    position: relative;
    overflow: hidden;
    color: #fff !important;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .25px;
    padding: 12px 20px !important;
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, .38);
    background:
        linear-gradient(
            135deg,
            rgba(0, 117, 255, .35),
            rgba(0, 240, 255, .10)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 7px 18px rgba(0, 0, 0, .16),
        0 0 18px rgba(0, 183, 255, .10);
    transition: .18s ease;
}

.main-header-menu .menu-link::before,
.ast-builder-menu-1 .menu-item > .menu-link::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -50%;
    width: 35%;
    height: 260%;
    transform: rotate(25deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.9),
            transparent
        );
    animation: shineMenu 3s ease-in-out infinite;
}

.main-header-menu .menu-link:hover,
.ast-builder-menu-1 .menu-item > .menu-link:hover {
    color: #06204a !important;
    border-color: var(--green);
    background:
        linear-gradient(180deg, #d8ff46, #8cff00);
    box-shadow:
        0 0 0 3px rgba(140,255,0,.16),
        0 0 18px rgba(140,255,0,.70),
        0 0 35px rgba(140,255,0,.35),
        inset 0 2px 0 rgba(255,255,255,.75);
    transform: translateY(-3px) scale(1.04);
}

.ast-mobile-menu-trigger-minimal {
    color: #fff !important;
    border: 1px solid var(--cyan) !important;
    border-radius: 11px !important;
    padding: 9px 11px !important;
    background:
        linear-gradient(
            135deg,
            rgba(0, 105, 255, .42),
            rgba(0, 240, 255, .17)
        ) !important;
    box-shadow:
        0 0 12px rgba(0,240,255,.30),
        0 0 25px rgba(0,119,255,.20);
}

.site-main {
    padding-top: 38px;
    padding-bottom: 70px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.73;
}

.entry-content > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.entry-content h1 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin: 5px auto 38px;
    padding: 42px 42px 46px;
    color: #fff !important;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.03;
    font-weight: 1000;
    letter-spacing: -2px;
    border-radius: 24px;
    border: 2px solid rgba(0,240,255,.60);
    background:
        radial-gradient(circle at 8% 0%, rgba(0,240,255,.42), transparent 26%),
        radial-gradient(circle at 85% 100%, rgba(140,255,0,.30), transparent 27%),
        radial-gradient(circle at 65% -30%, rgba(255,230,0,.19), transparent 25%),
        linear-gradient(
            120deg,
            #01041c 0%,
            #03135b 29%,
            #003adb 59%,
            #008cff 80%,
            #00c4ff 100%
        );
    box-shadow:
        0 25px 70px rgba(0,62,210,.40),
        0 0 0 5px rgba(0,159,255,.05),
        0 0 40px rgba(0,183,255,.16),
        inset 0 1px 0 rgba(255,255,255,.24),
        inset 0 -25px 70px rgba(0,18,90,.30);
    text-shadow:
        0 3px 0 rgba(0,0,0,.28),
        0 0 18px rgba(0,240,255,.28);
    animation: heroPulse 2.1s ease-in-out infinite;
}

.entry-content h1::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 38px,
            rgba(255,255,255,.035) 39px,
            rgba(255,255,255,.035) 41px
        );
    animation: stripeSlide 8s linear infinite;
}

.entry-content h1::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -40%;
    bottom: 15px;
    width: 180%;
    height: 7px;
    border-radius: 30px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            var(--green),
            var(--yellow),
            var(--orange),
            var(--pink),
            var(--cyan),
            transparent
        );
    background-size: 300% 100%;
    box-shadow:
        0 0 8px var(--cyan),
        0 0 16px var(--green),
        0 0 30px rgba(255,230,0,.40);
    animation: neonRunner 1.6s linear infinite;
}

.entry-content h2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 42px;
    margin-bottom: 23px;
    padding: 19px 26px 19px 30px;
    color: #fff !important;
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.15;
    font-weight: 1000;
    letter-spacing: -.8px;
    border-radius: 14px;
    border: 1px solid rgba(0,240,255,.50);
    background:
        radial-gradient(circle at 85% 0%, rgba(0,240,255,.22), transparent 22%),
        linear-gradient(
            100deg,
            #01082f 0%,
            #0631a8 45%,
            #0078ff 75%,
            #00b7ff 100%
        );
    box-shadow:
        0 14px 34px rgba(0,71,200,.26),
        0 0 20px rgba(0,183,255,.10),
        inset 0 1px 0 rgba(255,255,255,.18);
    text-shadow:
        0 2px 0 rgba(0,0,0,.22),
        0 0 12px rgba(0,240,255,.20);
}

.entry-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 9px;
    background:
        linear-gradient(
            180deg,
            var(--yellow),
            var(--orange),
            var(--green),
            var(--cyan)
        );
    box-shadow:
        0 0 10px var(--yellow),
        0 0 20px var(--green),
        0 0 30px rgba(0,240,255,.45);
    animation: sideGlow 1.2s ease-in-out infinite alternate;
}

.entry-content h2::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -130%;
    left: -20%;
    width: 35%;
    height: 360%;
    transform: rotate(25deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.22),
            transparent
        );
    animation: headingShine 4s ease-in-out infinite;
}

.entry-content h3 {
    position: relative;
    color: #04256c;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 1000;
    padding-left: 18px;
}

.entry-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 6px;
    border-radius: 20px;
    background:
        linear-gradient(
            var(--yellow),
            var(--green),
            var(--cyan),
            var(--blue-2)
        );
    box-shadow:
        0 0 10px rgba(0,183,255,.28),
        0 0 14px rgba(140,255,0,.20);
}

.entry-content p {
    color: #25385e;
}

.entry-content strong {
    color: #04286d;
    font-weight: 950;
}

.entry-content a {
    color: #005bff;
    font-weight: 750;
    text-decoration: none;
    transition: .15s ease;
}

.entry-content p a:hover,
.entry-content li a:hover {
    color: #00a7e7;
    text-shadow:
        0 0 8px rgba(0,183,255,.40),
        0 0 16px rgba(0,183,255,.18);
}

.entry-content ul,
.entry-content ol {
    padding-left: 27px;
}

.entry-content li {
    margin-bottom: 8px;
    color: #273b61;
}

.entry-content ul li::marker {
    color: #00aaff;
}

.entry-content ol li::marker {
    color: #006cff;
    font-weight: 1000;
}

.entry-content .wp-block-table {
    position: relative;
    overflow: hidden;
    margin-top: 27px;
    margin-bottom: 36px;
    border-radius: 19px;
    border: 2px solid rgba(0,119,255,.25);
    background: #fff;
    box-shadow:
        0 22px 55px rgba(0,57,170,.23),
        0 0 0 5px rgba(0,140,255,.035),
        0 0 34px rgba(0,183,255,.10);
}

.entry-content .wp-block-table::before {
    content: "";
    position: absolute;
    z-index: 5;
    left: -30%;
    top: 0;
    width: 160%;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--green),
            var(--yellow),
            var(--orange),
            var(--pink),
            var(--cyan)
        );
    background-size: 280% 100%;
    animation: neonRunner 1.8s linear infinite;
    box-shadow:
        0 0 14px rgba(0,240,255,.60);
}

.entry-content .wp-block-table table {
    width: 100%;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.entry-content .wp-block-table th {
    padding: 20px 20px !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .7px;
    border: 0 !important;
    border-right: 1px solid rgba(255,255,255,.13) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(0,240,255,.22), transparent 30%),
        linear-gradient(
            115deg,
            #01072d,
            #05247c 45%,
            #0067e8 100%
        ) !important;
    text-shadow:
        0 1px 0 rgba(0,0,0,.3),
        0 0 10px rgba(0,240,255,.20);
}

.entry-content .wp-block-table td {
    padding: 17px 20px !important;
    color: #20365f;
    vertical-align: middle;
    border: 0 !important;
    border-right: 1px solid #d9e7f8 !important;
    border-bottom: 1px solid #d9e7f8 !important;
}

.entry-content .wp-block-table td:last-child,
.entry-content .wp-block-table th:last-child {
    border-right: 0 !important;
}

.entry-content .wp-block-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.entry-content .wp-block-table tbody tr {
    background: #fff;
    transition: .16s ease;
}

.entry-content .wp-block-table tbody tr:nth-child(even) {
    background:
        linear-gradient(
            90deg,
            #f0f7ff,
            #fafff4
        );
}

.entry-content .wp-block-table tbody tr:hover {
    background:
        linear-gradient(
            90deg,
            rgba(0,119,255,.11),
            rgba(0,240,255,.08),
            rgba(140,255,0,.09)
        );
    box-shadow:
        inset 6px 0 0 var(--green);
}

.entry-content .wp-block-table td:nth-child(2) {
    color: #2e8600;
    font-weight: 1000;
    text-shadow:
        0 0 10px rgba(100,210,0,.14);
}

.entry-content .wp-block-table td a {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 56px;
    padding: 14px 24px;
    overflow: hidden;
    color: #04204b !important;
    font-size: 15px;
    font-weight: 1000;
    line-height: 1.1;
    border-radius: 12px;
    border: 1px solid rgba(100,170,0,.55);
    background:
        linear-gradient(
            180deg,
            #efff69 0%,
            #c7ff00 28%,
            #8eff00 68%,
            #66d900 100%
        ) !important;
    box-shadow:
        0 8px 0 #479200,
        0 13px 24px rgba(85,185,0,.40),
        0 0 14px rgba(140,255,0,.30),
        inset 0 2px 0 rgba(255,255,255,.85),
        inset 0 -3px 0 rgba(50,130,0,.18);
    text-shadow:
        0 1px 0 rgba(255,255,255,.85);
    animation:
        greenFlash 1.05s ease-in-out infinite,
        buttonShake 4.8s ease-in-out infinite;
    transition: .14s ease;
}

.entry-content .wp-block-table td a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -90%;
    left: -45%;
    width: 27%;
    height: 290%;
    transform: rotate(25deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.95),
            transparent
        );
    animation: buttonShine 1.7s ease-in-out infinite;
}

.entry-content .wp-block-table td a::after {
    content: "➜";
    margin-left: 11px;
    font-size: 19px;
    font-weight: 1000;
    animation: arrowBounce .55s ease-in-out infinite alternate;
}

.entry-content .wp-block-table td a:hover {
    color: #031b3f !important;
    transform: translateY(-4px) scale(1.055);
    background:
        linear-gradient(
            180deg,
            #fff88b 0%,
            #dfff18 30%,
            #a6ff00 70%,
            #78e400 100%
        ) !important;
    box-shadow:
        0 10px 0 #448c00,
        0 18px 36px rgba(98,210,0,.58),
        0 0 0 5px rgba(140,255,0,.16),
        0 0 26px rgba(140,255,0,.70),
        0 0 45px rgba(255,230,0,.25),
        inset 0 2px 0 rgba(255,255,255,.95);
}

.entry-content .wp-block-buttons {
    margin-top: 34px;
    margin-bottom: 42px;
}

.entry-content .wp-block-button {
    width: 100%;
}

.entry-content .wp-block-button__link,
.entry-content .wp-element-button {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(940px, 100%);
    min-height: 68px;
    margin: 0 auto;
    padding: 18px 34px;
    overflow: hidden;
    color: #041d45 !important;
    font-size: 17px;
    font-weight: 1000;
    letter-spacing: .7px;
    text-transform: uppercase;
    border: 2px solid rgba(115,185,0,.65) !important;
    border-radius: 13px !important;
    background:
        linear-gradient(
            180deg,
            #f4ff79 0%,
            #d3ff16 22%,
            #99ff00 62%,
            #62d700 100%
        ) !important;
    box-shadow:
        0 9px 0 #438b00,
        0 17px 35px rgba(91,195,0,.52),
        0 0 18px rgba(140,255,0,.45),
        0 0 38px rgba(140,255,0,.20),
        inset 0 2px 0 rgba(255,255,255,.90);
    text-shadow:
        0 1px 0 rgba(255,255,255,.85);
    animation:
        megaFlash .85s ease-in-out infinite,
        megaScale 1.65s ease-in-out infinite;
    transition: .15s ease;
}

.entry-content .wp-block-button__link::before,
.entry-content .wp-element-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -120%;
    left: -40%;
    width: 24%;
    height: 340%;
    transform: rotate(24deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,1),
            transparent
        );
    animation: megaShine 1.4s ease-in-out infinite;
}

.entry-content .wp-block-button__link::after,
.entry-content .wp-element-button::after {
    content: "➜";
    margin-left: 14px;
    font-size: 22px;
    font-weight: 1000;
    animation: arrowBounce .45s ease-in-out infinite alternate;
}

.entry-content .wp-block-button__link:hover,
.entry-content .wp-element-button:hover {
    color: #021839 !important;
    transform: translateY(-5px) scale(1.025);
    background:
        linear-gradient(
            180deg,
            #fff6a3 0%,
            #edff35 23%,
            #b5ff00 62%,
            #7bea00 100%
        ) !important;
    box-shadow:
        0 11px 0 #408300,
        0 23px 46px rgba(95,205,0,.65),
        0 0 0 6px rgba(140,255,0,.14),
        0 0 30px rgba(140,255,0,.85),
        0 0 55px rgba(255,230,0,.30),
        inset 0 2px 0 rgba(255,255,255,1);
}

.entry-content figure.wp-block-image {
    position: relative;
    margin-top: 36px;
    margin-bottom: 38px;
}

.entry-content figure.wp-block-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -5px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--blue-2),
            var(--green),
            var(--yellow),
            var(--cyan)
        );
    background-size: 300% 300%;
    filter: blur(4px);
    opacity: .65;
    animation: imageBorder 4s linear infinite;
}

.entry-content figure.wp-block-image img {
    display: block;
    position: relative;
    width: auto;
    border-radius: 18px;
    border: 2px solid rgba(255,255,255,.85);
    box-shadow:
        0 27px 60px rgba(0,40,125,.30),
        0 0 25px rgba(0,183,255,.18);
    transition: .25s ease;
}

.entry-content figure.wp-block-image:hover img {
    transform: translateY(-5px) scale(1.012);
    box-shadow:
        0 32px 70px rgba(0,54,155,.36),
        0 0 30px rgba(0,240,255,.28),
        0 0 45px rgba(140,255,0,.15);
}

.entry-content details,
.entry-content .wp-block-details {
    position: relative;
    overflow: hidden;
    margin-bottom: 13px;
    border: 1px solid rgba(0,119,255,.28);
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #fff,
            #eff6ff
        );
    box-shadow:
        0 9px 25px rgba(0,59,150,.10);
    transition: .18s ease;
}

.entry-content details::before,
.entry-content .wp-block-details::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background:
        linear-gradient(
            var(--cyan),
            var(--green),
            var(--yellow)
        );
    box-shadow:
        0 0 12px rgba(0,240,255,.35);
}

.entry-content details:hover,
.entry-content .wp-block-details:hover {
    border-color: rgba(0,183,255,.75);
    transform: translateY(-2px);
    box-shadow:
        0 14px 34px rgba(0,75,180,.17),
        0 0 20px rgba(0,183,255,.12);
}

.entry-content details[open],
.entry-content .wp-block-details[open] {
    border-color: var(--green);
    box-shadow:
        0 16px 38px rgba(0,88,190,.20),
        0 0 18px rgba(140,255,0,.18);
}

.entry-content details summary,
.entry-content .wp-block-details summary {
    position: relative;
    list-style: none;
    padding: 18px 60px 18px 22px;
    color: #062a68;
    cursor: pointer;
    font-weight: 950;
    transition: .16s ease;
}

.entry-content details summary::-webkit-details-marker {
    display: none;
}

.entry-content details summary::after,
.entry-content .wp-block-details summary::after {
    content: "+";
    position: absolute;
    right: 17px;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 21px;
    font-weight: 1000;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            #004cff,
            #00c8ff
        );
    box-shadow:
        0 6px 15px rgba(0,105,255,.33),
        0 0 18px rgba(0,240,255,.24);
    animation: faqButton 1.8s ease-in-out infinite;
}

.entry-content details[open] summary,
.entry-content .wp-block-details[open] summary {
    color: #fff;
    background:
        radial-gradient(circle at 85% 0%, rgba(0,240,255,.20), transparent 28%),
        linear-gradient(
            100deg,
            #01082e,
            #0536a6 55%,
            #008cff
        );
    text-shadow: 0 0 10px rgba(0,240,255,.20);
}

.entry-content details[open] summary::after,
.entry-content .wp-block-details[open] summary::after {
    content: "−";
    color: #05204b;
    background:
        linear-gradient(
            135deg,
            #ddff3a,
            var(--green)
        );
    box-shadow:
        0 0 16px rgba(140,255,0,.50),
        0 0 28px rgba(140,255,0,.26);
}

.entry-content details > *:not(summary),
.entry-content .wp-block-details > *:not(summary) {
    padding-left: 22px;
    padding-right: 22px;
}

.entry-content details > p:last-child,
.entry-content .wp-block-details > p:last-child {
    padding-bottom: 20px;
}

.entry-content blockquote {
    position: relative;
    overflow: hidden;
    margin: 32px 0;
    padding: 24px 27px;
    color: #15325f;
    border: 1px solid rgba(0,119,255,.25);
    border-left: 7px solid var(--green);
    border-radius: 13px;
    background:
        linear-gradient(
            100deg,
            #e9f4ff,
            #f9fff0
        );
    box-shadow:
        0 12px 32px rgba(0,68,170,.12),
        inset 0 1px 0 rgba(255,255,255,.90);
}

.entry-content blockquote::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -40%;
    width: 30%;
    height: 320%;
    transform: rotate(25deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.75),
            transparent
        );
    animation: quoteShine 5s ease-in-out infinite;
}

.entry-content hr {
    height: 3px;
    margin: 45px 0;
    border: 0;
    border-radius: 20px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blue-2),
            var(--cyan),
            var(--green),
            var(--yellow),
            var(--orange),
            var(--cyan),
            transparent
        );
    background-size: 280% 100%;
    box-shadow:
        0 0 12px rgba(0,240,255,.30);
    animation: neonRunner 2.5s linear infinite;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,.78);
    background:
        radial-gradient(circle at 10% 0%, rgba(0,240,255,.26), transparent 25%),
        radial-gradient(circle at 90% 100%, rgba(140,255,0,.20), transparent 25%),
        linear-gradient(
            115deg,
            #01041a 0%,
            #020e3b 35%,
            #003493 68%,
            #0078e8 100%
        ) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 -12px 40px rgba(0,75,200,.16);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--green),
            var(--yellow),
            var(--orange),
            var(--pink),
            var(--cyan)
        );
    background-size: 300% 100%;
    animation: neonRunner 1.8s linear infinite;
    box-shadow:
        0 0 10px var(--cyan),
        0 0 24px rgba(140,255,0,.45);
}

.site-above-footer-wrap,
.site-primary-footer-wrap,
.site-below-footer-wrap {
    background: transparent !important;
    border-color: rgba(255,255,255,.12) !important;
}

.site-footer a {
    color: #78eeff !important;
    font-weight: 850;
    transition: .15s ease;
}

.site-footer a:hover {
    color: var(--green) !important;
    text-shadow:
        0 0 8px rgba(140,255,0,.60),
        0 0 20px rgba(140,255,0,.30);
}

.ast-footer-copyright,
.ast-footer-copyright p {
    color: rgba(255,255,255,.76) !important;
}

::selection {
    color: #021938;
    background: var(--green);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

@keyframes bgSpin {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes headerSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes neonRunner {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 300% 50%;
    }
}

@keyframes logoPulse {
    0%,
    100% {
        filter: brightness(1);
        transform: scale(1);
    }

    50% {
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

@keyframes onlineBlink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .3;
        transform: scale(.62);
    }
}

@keyframes shineMenu {
    0% {
        left: -55%;
    }

    30%,
    100% {
        left: 140%;
    }
}

@keyframes heroPulse {
    0%,
    100% {
        box-shadow:
            0 25px 70px rgba(0,62,210,.40),
            0 0 0 5px rgba(0,159,255,.05),
            0 0 35px rgba(0,183,255,.14),
            inset 0 1px 0 rgba(255,255,255,.24),
            inset 0 -25px 70px rgba(0,18,90,.30);
    }

    50% {
        box-shadow:
            0 28px 80px rgba(0,62,210,.50),
            0 0 0 7px rgba(0,240,255,.08),
            0 0 52px rgba(0,240,255,.24),
            0 0 75px rgba(140,255,0,.08),
            inset 0 1px 0 rgba(255,255,255,.28),
            inset 0 -25px 70px rgba(0,18,90,.25);
    }
}

@keyframes stripeSlide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 180px 0;
    }
}

@keyframes sideGlow {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.5);
    }
}

@keyframes headingShine {
    0% {
        left: -30%;
    }

    32%,
    100% {
        left: 130%;
    }
}

@keyframes greenFlash {
    0%,
    100% {
        filter: brightness(1) saturate(1);
    }

    50% {
        filter: brightness(1.25) saturate(1.25);
    }
}

@keyframes buttonShake {
    0%,
    91%,
    100% {
        transform: translateX(0);
    }

    93% {
        transform: translateX(-2px);
    }

    95% {
        transform: translateX(2px);
    }

    97% {
        transform: translateX(-1px);
    }

    99% {
        transform: translateX(1px);
    }
}

@keyframes buttonShine {
    0% {
        left: -45%;
    }

    45%,
    100% {
        left: 145%;
    }
}

@keyframes megaFlash {
    0%,
    100% {
        filter: brightness(1) saturate(1);
    }

    50% {
        filter: brightness(1.30) saturate(1.35);
    }
}

@keyframes megaScale {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.012);
    }
}

@keyframes megaShine {
    0% {
        left: -45%;
    }

    50%,
    100% {
        left: 145%;
    }
}

@keyframes arrowBounce {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(7px);
    }
}

@keyframes imageBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@keyframes faqButton {
    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

@keyframes quoteShine {
    0% {
        left: -40%;
    }

    30%,
    100% {
        left: 140%;
    }
}

@media (max-width: 921px) {
    .site-main {
        padding-top: 24px;
        padding-bottom: 50px;
    }

    .entry-content h1 {
        padding: 32px 27px 38px;
        font-size: 38px;
        border-radius: 19px;
    }

    .entry-content h2 {
        padding: 17px 19px 17px 24px;
        font-size: 28px;
    }

    .entry-content .wp-block-table th,
    .entry-content .wp-block-table td {
        padding: 14px !important;
    }

    .entry-content .wp-block-table td a {
        min-width: 180px;
    }
}

@media (max-width: 767px) {
    .ast-primary-header-bar {
        min-height: 66px;
    }

    .site-title,
    .site-title a {
        font-size: 25px !important;
    }

    .site-main {
        padding-top: 14px;
    }

    .ast-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .entry-content {
        font-size: 15.5px;
        line-height: 1.66;
    }

    .entry-content h1 {
        margin-top: 4px;
        margin-bottom: 25px;
        padding: 25px 19px 32px;
        font-size: 29px;
        line-height: 1.10;
        letter-spacing: -1px;
        border-radius: 16px;
    }

    .entry-content h1::after {
        height: 5px;
        bottom: 10px;
    }

    .entry-content h2 {
        margin-top: 30px;
        margin-bottom: 18px;
        padding: 15px 15px 15px 20px;
        font-size: 23px;
        line-height: 1.2;
        border-radius: 11px;
    }

    .entry-content h3 {
        font-size: 20px;
    }

    .entry-content .wp-block-table {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .entry-content .wp-block-table::before {
        display: none;
    }

    .entry-content .wp-block-table table,
    .entry-content .wp-block-table tbody {
        display: block;
        width: 100%;
    }

    .entry-content .wp-block-table thead {
        display: none;
    }

    .entry-content .wp-block-table tbody tr {
        position: relative;
        display: block;
        width: 100%;
        margin-bottom: 17px;
        overflow: hidden;
        border: 1px solid rgba(0,119,255,.30);
        border-radius: 15px;
        background: #fff !important;
        box-shadow:
            0 14px 31px rgba(0,61,160,.15),
            0 0 0 3px rgba(0,170,255,.035);
    }

    .entry-content .wp-block-table tbody tr::before {
        content: "";
        display: block;
        width: 100%;
        height: 5px;
        background:
            linear-gradient(
                90deg,
                var(--cyan),
                var(--green),
                var(--yellow),
                var(--orange),
                var(--cyan)
            );
        background-size: 250% 100%;
        animation: neonRunner 1.8s linear infinite;
    }

    .entry-content .wp-block-table tbody td {
        display: block;
        width: 100% !important;
        padding: 13px 14px !important;
        text-align: center !important;
        border-right: 0 !important;
        border-bottom: 1px solid #e0ebf8 !important;
    }

    .entry-content .wp-block-table tbody td:last-child {
        border-bottom: 0 !important;
    }

    .entry-content .wp-block-table tbody td:nth-child(2) {
        background:
            linear-gradient(
                90deg,
                #f2ffe3,
                #fbfff3
            );
    }

    .entry-content .wp-block-table td a {
        width: 100%;
        min-width: 0;
        min-height: 57px;
    }

    .entry-content .wp-block-button__link,
    .entry-content .wp-element-button {
        width: 100%;
        min-height: 64px;
        padding: 16px 17px;
        font-size: 15px;
        border-radius: 11px !important;
    }

    .entry-content figure.wp-block-image {
        margin-top: 25px;
        margin-bottom: 29px;
    }

    .entry-content figure.wp-block-image img {
        width: 100%;
        border-radius: 13px;
    }

    .entry-content details summary,
    .entry-content .wp-block-details summary {
        padding: 16px 54px 16px 16px;
        font-size: 15px;
    }

    .site-footer {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .entry-content h1 {
        font-size: 26px;
    }

    .entry-content h2 {
        font-size: 21px;
    }

    .entry-content .wp-block-table tbody td {
        padding: 12px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}