/* ================================================================
   ECLIPX HERO SECTION – Inspired by AuthKit / CodePen by RAFA
   Scoped under .eclipx-hero to avoid conflicts with main styles
   ================================================================ */

@import url('https://fonts.cdnfonts.com/css/hubot-sans');

.eclipx-hero {
    position: relative;
    width: 100%;
    margin-top: var(--header-height, 80px);
    /* Add margin to prevent header overlap */
    overflow: hidden;
    background: #05060f linear-gradient(0deg, rgba(216, 236, 248, .06), rgba(152, 192, 239, .06));
    font-family: Untitled Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    font-size: max(calc(var(--_size) * 0.03), 10px);
    --_factor: min(600px, 80vh);
    --_size: min(var(--_factor), 80vw);
    z-index: 11;
    /* Above genesis sequence */
}

.eclipx-hero *,
.eclipx-hero *::before,
.eclipx-hero *::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Gold mode */
.eclipx-hero.gold .eclipx-header h2,
.eclipx-hero.gold p,
.eclipx-hero.gold>*>* :not(.eclipx-contact-btn) {
    filter: invert(1) brightness(4.7);
}

.eclipx-hero.gold .eclipx-header h2 a {
    filter: hue-rotate(0deg);
}

.eclipx-hero.gold canvas {
    filter: drop-shadow(2em 4em 0px #d8bd10) drop-shadow(-8em -14em 0px #d8bd10);
}

.eclipx-hero.gold .eclipx-header .eclipx-spotlight {
    filter: invert(1) brightness(4.7) opacity(0.5);
}

.eclipx-hero.gold .eclipx-mountains>div {
    box-shadow:
        -1em -0.2em 0.4em -1.1em #c2ccff,
        inset 0em 0em 0em 2px #d8a910,
        inset 0.2em 0.3em 0.2em -0.2em #c2ccff,
        inset 10.2em 10.3em 2em -10em #d4e6ff2f;
}

.eclipx-hero.gold .eclipx-content-section,
.eclipx-hero.gold .eclipx-content-section ::before,
.eclipx-hero.gold .eclipx-content-section ::after {
    filter: invert(1) brightness(4.4) opacity(1);
}

.eclipx-hero.gold .eclipx-header>div.eclipx-mid-spot {
    box-shadow: 0 0 1em 0 #d8bd10;
}

.eclipx-hero.gold .eclipx-header>div.eclipx-mid-spot:hover {
    box-shadow: -0.3em 0.1em 0.2em 0 #98c0ef;
}

.eclipx-hero h2 {
    font-family: 'Hubot-Sans', sans-serif;
}

.eclipx-hero h2,
.eclipx-hero p {
    margin: 0;
    padding: 0;
}

.eclipx-hero h2 a {
    text-decoration: none;
    color: unset;
}

/* ---- Header bar inside hero ---- */
.eclipx-header {
    display: flex;
    width: 100%;
    justify-content: center;
    color: #bad6f7;
    padding: 2em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    translate: 0 -1em;
    animation: eclipx-load 2s ease-in 2s forwards, eclipx-up 1.4s ease-out 2s forwards;
    z-index: 5;
}

.eclipx-header> :nth-child(1) {
    font-size: 1em;
    position: absolute;
    left: 0;
    right: 29em;
    margin: 0.2em auto;
    width: fit-content;
}

.eclipx-header> :nth-child(2) {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
}

.eclipx-header>h2 {
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.04s ease-in-out;
}

.eclipx-header>h2:hover {
    opacity: 1;
    text-shadow: 0 2px 16px rgba(174, 207, 242, 0.6);
    width: fit-content;
}

.eclipx-header>div.eclipx-mid-spot {
    width: 1.8em;
    height: 1.8em;
    border-radius: 50%;
    background: black;
    box-shadow: 0 0 1em 0 #98c0ef;
    cursor: pointer;
    transition: box-shadow 1s ease-in-out;
}

.eclipx-header>div.eclipx-mid-spot:hover {
    box-shadow: -0.3em 0.1em 0.2em 0 #d8bd10;
}

.eclipx-header> :nth-child(2):hover~.eclipx-spotlight {
    animation: eclipx-colorize 10s linear infinite;
}

@keyframes eclipx-colorize {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(-380deg);
    }
}

