/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080b12;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

:root {
    --primary: #7c5cff;
    --primary-light: #9b85ff;
    --dark: #080b12;
    --dark-card: #101520;
    --text-light: #f5f5f7;
    --text-muted: #a8afbd;
    --border: rgba(255,255,255,0.09);
}


/* =========================================
   NAVBAR
========================================= */

.launch-navbar {
    background: rgba(8, 11, 18, 0.88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.launch-logo {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-mark {
    color: var(--primary-light);
    margin-right: 7px;
    font-size: 1.6rem;
}

.nav-link {
    color: #c8ccd5 !important;
    margin: 0 8px;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: white !important;
}

.nav-button {
    border-radius: 30px;
    padding: 9px 20px;
    color: #111 !important;
    font-weight: 600;
}


/* =========================================
   HERO
========================================= */

.hero-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(124, 92, 255, 0.15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #080b12 0%,
            #0b101a 55%,
            #090b13 100%
        );
}

.hero-row {
    min-height: 760px;
}

.hero-content {
    position: relative;
    z-index: 5;
    animation: heroLeft 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

    border: 1px solid rgba(124, 92, 255, 0.45);
    border-radius: 30px;

    background: rgba(124, 92, 255, 0.08);

    color: #c8bcff;

    font-size: 0.85rem;
    font-weight: 600;

    margin-bottom: 25px;
}

.hero-title {
    max-width: 650px;

    font-size: clamp(3rem, 6vw, 5.3rem);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 800;

    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary-light);
}

.hero-description {
    max-width: 600px;

    color: var(--text-muted);

    font-size: 1.12rem;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-buttons .btn {
    border-radius: 12px;
    padding: 14px 23px;
}

.hero-buttons .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-buttons .btn-primary:hover {
    background: #9178ff;
    border-color: #9178ff;
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 35px;

    color: #8e96a5;
    font-size: 0.85rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-item span {
    color: #7cdbad;
}


/* =========================================
   HERO BACKGROUND
========================================= */

.hero-background-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.circle-one {
    width: 300px;
    height: 300px;
    background: rgba(124, 92, 255, 0.13);
    top: 20%;
    left: -100px;
}

.circle-two {
    width: 250px;
    height: 250px;
    background: rgba(78, 112, 255, 0.08);
    bottom: 10%;
    right: 15%;
}


/* =========================================
   3D HERO VISUAL
========================================= */

.hero-visual {
    height: 650px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1200px;

    animation: heroRight 1.2s ease forwards;
}


/* Glow */

.visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    background: rgba(124, 92, 255, 0.20);

    filter: blur(100px);

    border-radius: 50%;
}


/* Orbit */

.orbit {
    position: absolute;

    border: 1px solid rgba(139, 118, 255, 0.20);

    border-radius: 50%;

    transform: rotateX(65deg);
}

.orbit-one {
    width: 550px;
    height: 220px;

    animation: orbitMove 7s linear infinite;
}

.orbit-two {
    width: 450px;
    height: 180px;

    transform: rotateX(65deg) rotateZ(45deg);

    animation: orbitMoveReverse 9s linear infinite;
}


/* =========================================
   MAIN 3D DASHBOARD
========================================= */

.dashboard-3d {
    width: 470px;
    min-height: 440px;

    position: relative;
    z-index: 3;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(31, 38, 53, 0.98),
            rgba(13, 17, 26, 0.98)
        );

    box-shadow:
        0 50px 90px rgba(0,0,0,0.55),
        0 0 50px rgba(124,92,255,0.14),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transform:
        rotateY(-13deg)
        rotateX(7deg)
        rotateZ(1deg);

    transition: 0.5s ease;

    animation: dashboardFloat 5s ease-in-out infinite;
}

.dashboard-3d:hover {
    transform:
        rotateY(-5deg)
        rotateX(3deg)
        translateY(-10px);
}


/* Dashboard top */

.dashboard-top {
    height: 55px;

    display: flex;
    align-items: center;

    padding: 0 20px;

    border-bottom: 1px solid var(--border);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #646a76;
}

.window-dots span:nth-child(1) {
    background: #ff6b6b;
}

.window-dots span:nth-child(2) {
    background: #ffd166;
}

.window-dots span:nth-child(3) {
    background: #6bd89a;
}

.dashboard-title {
    margin-left: auto;
    margin-right: auto;

    font-size: 0.85rem;
    color: #dce0e8;
    font-weight: 600;
}

.dashboard-status {
    font-size: 0.7rem;
    color: #70e0a3;
}


/* Dashboard body */

.dashboard-body {
    padding: 30px;
}

.small-label {
    color: #858da0;

    font-size: 0.65rem;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.dashboard-body h3 {
    font-size: 1.7rem;

    line-height: 1.2;

    margin-bottom: 28px;
}

.dashboard-body h3 strong {
    color: var(--primary-light);
}


/* Progress */

.progress-info {
    display: flex;
    justify-content: space-between;

    color: #9098a8;

    font-size: 0.75rem;

    margin-bottom: 8px;
}

.progress-info strong {
    color: white;
}

.progress-track {
    width: 100%;
    height: 6px;

    border-radius: 10px;

    background: #262d3a;

    overflow: hidden;

    margin-bottom: 25px;
}

.progress-fill {
    width: 72%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #6848ff,
            #a58fff
        );

    border-radius: inherit;
}


/* Steps */

.launch-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.launch-step {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 11px;

    border-radius: 12px;

    border: 1px solid transparent;

    transition: 0.3s ease;
}

.launch-step.active {
    background: rgba(124,92,255,0.10);
    border-color: rgba(124,92,255,0.25);
}

.step-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #222936;

    color: #8e97a8;

    font-size: 0.7rem;
}

