```css
/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #ffffff;
    background: #080817;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   BACKGROUND
========================================================= */

.background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.background::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(124, 58, 237, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 80% 25%,
            rgba(6, 182, 212, 0.13),
            transparent 25%
        ),
        radial-gradient(
            circle at 50% 80%,
            rgba(236, 72, 153, 0.1),
            transparent 30%
        );
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.orb-one {
    width: 300px;
    height: 300px;
    background: #7c3aed;
    top: 5%;
    left: -100px;
}

.orb-two {
    width: 250px;
    height: 250px;
    background: #06b6d4;
    right: -80px;
    top: 20%;
    animation-delay: -3s;
}

.orb-three {
    width: 220px;
    height: 220px;
    background: #ec4899;
    left: 35%;
    bottom: 5%;
    animation-delay: -6s;
}

.orb-four {
    width: 180px;
    height: 180px;
    background: #f59e0b;
    right: 15%;
    bottom: 20%;
    animation-delay: -9s;
}

@keyframes orbFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(60px, -40px, 0) scale(1.2);
    }
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 20;
    padding: 24px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #ec4899
        );

    box-shadow:
        0 10px 30px rgba(139, 92, 246, 0.3);

    animation: logoPulse 3s ease-in-out infinite;
}

.logo-icon i {
    font-size: 17px;
}

.logo-text span {
    background:
        linear-gradient(
            90deg,
            #a78bfa,
            #f472b6,
            #22d3ee
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes logoPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    position: relative;
    color: #a7a7bd;
    font-size: 14px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 5px;

    background: #a78bfa;

    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 18px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.055);

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;

    backdrop-filter: blur(12px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.header-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(167, 139, 250, 0.5);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: min(1180px, calc(100% - 40px));
    min-height: 680px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;

    padding: 70px 0 100px;
}

.hero-content {
    animation: heroEnter 0.8s ease both;
}

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 13px;

    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 999px;

    background: rgba(124, 58, 237, 0.08);

    color: #c4b5fd;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;

    box-shadow:
        0 0 0 5px rgba(34, 197, 94, 0.1);

    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(34, 197, 94, 0.1);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(34, 197, 94, 0.03);
    }
}

.hero h1 {
    max-width: 760px;

    margin-top: 25px;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 900;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #a78bfa,
            #f472b6 45%,
            #22d3ee
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    background-size: 200% auto;

    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    to {
        background-position: 200% center;
    }
}

.hero-content > p {
    max-width: 650px;

    margin-top: 25px;

    color: #a5a5b9;
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;

    margin-top: 32px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 20px;

    border-radius: 13px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.primary-button {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #ec4899
        );

    box-shadow:
        0 12px 30px rgba(124, 58, 237, 0.28);
}

.primary-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(124, 58, 237, 0.4);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.045);

    color: #d4d4e0;
}

.secondary-button:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 45px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat strong {
    font-size: 22px;
}

.stat span {
    color: #77778f;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 480px;

    display: grid;
    place-items: center;
}

.visual-ring {
    position: absolute;

    border: 1px solid rgba(167, 139, 250, 0.13);
    border-radius: 50%;

    animation: rotateRing 18s linear infinite;
}

.ring-one {
    width: 390px;
    height: 390px;
}

.ring-two {
    width: 300px;
    height: 300px;

    border-color: rgba(34, 211, 238, 0.12);

    animation-duration: 14s;
    animation-direction: reverse;
}

.ring-three {
    width: 210px;
    height: 210px;

    border-color: rgba(244, 114, 182, 0.14);

    animation-duration: 10s;
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

.main-platform-icon {
    position: relative;
    z-index: 5;

    width: 145px;
    height: 145px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;

    background:
        linear-gradient(
            145deg,
            rgba(124, 58, 237, 0.85),
            rgba(236, 72, 153, 0.75)
        );

    box-shadow:
        0 30px 80px rgba(124, 58, 237, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);

    font-size: 54px;

    animation: mainIconFloat 4s ease-in-out infinite;
}

.main-platform-icon::before {
    content: "";

    position: absolute;
    inset: -15px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 48px;
}

@keyframes mainIconFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.floating-icon {
    position: absolute;
    z-index: 8;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;

    background: rgba(19, 19, 38, 0.8);

    backdrop-filter: blur(15px);

    font-size: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);

    animation: floatingIcon 4s ease-in-out infinite;
}

.icon-one {
    top: 18%;
    left: 14%;
    color: #60a5fa;
}

.icon-two {
    top: 20%;
    right: 10%;
    color: #f472b6;
    animation-delay: -1s;
}

.icon-three {
    right: 12%;
    bottom: 17%;
    color: #f87171;
    animation-delay: -2s;
}

.icon-four {
    left: 13%;
    bottom: 15%;
    color: #34d399;
    animation-delay: -3s;
}

@keyframes floatingIcon {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}


/* =========================================================
   SECTION HEADING
========================================================= */

.platforms-section {
    position: relative;
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #a78bfa;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.section-label > span {
    width: 25px;
    height: 2px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899
        );
}

.section-heading h2 {
    margin-top: 15px;

    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.section-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #a78bfa,
            #f472b6
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading p {
    margin-top: 18px;

    color: #85859c;
    line-height: 1.7;
}


/* =========================================================
   PLATFORM GRID
========================================================= */

.platform-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.platform-card {
    --accent: #a78bfa;

    position: relative;
    min-height: 280px;

    display: flex;
    flex-direction: column;

    padding: 24px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(12px);

    opacity: 0;
    animation:
        cardEnter 0.7s ease forwards;
    animation-delay: var(--delay);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background: var(--accent);

    opacity: 0.08;

    filter: blur(20px);

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

.platform-card:hover {
    transform: translateY(-10px);

    border-color: color-mix(
        in srgb,
        var(--accent) 50%,
        transparent
    );

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.3);
}

.platform-card:hover::before {
    transform: scale(1.6);
    opacity: 0.14;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.platform-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    color: var(--accent);

    background: color-mix(
        in srgb,
        var(--accent) 12%,
        transparent
    );

    border: 1px solid color-mix(
        in srgb,
        var(--accent) 18%,
        transparent
    );

    font-size: 22px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.platform-card:hover .platform-icon {
    transform:
        scale(1.08)
        rotate(-5deg);

    box-shadow:
        0 12px 30px color-mix(
            in srgb,
            var(--accent) 20%,
            transparent
        );
}

.card-arrow {
    color: #68687d;
    font-size: 13px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.platform-card:hover .card-arrow {
    color: var(--accent);
    transform: translate(3px, -3px);
}

.card-content {
    position: relative;
    z-index: 2;

    margin-top: auto;
}

.card-content h3 {
    font-size: 19px;
    letter-spacing: -0.4px;
}

.card-content p {
    margin-top: 9px;

    color: #85859b;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PLATFORM COLORS
========================================================= */

.platform-card.purple {
    --accent: #a78bfa;
}

.platform-card.blue {
    --accent: #60a5fa;
}

.platform-card.pink {
    --accent: #f472b6;
}

.platform-card.red {
    --accent: #f87171;
}

.platform-card.green {
    --accent: #34d399;
}

.platform-card.orange {
    --accent: #fb923c;
}

.platform-card.cyan {
    --accent: #22d3ee;
}

.platform-card.yellow {
    --accent: #facc15;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 70px 0;
}

.about-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 30px;

    padding: 40px;

    overflow: hidden;

    border: 1px solid rgba(167, 139, 250, 0.13);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.1),
            rgba(236, 72, 153, 0.04)
        );
}

.about-icon {
    flex-shrink: 0;

    width: 75px;
    height: 75px;

    display: grid;
    place-items: center;

    border-radius: 23px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #ec4899
        );

    font-size: 28px;

    box-shadow:
        0 15px 40px rgba(124, 58, 237, 0.25);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content h2 {
    max-width: 650px;

    margin-top: 12px;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.about-content h2 span {
    color: #a78bfa;
}

.about-content p {
    max-width: 700px;

    margin-top: 13px;

    color: #9292a7;

    line-height: 1.7;
}

.about-decoration {
    position: absolute;

    right: 40px;

    color: rgba(167, 139, 250, 0.06);

    font-size: 150px;

    transform: rotate(15deg);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 110px 0;
}

.cta-content {
    max-width: 700px;
    margin: auto;

    text-align: center;
}

.cta-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 19px;

    background:
        rgba(236, 72, 153, 0.1);

    border:
        1px solid rgba(236, 72, 153, 0.2);

    color: #f472b6;

    font-size: 22px;

    animation: sparkle 2.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%,
    100% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.1) rotate(8deg);
    }
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.cta-content h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #f472b6,
            #a78bfa,
            #22d3ee
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-content p {
    max-width: 560px;

    margin: 20px auto 28px;

    color: #85859b;

    line-height: 1.7;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
}

.footer-inner {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;
    gap: 25px;
}

.footer-brand p {
    margin-top: 8px;

    color: #656579;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 25px;

    color: #77778b;
    font-size: 12px;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    color: #5e5e72;
    font-size: 11px;
    text-align: right;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .platform-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hero {
        grid-template-columns:
            1fr 0.8fr;
    }

    .hero h1 {
        font-size: clamp(46px, 6vw, 68px);
    }

    .hero-visual {
        transform: scale(0.9);
    }
}


@media (max-width: 800px) {

    .main-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(46px, 11vw, 68px);
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
        margin-top: 10px;
    }

    .about-card {
        align-items: flex-start;
    }

    .about-decoration {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }
}


@media (max-width: 560px) {

    .container,
    .hero {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        padding: 17px 0;
    }

    .header-button {
        padding: 9px 13px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding-top: 45px;
        padding-bottom: 65px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 60px);
        letter-spacing: -3px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-stats {
        gap: 14px;
    }

    .stat-divider {
        height: 25px;
    }

    .hero-visual {
        min-height: 340px;
        transform: scale(0.78);
        margin: -20px 0;
    }

    .ring-one {
        width: 350px;
        height: 350px;
    }

    .ring-two {
        width: 270px;
        height: 270px;
    }

    .ring-three {
        width: 190px;
        height: 190px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        min-height: 250px;
    }

    .platforms-section {
        padding: 70px 0;
    }

    .about-card {
        padding: 28px;

        flex-direction: column;
    }

    .about-content h2 {
        font-size: 31px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
```
