* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: #f7f8fc;
    background: #08090d;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 6%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 9, 13, 0.72);
    backdrop-filter: blur(22px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.logo span {
    transition:
        transform 220ms ease,
        color 220ms ease;
}

.logo:hover span {
    transform: translateX(2px);
    color: #ffffff;
}

.logo-image {
    width: 48px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(
        0 8px 18px rgba(104, 82, 255, 0.42)
    );
    transition:
        transform 220ms ease,
        filter 220ms ease;
}

.logo:hover .logo-image {
    transform: translateY(-2px) scale(1.06) rotate(-2deg);
    filter:
        drop-shadow(0 10px 22px rgba(132, 102, 255, 0.65))
        drop-shadow(0 0 12px rgba(90, 150, 255, 0.28));
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #b8bac8;
    font-size: 14px;
}

.navigation a {
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.navigation a:hover {
    color: white;
    transform: translateY(-1px);
}

.header-button,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.header-button,
.primary-button {
    color: white;
    background:
        linear-gradient(
            135deg,
            #8573ff,
            #5b5df6
        );
    box-shadow: 0 14px 34px rgba(91, 93, 246, 0.28);
    position: relative;
    overflow: hidden;
}

.header-button::after,
.primary-button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 55%;
    height: 200%;
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(20deg);
    transition: left 500ms ease;
}

.header-button:hover::after,
.primary-button:hover::after {
    left: 130%;
}

.header-button:hover,
.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(91, 93, 246, 0.4);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ebecf4;
    background: rgba(255, 255, 255, 0.05);
}

.secondary-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    align-items: center;
    gap: 80px;
    min-height: 100vh;
    padding: 150px 7% 100px;
    overflow: hidden;
}

.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.28;
    pointer-events: none;
}

.background-glow-one {
    top: 8%;
    left: -10%;
    width: 520px;
    height: 520px;
    background: #625cff;
    animation: glowDriftOne 12s ease-in-out infinite;
}

.background-glow-two {
    right: -8%;
    bottom: 0;
    width: 480px;
    height: 480px;
    background: #9149d9;
    animation: glowDriftTwo 14s ease-in-out infinite;
}

@keyframes glowDriftOne {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(70px, 35px) scale(1.12);
    }
}

@keyframes glowDriftTwo {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-55px, -40px) scale(1.08);
    }
}

.hero-content,
.dashboard-preview {
    position: relative;
    z-index: 2;
    animation: dashboardFloat 6s ease-in-out infinite;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #c8cad5;
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
    font-weight: 650;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #78e4aa;
    box-shadow: 0 0 16px rgba(120, 228, 170, 0.8);
}

.hero h1 {
    max-width: 720px;
    margin: 28px 0 24px;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.97;
    letter-spacing: -5px;
}

.hero h1 span {
    display: block;
    color: #9295a9;
}

.hero-description {
    max-width: 640px;
    margin: 0;
    color: #a7a9b7;
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 34px;
}

.hero-note {
    margin-top: 22px;
    color: #717482;
    font-size: 13px;
}

.dashboard-preview {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 20px;
}

.preview-header h2 {
    margin: 4px 0 0;
    font-size: 23px;
    letter-spacing: -0.7px;
}

.preview-label,
.marketplace {
    margin: 0;
    color: #858897;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.live-badge {
    padding: 7px 11px;
    border-radius: 999px;
    color: #9df0bd;
    background: rgba(86, 211, 135, 0.1);
    font-size: 12px;
    font-weight: 750;
}

.deal-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(8, 9, 13, 0.55);
}

.deal-image {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 16px;
    color: #bbb4ff;
    background:
        radial-gradient(
            circle at top left,
            #4a428f,
            #1a1928
        );
    font-size: 25px;
    font-weight: 800;
}

.deal-information h3 {
    margin: 6px 0 4px;
    font-size: 15px;
}

.deal-description {
    margin: 0;
    color: #858897;
    font-size: 12px;
    line-height: 1.45;
}

.deal-value {
    text-align: right;
}

.deal-value span {
    display: block;
    margin-bottom: 5px;
    color: #858897;
    font-size: 11px;
}

.deal-value strong {
    color: #a89eff;
    font-size: 23px;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.preview-stats div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.preview-stats span {
    display: block;
    margin-bottom: 7px;
    color: #777a89;
    font-size: 11px;
}

.preview-stats strong {
    font-size: 16px;
}

.features {
    padding: 120px 7%;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: #0b0c11;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 54px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #9b8cff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.section-heading h2,
.about-section h2,
.waitlist-section h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.section-heading > p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: #979aa8;
    font-size: 18px;
    line-height: 1.65;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 290px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        background 200ms ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(143, 124, 255, 0.35);
    background:
        linear-gradient(
            145deg,
            rgba(143, 124, 255, 0.09),
            rgba(255, 255, 255, 0.018)
        );
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 70px;
    border-radius: 15px;
    color: #beb7ff;
    background: rgba(126, 108, 255, 0.13);
    font-size: 13px;
    font-weight: 800;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    letter-spacing: -0.5px;
}

.feature-card p {
    margin: 0;
    color: #8e919f;
    line-height: 1.65;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: end;
    padding: 120px 7%;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.about-section > p {
    margin: 0;
    color: #999ca9;
    font-size: 19px;
    line-height: 1.75;
}

.waitlist-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0 7% 100px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at top right,
            rgba(117, 96, 255, 0.22),
            transparent 40%
        ),
        rgba(255, 255, 255, 0.035);
}

.waitlist-section h2 {
    max-width: 720px;
}

.waitlist-section p:last-child {
    max-width: 620px;
    margin: 20px 0 0;
    color: #999ca9;
    line-height: 1.65;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 7%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #7f8290;
    font-size: 13px;
}

.site-footer a:last-child:hover {
    color: white;
}

@keyframes dashboardFloat {
    0%,
    100% {
        transform:
            perspective(1100px)
            rotateY(-4deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1100px)
            rotateY(-4deg)
            rotateX(2deg)
            translateY(-12px);
    }
}

@media (max-width: 980px) {
    .navigation {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 140px;
    }

    .dashboard-preview {
    animation: mobileDashboardFloat 6s ease-in-out infinite;
    }

    @keyframes mobileDashboardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 230px;
    }

    .feature-icon {
        margin-bottom: 45px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .waitlist-section {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding: 15px 5%;
    }

    .header-button {
        display: none;
    }

    .hero {
        padding: 125px 5% 80px;
    }

    .hero h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-preview {
        padding: 14px;
        border-radius: 22px;
    }

    .deal-card {
        grid-template-columns: auto 1fr;
    }

    .deal-value {
        grid-column: 1 / -1;
        padding-top: 10px;
        text-align: left;
    }

    .preview-stats {
        grid-template-columns: 1fr;
    }

    .features,
    .about-section {
        padding: 90px 5%;
    }

    .section-heading h2,
    .about-section h2,
    .waitlist-section h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .waitlist-section {
        margin: 0 5% 70px;
        padding: 35px 25px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 5%;
    }
}