/* Contact button */
button.eclipx-contact-btn {
    position: absolute;
    left: min(46em, 60vw);
    right: 0;
    margin: 0 auto;
    width: 8em;
    height: 2.4em;
    cursor: pointer;
    border-radius: 20em;
    border: none;
    transition: background 0.5s, transform 0.5s;
    border: 1px solid #c2ccff33;
    opacity: 1;
    padding-top: 0.3em;
    background: #121521;
    color: #9dc3f7;
    white-space: nowrap;
}

button.eclipx-contact-btn::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20em;
    width: 100%;
    height: 100%;
    background: #c2ccff91 radial-gradient(farthest-side at 50% 100%, #c2ccff, transparent);
    opacity: 0.1;
    transition: all 0.4s ease-in-out;
}

button.eclipx-contact-btn:hover::before {
    background: #c2ccff1e radial-gradient(farthest-side at 50% 100%, #c2ccff, transparent);
    opacity: 0.3;
}

.eclipx-contact-btn .eclipx-glow {
    --border-width: 1px;
    --loop-cycle: 24s;
    position: absolute;
    inset: calc(var(--border-width) * -1);
    border-radius: 50px;
    border: var(--border-width) solid transparent;
    -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
    mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-composite: source-in, xor;
    mask-composite: intersect;
    pointer-events: none;
}

button.eclipx-contact-btn:hover .eclipx-glow {
    --loop-cycle: 2s;
}

