@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    min-height: 100%;
}


body {

    background: #08050d;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    overflow-x: hidden;

}


/* =========================================================
   BACKGROUND SCENE
========================================================= */

.scene {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 45%,
            #24132b 0%,
            #11091a 30%,
            #08050d 65%,
            #040307 100%
        );

    z-index: -10;

}


/* =========================================================
   CANVAS
========================================================= */

#stars {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

}


/* =========================================================
   AURORA
========================================================= */

.aurora {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    opacity: .5;

}


.aurora-1 {

    width: 650px;
    height: 650px;

    background:
        radial-gradient(
            circle,
            rgba(190, 72, 174, .45),
            transparent 70%
        );

    left: -220px;
    top: -250px;

    animation:
        auroraOne 14s ease-in-out infinite alternate;

}


.aurora-2 {

    width: 700px;
    height: 700px;

    background:
        radial-gradient(
            circle,
            rgba(92, 101, 210, .42),
            transparent 70%
        );

    right: -280px;
    bottom: -300px;

    animation:
        auroraTwo 17s ease-in-out infinite alternate;

}


.aurora-3 {

    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            circle,
            rgba(221, 90, 174, .25),
            transparent 70%
        );

    left: 42%;
    top: 25%;

    animation:
        auroraThree 11s ease-in-out infinite alternate;

}


@keyframes auroraOne {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(180px, 120px) scale(1.25);
    }

}


@keyframes auroraTwo {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-150px, -130px) scale(1.2);
    }

}


@keyframes auroraThree {

    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100px, 80px);
    }

}


/* =========================================================
   LIGHT BEAMS
========================================================= */

.light-beam {

    position: absolute;

    width: 2px;

    height: 150%;

    top: -25%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(214, 113, 202, .0),
            rgba(214, 113, 202, .55),
            rgba(120, 130, 220, .3),
            transparent
        );

    filter: blur(2px);

    opacity: .35;

}


.beam-1 {

    left: 28%;

    transform:
        rotate(32deg);

    animation:
        beamMove 8s ease-in-out infinite alternate;

}


.beam-2 {

    right: 22%;

    transform:
        rotate(-32deg);

    animation:
        beamMove 11s ease-in-out infinite alternate-reverse;

}


@keyframes beamMove {

    from {
        opacity: .1;
        transform:
            rotate(32deg)
            translateX(-100px);
    }

    to {
        opacity: .5;
        transform:
            rotate(32deg)
            translateX(100px);
    }

}


/* =========================================================
   ORBITS
========================================================= */

.orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border: 1px solid rgba(216, 116, 203, .1);

    transform:
        translate(-50%, -50%)
        rotate(0deg);

}


.orbit-1 {

    width: 650px;
    height: 650px;

    animation:
        orbitSpin 35s linear infinite;

}


.orbit-2 {

    width: 950px;
    height: 400px;

    border-color:
        rgba(109, 121, 217, .1);

    transform:
        translate(-50%, -50%)
        rotate(55deg);

    animation:
        orbitSpinReverse 45s linear infinite;

}


.orbit-3 {

    width: 1200px;
    height: 1200px;

    border-color:
        rgba(255,255,255,.035);

    animation:
        orbitSpin 60s linear infinite;

}


@keyframes orbitSpin {

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


@keyframes orbitSpinReverse {

    to {
        transform:
            translate(-50%, -50%)
            rotate(-305deg);
    }

}


/* =========================================================
   NOISE
========================================================= */

.noise {

    position: absolute;

    inset: 0;

    opacity: .045;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

    z-index: 4;

}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 82px;

    padding:
        0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 20;

}


.brand-mini {

    display: flex;

    align-items: center;

    gap: 10px;

    font-family: "Outfit", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    color:
        rgba(255,255,255,.65);

}


.brand-line {

    width: 22px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #c66cbb,
            #6d78d7
        );

}