.launch-step.done .step-icon {
    background: rgba(80,200,140,0.15);
    color: #68d69b;
}

.launch-step.active .step-icon {
    background: rgba(124,92,255,0.2);
    color: #a28eff;
}

.launch-step strong {
    display: block;
    font-size: 0.8rem;
    color: #e9ebef;
}

.launch-step small {
    display: block;

    color: #707989;

    font-size: 0.65rem;

    margin-top: 3px;
}


/* Dashboard footer */

.dashboard-footer {
    display: flex;
    justify-content: space-between;

    padding: 15px 25px;

    border-top: 1px solid var(--border);

    color: #697282;

    font-size: 0.65rem;
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;

    z-index: 8;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 10px 14px;

    background: rgba(19, 24, 35, 0.9);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 13px;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.35);

    color: white;
}

.floating-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: rgba(124,92,255,0.16);

    color: #a998ff;

    font-size: 0.85rem;
}

.floating-card strong {
    display: block;

    font-size: 0.65rem;

    letter-spacing: 1px;
}

.floating-card small {
    display: block;

    color: #737c8d;

    font-size: 0.6rem;
}

.idea-card {
    top: 85px;
    left: 10px;

    animation: floatingOne 4s ease-in-out infinite;
}

.plan-card {
    top: 190px;
    right: -10px;

    animation: floatingTwo 4.5s ease-in-out infinite;
}

.build-card {
    bottom: 150px;
    left: -5px;

    animation: floatingThree 5s ease-in-out infinite;
}

.launch-card {
    bottom: 65px;
    right: 5px;

    animation: floatingFour 4.2s ease-in-out infinite;
}


/* =========================================
   3D PLATFORM
========================================= */

.platform-3d {
    position: absolute;

    width: 420px;
    height: 90px;

    bottom: 50px;

    background:
        linear-gradient(
            90deg,
            rgba(124,92,255,0.15),
            rgba(70,60,130,0.1)
        );

    border: 1px solid rgba(124,92,255,0.15);

    border-radius: 50%;

    transform:
        rotateX(65deg);

    filter: blur(1px);

    box-shadow:
        0 0 70px rgba(124,92,255,0.2);
}


/* =========================================
   SECTIONS
========================================= */

.section-padding {
    padding: 110px 0;
}

.problem-section {
    background: #f5f6f8;
    color: #10131a;
}

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

section h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);

    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

section h2 span {
    color: var(--primary);
}

.section-description {
    max-width: 650px;

    color: #737b89;

    line-height: 1.8;
}


/* =========================================
   PROBLEM CARDS
========================================= */

.problem-card {
    height: 100%;

    padding: 35px 25px;

    background: white;

    border: 1px solid #e6e8ec;

    border-radius: 20px;

    text-align: left;

    transition: 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.08);
}