.eclipx-contact-btn .eclipx-glow::after,
.eclipx-contact-btn .eclipx-glow::before {
    content: "";
    height: 100%;
    offset-anchor: 100% 50%;
    background: radial-gradient(circle at 50% 50%, hsla(0, 0%, 100%, 0.75), transparent 50%), radial-gradient(circle at 50% 50%, #c2ccff 50%, transparent);
    opacity: 0.4;
    offset-path: rect(0 100% 100% 0 round 33px);
    position: absolute;
    display: inline-block;
    animation: eclipx-loop var(--loop-cycle) linear infinite;
    aspect-ratio: 1 / 1;
    transition: opacity 1s ease-in-out;
}

.eclipx-contact-btn .eclipx-glow::before {
    animation-delay: calc(var(--loop-cycle) / -2);
}

@keyframes eclipx-loop {
    100% {
        offset-distance: 100%;
    }
}

.eclipx-contact-btn-content {
    background: linear-gradient(0deg, #d8ecf8, #98c0ef);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2em;
    line-height: 142%;
}

button.eclipx-contact-btn:hover .eclipx-glow::after,
button.eclipx-contact-btn:hover .eclipx-glow::before {
    opacity: 0.6;
}

/* ---- Spotlight ---- */
.eclipx-header .eclipx-spotlight {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    transition: filter 1s ease-in-out;
    height: 42em;
    width: 100%;
    overflow: hidden;
}

.eclipx-header .eclipx-spotlight>div {
    border-radius: 0 0 50% 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 3em;
    width: 30em;
    height: max(42em, 86vh);
    background-image: conic-gradient(from 0deg at 50% -5%, transparent 45%, rgba(124, 145, 182, .3) 49%, rgba(124, 145, 182, .5) 50%, rgba(124, 145, 182, .3) 51%, transparent 55%);
    transform-origin: 50% 0;
    filter: blur(15px) opacity(0.5);
    z-index: -1;
    animation: eclipx-load 2s ease-in-out forwards, eclipx-loadrot 2s ease-in-out forwards, eclipx-spotlight 21s ease-in-out infinite reverse;
}

.eclipx-header .eclipx-spotlight>div:nth-child(1) {
    rotate: 20deg;
    animation: eclipx-load 2s ease-in-out forwards, eclipx-loadrot 2s ease-in-out forwards, eclipx-spotlight 17s ease-in-out infinite;
}

.eclipx-header .eclipx-spotlight>div:nth-child(2) {
    rotate: -20deg;
    animation: eclipx-load 2s ease-in-out forwards, eclipx-loadrot 2s ease-in-out forwards, eclipx-spotlight 14s ease-in-out infinite;
}

@keyframes eclipx-loadrot {
    0% {
        rotate: 0deg;
        scale: 0;
    }

    100% {
        scale: 1;
    }
}

@keyframes eclipx-spotlight {
    0% {
        transform: rotateZ(0deg) scale(1);
        filter: blur(15px) opacity(0.5);
    }

    20% {
        transform: rotateZ(-1deg) scale(1.2);
        filter: blur(16px) opacity(0.6);
    }

    40% {
        transform: rotateZ(2deg) scale(1.3);
        filter: blur(14px) opacity(0.4);
    }

    60% {
        transform: rotateZ(-2deg) scale(1.2);
        filter: blur(15px) opacity(0.6);
    }

    80% {
        transform: rotateZ(1deg) scale(1.1);
        filter: blur(13px) opacity(0.4);
    }

    100% {
        transform: rotateZ(0deg) scale(1);
        filter: blur(15px) opacity(0.5);
    }
}

/* ---- Particle Canvas ---- */
canvas.eclipx-particleCanvas {
    position: absolute;
    pointer-events: none;
    animation: eclipx-load 0.4s ease-in-out forwards;
    z-index: 1;
    width: 100%;
}

.eclipx-hero p {
    font-size: 1.5em;
}

/* ---- Main hero text ---- */
.eclipx-hero-block {
    width: 100%;
    height: 100%;
    max-height: 140px;
    position: absolute;
    top: 16em;
}

.eclipx-heroT {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 20em;
    padding-top: 2em;
    translate: 0 -1.6em;
    opacity: 0;
    animation: eclipx-load 2s ease-in-out 0.6s forwards;
}

@keyframes eclipx-load {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.eclipx-heroT>h2 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    font-size: 7em;
    font-weight: 600;
    color: #9dc3f7;
    background:
        radial-gradient(2em 2em at 50% 50%,
            transparent calc(var(--p) - 2em),
            #fff calc(var(--p) - 1em),
            #fff calc(var(--p) - 0.4em),
            transparent var(--p)),
        linear-gradient(0deg, #bad1f1 30%, #9dc3f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 16px rgba(174, 207, 242, .24);
    --p: 0%;
    transition: --p 3s linear;
    animation: eclipx-pulse 10s linear 1.2s infinite;
}

.eclipx-heroT h2:nth-child(2) {
    background:
        radial-gradient(2em 2em at 50% 50%,
            transparent calc(var(--p) - 2em),
            transparent calc(var(--p) - 1em),
            #fff calc(var(--p) - 1em),
            #fff calc(var(--p) - 0.4em),
            transparent calc(var(--p) - 0.4em),
            transparent var(--p));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(16px) opacity(0.4);
}

@keyframes eclipx-pulse {
    0% {
        --p: 0%;
    }

    50% {
        --p: 300%;
    }

    100% {
        --p: 300%;
    }
}

@property --p {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}

.eclipx-heroP {
    font-size: 1.2em;
    position: absolute;
    left: 0;
    right: 0;
    top: 20.6em;
    margin: auto;
    height: fit-content;
    width: fit-content;
    text-align: center;
    opacity: 0;
    translate: 0 1em;
    animation: eclipx-load 2s ease-out 2s forwards, eclipx-up 1.4s ease-out 2s forwards;
    color: #d8ecf8;
    text-shadow: 0 2px 16px rgba(174, 207, 242, .24);
    background: linear-gradient(0deg, #d8ecf8 0, #98c0ef 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes eclipx-up {
    100% {
        translate: 0;
    }
}

/* ---- Introducing subtitle ---- */
.eclipx-heroSubP {
    position: absolute;
    left: 0;
    right: 0;
    top: 13em;
    margin: auto;
    height: fit-content;
    opacity: 0;
    translate: 0 -1em;
    animation: eclipx-load3 2s ease-in 0s forwards, eclipx-up 1.4s ease-out 0s forwards;
}

@keyframes eclipx-load3 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.7;
    }
}

.eclipx-heroSubP p {
    font-size: 1em;
    position: relative;
    width: fit-content;
    margin: auto;
    color: #d8ecf8;
    text-shadow: 0 2px 16px rgba(174, 207, 242, .24);
    background: linear-gradient(0deg, #d8ecf8 0, #98c0ef 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eclipx-heroSubP p::before,
.eclipx-heroSubP p::after {
    position: absolute;
    top: 60%;
    display: block;
    content: '';
    width: 5em;
    height: 1px;
    opacity: 0;
    animation: eclipx-load2 1.4s ease-in-out 0s forwards, eclipx-up 1.4s ease-out 0s forwards;
}

@keyframes eclipx-load2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.3;
    }
}

.eclipx-heroSubP p::before {
    background: linear-gradient(-90deg, #9dc3f7 0%, transparent 100%);
    right: 120%;
    translate: -5em 0;
}

.eclipx-heroSubP p::after {
    background: linear-gradient(90deg, #9dc3f7 0%, transparent 100%);
    left: 120%;
    translate: 5em 0;
}

/* ---- Accent lines ---- */
.eclipx-accent-lines {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 42em;
    z-index: -2;
    --accent-lines-clr: rgba(186, 215, 247, .18);
}

.eclipx-accent-lines>div {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 100%;
    width: 100%;
}

.eclipx-accent-lines>div:nth-child(1)>div {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-lines-clr), transparent);
    opacity: 0;
    scale: 0;
    animation: eclipx-accentload 2s ease-out 2.4s forwards;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(1) {
    top: 6em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(2) {
    top: 11em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(3) {
    top: 16em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(4) {
    top: 24em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(5) {
    top: 29em;
}

.eclipx-accent-lines>div:nth-child(2)>div {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background: var(--accent-lines-clr);
}

@keyframes eclipx-accentload {
    0% {
        opacity: 0;
        scale: 0;
    }

    100% {
        opacity: 1;
        scale: 1;
    }
}

.eclipx-accent-lines>div:nth-child(2)>div {
    opacity: 0;
    scale: 0;
    animation: eclipx-accentload 2s ease-out 2s forwards;
}

.eclipx-accent-lines>div:nth-child(2)>div:nth-child(1) {
    left: 24em;
}

.eclipx-accent-lines>div:nth-child(2)>div:nth-child(2) {
    left: 34em;
}

.eclipx-accent-lines>div:nth-child(2)>div:nth-child(3) {
    right: 24em;
}

.eclipx-accent-lines>div:nth-child(2)>div:nth-child(4) {
    right: 34em;
}

.eclipx-accent-lines>div:nth-child(1)>div::before,
.eclipx-accent-lines>div:nth-child(1)>div::after {
    content: '';
    display: none;
    position: absolute;
    width: 0.2em;
    height: 0.2em;
    border-radius: 1em;
    background: #9dc3f7;
    left: 0;
    right: 0;
    margin: auto;
    translate: 0 -1px;
    opacity: 0;
    scale: 0;
    animation: eclipx-accentload 2s ease-out 4.4s forwards;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(3)::before {
    display: block;
    left: 24em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(3)::after {
    display: block;
    right: 24em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(4)::before {
    display: block;
    left: 24em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(4)::after {
    display: block;
    right: 24em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(5)::before {
    display: block;
    left: 24em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(5)::after {
    display: block;
    right: 24em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(2)::before,
.eclipx-accent-lines>div:nth-child(1)>div:nth-child(2)::after {
    display: block;
    width: 5em;
    height: 1px;
    border-radius: 0;
    opacity: 0.12;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(2)::before {
    right: 24em;
    rotate: 45deg;
    translate: -2.5em 2.5em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(2)::after {
    right: 24em;
    rotate: -45deg;
    translate: -2.5em 2.5em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(1)::before,
.eclipx-accent-lines>div:nth-child(1)>div:nth-child(1)::after {
    display: block;
    width: 5em;
    height: 1px;
    border-radius: 0;
    opacity: 0.12;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(1)::before {
    left: 24em;
    rotate: 45deg;
    translate: 2.5em 7.5em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(1)::after {
    left: 24em;
    rotate: -45deg;
    translate: 2.5em 7.5em;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(2)::before,
.eclipx-accent-lines>div:nth-child(1)>div:nth-child(2)::after {
    opacity: 0;
    scale: 0;
    animation: eclipx-accentload2 2s ease-out 2.4s forwards;
}

.eclipx-accent-lines>div:nth-child(1)>div:nth-child(1)::before,
.eclipx-accent-lines>div:nth-child(1)>div:nth-child(1)::after {
    opacity: 0;
    scale: 0;
    animation: eclipx-accentload3 2s ease-out 2.4s forwards;
}

@keyframes eclipx-accentload2 {
    0% {
        opacity: 0;
        scale: 0;
        transform: rotate(360deg);
    }

    50% {
        scale: 0;
    }

    100% {
        opacity: 0.12;
        scale: 1;
        transform: rotate(0deg);
    }
}

@keyframes eclipx-accentload3 {
    0% {
        opacity: 0;
        scale: 0;
        transform: rotate(-360deg);
    }

    50% {
        scale: 0;
    }

    100% {
        opacity: 0.12;
        scale: 1;
        transform: rotate(0deg);
    }
}

/* ---- Mountains ---- */
.eclipx-mountains {
    position: absolute;
    left: 0;
    right: 0;
    top: 31em;
    margin: auto;
    width: 100%;
    height: 10em;
    pointer-events: none;
}

.eclipx-mountains::before {
    content: '';
    display: block;
    width: 100%;
    height: 500%;
    position: absolute;
    top: 0%;
    background: linear-gradient(0deg, #121521 80%, transparent 90%);
    z-index: 2;
}

.eclipx-mountains>div {
    box-shadow:
        -1em -0.2em 0.4em -1.1em #c2ccff,
        inset 0em 0em 0em 2px #c2ccff,
        inset 0.2em 0.3em 0.2em -0.2em #c2ccff,
        inset 10.2em 10.3em 2em -10em #d4e6ff2f;
    background: #121521;
    z-index: 1;
    filter: brightness(0.8);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 20em;
    height: 20em;
    rotate: 45deg;
}

.eclipx-mountains>div:nth-child(1) {
    bottom: -240%;
    translate: -6em 2em;
    animation: eclipx-mountainload1 2s ease-out 2.4s forwards;
}

.eclipx-mountains>div:nth-child(2) {
    bottom: -240%;
    translate: -2em 0em;
    width: 14em;
    height: 20em;
    animation: eclipx-mountainload2 2s ease-out 2.2s forwards;
}

.eclipx-mountains>div:nth-child(3) {
    bottom: -240%;
    translate: 6em 3em;
    animation: eclipx-mountainload1 2s ease-out 2s forwards;
}

@keyframes eclipx-mountainload1 {
    0% {
        bottom: -240%;
    }

    100% {
        bottom: -140%;
    }
}

@keyframes eclipx-mountainload2 {
    0% {
        bottom: -240%;
    }

    100% {
        bottom: -108%;
    }
}

.eclipx-mountains>div::before {
    content: '';
    display: block;
    background: repeating-radial-gradient(at 100% 100%, transparent 0%, #c2ccff22 2px, transparent 4px);
    width: 12em;
    height: 12em;
    position: absolute;
    left: 0;
    top: 0;
    border-bottom-right-radius: 100%;
}

/* ---- Scroll cue ---- */
.eclipx-scroll-cue {
    position: absolute;
    bottom: 3em;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0;
    animation: eclipx-load 1.5s ease-in 4s forwards;
}

.eclipx-scroll-cue span {
    display: block;
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(157, 195, 247, 0.5);
    border-bottom: 2px solid rgba(157, 195, 247, 0.5);
    transform: rotate(45deg);
    animation: eclipx-chevron-bounce 2.4s ease-in-out infinite;
}

.eclipx-scroll-cue span:nth-child(2) {
    margin-top: -8px;
    animation-delay: 0.2s;
}

@keyframes eclipx-chevron-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ---- Hero spacer ---- */
.eclipx-hero-spacer {
    height: 44em;
    pointer-events: none;
}

/* ---- Content section below hero ---- */
.eclipx-content-section {
    position: relative;
    z-index: 1112;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 16em 0 12em 0;
    overflow: hidden;
}

.eclipx-content-section p.eclipx-subt {
    color: #d8ecf8be;
    font-size: 0.8em;
    font-weight: 200;
    position: relative;
    width: fit-content;
    margin: auto;
}

.eclipx-content-section h3 {
    margin: 0.4em 0 0.6em 0;
    font-size: 2.3em;
    font-weight: 600;
    color: #d8ecf8;
    text-shadow: 0 2px 16px rgba(174, 207, 242, .24);
    background: linear-gradient(0deg, #d8ecf8 0, #98c0ef 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eclipx-content-section p.eclipx-subp {
    color: #d8ecf8be;
    font-size: 1em;
    font-weight: 400;
    max-width: 26em;
    margin: auto;
}

.eclipx-content-section p.eclipx-subt::before,
.eclipx-content-section p.eclipx-subt::after {
    position: absolute;
    top: 60%;
    display: block;
    content: '';
    width: 5em;
    height: 1px;
    opacity: 0.5;
}

.eclipx-content-section p.eclipx-subt::before {
    background: linear-gradient(-90deg, #9dc3f7 0%, transparent 100%);
    right: 120%;
    top: 50%;
}

.eclipx-content-section p.eclipx-subt::after {
    background: linear-gradient(90deg, #9dc3f7 0%, transparent 100%);
    left: 120%;
    top: 50%;
}

.eclipx-content-section .eclipx-content-acc {
    position: absolute;
    left: 0;
    right: 0;
    top: 25%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.eclipx-content-section .eclipx-content-acc div {
    width: 10em;
    height: 10em;
    border-radius: 50%;
    box-shadow:
        -1em -0.2em 0.4em -1.1em #c2ccff,
        inset 0em 0em 0em 2px #c2ccff,
        inset 0.2em 0.3em 0.2em -0.2em #c2ccff,
        inset -1.2em 2.3em 2em -0.5em #d4e6ff2f;
    background: #121521;
    z-index: 1;
    filter: brightness(0.8);
    background: repeating-radial-gradient(at 50% 50%, transparent 0%, #c2ccff22 2px, transparent 4px);
    translate: -18em;
}

.eclipx-content-section .eclipx-content-acc div:nth-child(2) {
    translate: 18em 12em;
    border-radius: 2em;
    box-shadow:
        -1em -0.2em 0.4em -1.1em #c2ccff,
        inset 0em 0em 0em 2px #c2ccff,
        inset 0.2em 0.3em 0.2em -0.2em #c2ccff,
        inset 10.8em 11.3em 2em -10.5em #d4e6ff2f;
}