.status-pill {

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 13px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 100px;

    background:
        rgba(255,255,255,.035);

    color:
        rgba(255,255,255,.48);

    font-size: 9px;

    letter-spacing: 1.5px;

}


.status-pill span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d17ac4;

    box-shadow:
        0 0 12px #d17ac4;

    animation:
        statusBlink 1.5s ease-in-out infinite;

}


@keyframes statusBlink {

    0%,
    100% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    width: 100%;

    padding:
        110px 20px 45px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    z-index: 10;

}


/* =========================================================
   VERTICAL LINE
========================================================= */

.vertical-line {

    position: absolute;

    width: 1px;

    height: 50vh;

    left: 8%;

    top: 25%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(202,111,192,.3),
            transparent
        );

    animation:
        linePulse 4s ease-in-out infinite;

}


@keyframes linePulse {

    0%,
    100% {
        opacity: .25;
    }

    50% {
        opacity: .8;
    }

}


/* =========================================================
   LOGO
========================================================= */

.logo-area {

    position: relative;

    width: 170px;
    height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

}


.logo-box {

    width: 126px;
    height: 126px;

    border-radius: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 5;

    background:
        rgba(255,255,255,.93);

    box-shadow:

        0 0 0 1px rgba(255,255,255,.2),

        0 20px 70px
        rgba(201,101,190,.3);

    overflow: hidden;

    animation:
        logoFloat 5s ease-in-out infinite;

}


.logo-box::after {

    content: "";

    position: absolute;

    width: 200%;

    height: 40%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.8),
            transparent
        );

    transform:
        rotate(-25deg)
        translateX(-100%);

    animation:
        logoShine 4s ease-in-out infinite;

}


.logo-box img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    position: relative;

    z-index: 2;

}


.logo-aura {

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(205,100,193,.35),
            transparent 68%
        );

    filter: blur(15px);

    animation:
        auraPulse 3s ease-in-out infinite;

}


.logo-ring {

    position: absolute;

    border:
        1px solid rgba(211,116,201,.2);

    border-radius: 50%;

}


.ring-a {

    width: 155px;
    height: 155px;

    border-top-color:
        rgba(215,124,202,.75);

    animation:
        ringRotate 7s linear infinite;

}


.ring-b {

    width: 195px;
    height: 195px;

    border-right-color:
        rgba(111,124,216,.6);

    animation:
        ringRotateReverse 11s linear infinite;

}


@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


@keyframes auraPulse {

    0%,
    100% {
        opacity: .55;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

}


@keyframes ringRotate {

    to {
        transform: rotate(360deg);
    }

}


@keyframes ringRotateReverse {

    to {
        transform: rotate(-360deg);
    }

}


@keyframes logoShine {

    0%,
    40% {
        transform:
            rotate(-25deg)
            translateX(-100%);
    }

    70%,
    100% {
        transform:
            rotate(-25deg)
            translateX(100%);
    }

}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-bottom: 17px;

    color:
        rgba(255,255,255,.42);

    font-family: "Outfit", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.4px;

}


.eyebrow span {

    width: 25px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(211,116,199,.7)
        );

}


.eyebrow span:last-child {

    background:
        linear-gradient(
            90deg,
            rgba(211,116,199,.7),
            transparent
        );

}


/* =========================================================
   HEADING
========================================================= */