.problem-icon {
    font-size: 2rem;

    margin-bottom: 20px;
}

.problem-card h4 {
    font-weight: 700;
}

.problem-card p {
    color: #737b89;

    line-height: 1.7;

    margin-top: 10px;
}


/* =========================================
   DARK SECTION
========================================= */

.dark-section {
    background: #080b12;
}

.process-card {
    height: 100%;

    position: relative;

    padding: 35px 25px;

    border: 1px solid var(--border);

    background: #0e131d;

    border-radius: 20px;

    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);

    border-color: rgba(124,92,255,0.45);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.3);
}

.process-number {
    color: #4f5665;

    font-size: 0.75rem;

    font-weight: 700;
}

.process-icon {
    font-size: 2rem;

    margin: 30px 0 15px;
}

.process-card h4 {
    font-weight: 700;
}

.process-card p {
    color: #7f8795;

    line-height: 1.7;
}


/* =========================================
   FEATURES
========================================= */

.feature-card {
    padding: 35px;

    border: 1px solid #e2e5eb;

    border-radius: 20px;

    height: 100%;

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 2rem;

    margin-bottom: 20px;
}

.feature-card p {
    color: #737b89;

    line-height: 1.7;
}


/* =========================================
   USE CASES
========================================= */

.use-case-section {
    background: #f5f6f8;

    color: #11141a;
}

.use-card {
    padding: 35px 25px;

    background: white;

    border: 1px solid #e3e5ea;

    border-radius: 20px;

    height: 100%;

    transition: 0.3s ease;
}

.use-card:hover {
    transform: translateY(-6px);
}

.use-card > span {
    display: block;

    font-size: 2rem;

    margin-bottom: 15px;
}

.use-card p {
    color: #737b89;

    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 100px 0;

    background: #080b12;
}

.cta-box {
    position: relative;

    padding: 80px 30px;

    border-radius: 30px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(124,92,255,0.2),
            transparent 55%
        );

    border: 1px solid rgba(124,92,255,0.2);
}

.cta-box h2 {
    margin-bottom: 15px;
}

.cta-box p {
    color: #8a92a0;

    margin-bottom: 30px;
}

.cta-box .btn {
    border-radius: 12px;

    padding: 14px 25px;

    background: var(--primary);

    border-color: var(--primary);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #05070b;

    border-top: 1px solid var(--border);

    padding: 30px 0;

    color: #737b89;
}

.footer-content {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.footer strong {
    color: white;
}

.footer p {
    margin: 5px 0 0;

    font-size: 0.8rem;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes heroLeft {

    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes heroRight {

    from {
        opacity: 0;
        transform: translateX(70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes dashboardFloat {

    0%,
    100% {
        transform:
            rotateY(-13deg)
            rotateX(7deg)
            translateY(0);
    }

    50% {
        transform:
            rotateY(-13deg)
            rotateX(7deg)
            translateY(-14px);
    }

}

@keyframes orbitMove {

    from {
        transform:
            rotateX(65deg)
            rotateZ(0deg);
    }

    to {
        transform:
            rotateX(65deg)
            rotateZ(360deg);
    }

}

@keyframes orbitMoveReverse {

    from {
        transform:
            rotateX(65deg)
            rotateZ(45deg);
    }

    to {
        transform:
            rotateX(65deg)
            rotateZ(-315deg);
    }

}

@keyframes floatingOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes floatingTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

}

@keyframes floatingThree {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}

@keyframes floatingFour {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .hero-section {
        padding-top: 110px;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;

        height: 600px;
    }

}


@media (max-width: 600px) {

    .hero-title {
        font-size: 3rem;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-visual {
        height: 530px;
    }

    .dashboard-3d {
        width: 340px;

        transform:
            rotateY(-7deg)
            rotateX(4deg);
    }

    .dashboard-body {
        padding: 22px;
    }

    .dashboard-body h3 {
        font-size: 1.35rem;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .idea-card {
        left: -15px;
    }

    .plan-card {
        right: -25px;
    }

    .build-card {
        left: -20px;
    }

    .launch-card {
        right: -15px;
    }

    .platform-3d {
        width: 320px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .section-padding {
        padding: 80px 0;
    }

}