h1 {

    font-family: "Outfit", sans-serif;

    font-size:
        clamp(42px, 6vw, 76px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 600;

    max-width: 950px;

    margin-bottom: 25px;

}


.gradient-text {

    background:
        linear-gradient(
            100deg,
            #ffffff,
            #d785cd 35%,
            #9c9ee7 75%,
            #ffffff
        );

    background-size: 300% auto;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    animation:
        textGradient 6s linear infinite;

}


@keyframes textGradient {

    to {
        background-position: 300% center;
    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.description {

    max-width: 650px;

    color:
        rgba(255,255,255,.65);

    font-size: 15px;

    line-height: 1.8;

}


.sub-description {

    margin-top: 7px;

    max-width: 600px;

    color:
        rgba(255,255,255,.34);

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-area {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(230px, 270px));

    gap: 12px;

    margin-top: 27px;

}


.contact-card {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 15px;

    text-decoration: none;

    color: white;

    text-align: left;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 16px;

    background:
        rgba(255,255,255,.045);

    backdrop-filter:
        blur(15px);

    transition:
        .35s ease;

}


.contact-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(210,119,199,.45);

    background:
        rgba(255,255,255,.075);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

}


.contact-icon {

    flex:
        0 0 39px;

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(211,116,201,.2),
            rgba(104,118,216,.15)
        );

}


.contact-icon svg {

    width: 17px;
    height: 17px;

    fill: none;

    stroke: #d994d0;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;

}


.contact-card small {

    display: block;

    font-size: 8px;

    color:
        rgba(255,255,255,.35);

    letter-spacing: 1.5px;

    margin-bottom: 4px;

}


.contact-card strong {

    font-size: 11px;

    color:
        rgba(255,255,255,.8);

    font-weight: 500;

}


/* =========================================================
   CTA
========================================================= */

.main-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    margin-top: 17px;

    padding:
        13px 21px 13px 24px;

    border-radius: 100px;

    text-decoration: none;

    color: white;

    font-size: 11px;

    font-weight: 600;

    background:
        linear-gradient(
            100deg,
            #984ea9,
            #cf70bd,
            #6875d1
        );

    background-size: 200% auto;

    box-shadow:
        0 12px 40px rgba(186,87,171,.25);

    transition:
        .35s ease;

    animation:
        buttonGradient 5s linear infinite;

}


.main-button:hover {

    transform:
        translateY(-3px)
        scale(1.02);

    box-shadow:
        0 20px 50px
        rgba(186,87,171,.38);

}


.button-arrow {

    width: 26px;
    height: 26px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.15);

    font-size: 16px;

    transition:
        .3s ease;

}


.main-button:hover .button-arrow {

    transform:
        translateX(4px);

}


@keyframes buttonGradient {

    to {
        background-position:
            200% center;
    }

}


/* =========================================================
   BOTTOM
========================================================= */

.bottom-text {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;

    color:
        rgba(255,255,255,.25);

    font-size: 9px;

    letter-spacing: .7px;

}


.bottom-text i {

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.3);

}


/* =========================================================
   CURSOR GLOW
========================================================= */

.cursor-glow {

    position: fixed;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(192,90,180,.08),
            transparent 68%
        );

    transform:
        translate(-50%, -50%);

    z-index: 1;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 700px) {

    .topbar {

        padding:
            0 20px;

    }

    .brand-mini {

        font-size: 9px;

        letter-spacing: 2px;

    }

    .status-pill {

        font-size: 7px;

    }

    .vertical-line {

        display: none;

    }

    .hero {

        padding:
            100px 18px 35px;

    }

    .logo-area {

        transform:
            scale(.9);

        margin-bottom: 20px;

    }

    .eyebrow {

        font-size: 7px;

        letter-spacing: 1.5px;

    }

    h1 {

        font-size:
            clamp(40px, 12vw, 57px);

        letter-spacing: -2px;

    }

    .description {

        font-size: 13px;

        line-height: 1.7;

    }

    .sub-description {

        font-size: 11px;

    }

    .contact-area {

        width: 100%;

        grid-template-columns: 1fr;

        max-width: 340px;

    }

    .contact-card {

        width: 100%;

    }

    .orbit-1 {

        width: 450px;
        height: 450px;

    }

    .orbit-2 {

        width: 650px;
        height: 280px;

    }

    .orbit-3 {

        width: 800px;
        height: 800px;

    }

    .bottom-text {

        flex-direction: column;

        gap: 6px;

    }

    .bottom-text i {

        display: none;

    }

}


@media(max-width: 380px) {

    h1 {

        font-size: 37px;

    }

    .logo-area {

        transform:
            scale(.8);

        margin-bottom: 5px;

    }

}