:root {
    --bg: #080812;
    --bg-soft: #10101d;
    --card: rgba(255, 255, 255, 0.055);
    --card-strong: rgba(255, 255, 255, 0.085);
    --border: rgba(255, 255, 255, 0.11);
    --text: #f7f7fb;
    --muted: #aaaabd;
    --pink: #ff3d81;
    --purple: #7c5cff;
    --cyan: #28d7ff;
    --yellow: #ffc857;
    --font-heading: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --container: 1180px;
    --radius-lg: 32px;
    --radius-md: 22px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(124, 92, 255, 0.12), transparent 28%),
        radial-gradient(circle at 90% 15%, rgba(255, 61, 129, 0.1), transparent 25%),
        var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -5;
    content: "";
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.orb {
    position: fixed;
    z-index: -3;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-one {
    width: 380px;
    height: 380px;
    top: 5%;
    left: -140px;
    background: var(--purple);
}

.orb-two {
    width: 340px;
    height: 340px;
    top: 38%;
    right: -120px;
    background: var(--pink);
    animation-delay: -4s;
}

.orb-three {
    width: 260px;
    height: 260px;
    bottom: -80px;
    left: 30%;
    background: var(--cyan);
    animation-delay: -8s;
}

.site-header {
    position: relative;
    z-index: 10;
    padding: 26px 0;
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-text,
.footer-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.brand-text span,
.footer-brand span {
    font-weight: 500;
}

.brand-text strong,
.footer-brand strong {
    color: var(--pink);
    font-weight: 700;
}

.header-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #d6d6e2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
}

.status-dot,
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 5px rgba(255, 61, 129, 0.12), 0 0 18px var(--pink);
    animation: pulse 1.8s infinite;
}

.hero {
    position: relative;
    padding: 70px 0 110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: center;
    gap: 72px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d8d8e3;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.hero h1 {
    max-width: 760px;
    margin-top: 22px;
    font-family: var(--font-heading);
    font-size: clamp(3.4rem, 6.2vw, 6.6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, #ffffff 5%, var(--pink) 38%, var(--purple) 70%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 650px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 36px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 23px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 16px 50px rgba(124, 92, 255, 0.28);
    color: #fff;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(255, 61, 129, 0.28);
}

.primary-btn svg {
    width: 19px;
    transition: transform 0.3s ease;
}

.primary-btn:hover svg {
    transform: translateX(4px);
}

.launch-note {
    max-width: 220px;
    color: #85859a;
    font-size: 0.82rem;
    line-height: 1.45;
}

.topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 38px;
}

.topic-list span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    color: #bfbfce;
    font-size: 0.74rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
}

.visual-shell {
    position: relative;
    overflow: visible;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
    box-shadow:
        0 35px 100px rgba(0,0,0,.42),
        inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(24px);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}

.visual-shell::after {
    position: absolute;
    inset: -1px;
    z-index: -1;
    content: "";
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,61,129,.4), transparent 35%, rgba(40,215,255,.25));
    filter: blur(24px);
    opacity: .55;
}

.visual-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6px 18px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
}

.visual-label {
    color: #77778d;
    font-size: 0.68rem;
    font-weight: 700;
}

.visual-content {
    padding: 16px;
    border-radius: 22px;
    background: #0d0d18;
}

.story-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 19px;
    background: rgba(255,255,255,.04);
}

.story-card-main {
    padding: 11px;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 13px;
}

.story-image::before,
.story-image::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    filter: blur(3px);
}

.story-card-main .story-image {
    height: 218px;
}

.gradient-one {
    background:
        linear-gradient(125deg, rgba(0,0,0,.15), rgba(0,0,0,.38)),
        radial-gradient(circle at 70% 25%, #ff8aba, transparent 18%),
        linear-gradient(135deg, #37166a, #d82c78 48%, #ff7f50);
}

.gradient-one::before {
    width: 150px;
    height: 150px;
    right: 32px;
    top: 35px;
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 0 50px rgba(255,255,255,.15);
}

.gradient-one::after {
    width: 100px;
    height: 180px;
    right: 52px;
    bottom: -70px;
    background: rgba(5,5,15,.7);
    transform: rotate(-12deg);
}

.story-meta {
    margin-top: 12px;
    color: var(--pink);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.story-title {
    max-width: 380px;
    margin-top: 5px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.18;
}

.story-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 12px;
}

.story-lines span {
    height: 5px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
}

.story-lines span:first-child {
    width: 82%;
}

.story-lines span:last-child {
    width: 55%;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.mini-card {
    padding: 9px;
}

.mini-card .story-image {
    height: 90px;
}

.gradient-two {
    background: linear-gradient(135deg, #17245f, #7c5cff 52%, #2bd9fe);
}

.gradient-two::before {
    width: 80px;
    height: 80px;
    top: 18px;
    left: 50%;
    background: rgba(255,255,255,.15);
    transform: translateX(-50%);
    box-shadow: 0 0 40px rgba(255,255,255,.2);
}

.gradient-three {
    background: linear-gradient(135deg, #572146, #ff3d81 55%, #ffc857);
}

.gradient-three::before {
    width: 100px;
    height: 100px;
    right: -20px;
    bottom: -30px;
    border: 12px solid rgba(255,255,255,.17);
}

.mini-title {
    margin-top: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 15px;
    background: rgba(15,15,28,.82);
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
    backdrop-filter: blur(16px);
}

.badge-one {
    left: -44px;
    bottom: 75px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.badge-one strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.badge-one span {
    color: #9999ab;
    font-size: .65rem;
}

.badge-two {
    top: 74px;
    right: -48px;
    font-size: .72rem;
}

.marquee-section {
    overflow: hidden;
    border-block: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.025);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 26px;
    padding: 17px 0;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-track i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}

.discover-section {
    padding: 120px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 70px;
}

.section-kicker {
    color: var(--pink);
}

.section-heading h2,
.launch-content h2 {
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -.055em;
}

.section-heading p {
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 315px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.feature-card::before {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    bottom: -90px;
    content: "";
    border-radius: 50%;
    background: var(--purple);
    filter: blur(55px);
    opacity: .12;
    transition: opacity .35s ease;
}

.feature-card:nth-child(2)::before {
    background: var(--pink);
}

.feature-card:nth-child(3)::before {
    background: var(--cyan);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.22);
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.03));
}

.feature-card:hover::before {
    opacity: .26;
}

.feature-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(255,255,255,.2);
    font-family: var(--font-heading);
    font-size: .74rem;
    font-weight: 700;
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: rgba(255,255,255,.05);
    color: var(--pink);
}

.feature-card:nth-child(2) .feature-icon {
    color: var(--purple);
}

.feature-card:nth-child(3) .feature-icon {
    color: var(--cyan);
}

.feature-icon svg {
    width: 22px;
}

.feature-card h3 {
    margin-top: 70px;
    font-family: var(--font-heading);
    font-size: 1.38rem;
}

.feature-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: .92rem;
}

.launch-section {
    padding-bottom: 110px;
}

.launch-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    min-height: 420px;
    padding: 65px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(120deg, rgba(124,92,255,.17), rgba(255,61,129,.1) 48%, rgba(40,215,255,.08)),
        #0d0d18;
}

.launch-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
}

.launch-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    right: -130px;
    top: -120px;
    border-radius: 50%;
    background: conic-gradient(from 90deg, var(--pink), var(--purple), var(--cyan), var(--pink));
    filter: blur(80px);
    opacity: .18;
}

.launch-content,
.launch-word {
    position: relative;
    z-index: 2;
}

.launch-content {
    max-width: 680px;
}

.launch-content p {
    max-width: 600px;
    margin-top: 20px;
    color: var(--muted);
}

.launch-progress {
    max-width: 560px;
    margin-top: 34px;
}

.progress-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    color: #bdbdca;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.progress-head strong {
    color: var(--pink);
}

.progress-bar {
    overflow: hidden;
    height: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.progress-bar span {
    display: block;
    width: 74%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
    box-shadow: 0 0 20px rgba(124,92,255,.7);
    animation: progressGlow 2.4s ease-in-out infinite alternate;
}

.launch-word {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 700;
    line-height: .8;
    letter-spacing: -.075em;
    color: rgba(255,255,255,.09);
    transform: rotate(-5deg);
}

.launch-word strong {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.18);
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 28px 0 34px;
}

.footer-inner {
    color: #77778b;
    font-size: .76rem;
}

.footer-brand {
    color: #dcdce7;
    font-size: .78rem;
}

.footer-inner a {
    transition: color .25s ease;
}

.footer-inner a:hover {
    color: var(--pink);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .85s ease, transform .85s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .14s;
}

.delay-2 {
    transition-delay: .28s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.82); }
}

@keyframes floatOrb {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(28px, -22px, 0) scale(1.08); }
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@keyframes progressGlow {
    from { filter: saturate(1); }
    to { filter: saturate(1.6) brightness(1.15); }
}

@media (max-width: 1050px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero-copy {
        max-width: 820px;
    }

    .hero-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .visual-shell {
        transform: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .launch-card {
        grid-template-columns: 1fr;
    }

    .launch-word {
        position: absolute;
        right: 30px;
        bottom: 30px;
        opacity: .55;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .site-header {
        padding-top: 20px;
    }

    .brand-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 1.05;
        font-size: .84rem;
    }

    .header-status {
        padding: 8px 10px;
        font-size: .62rem;
    }

    .hero {
        padding: 48px 0 82px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .launch-note {
        max-width: 100%;
    }

    .visual-content {
        padding: 10px;
    }

    .story-card-main .story-image {
        height: 180px;
    }

    .badge-one {
        left: 8px;
        bottom: -35px;
    }

    .badge-two {
        top: 52px;
        right: -6px;
    }

    .discover-section {
        padding: 90px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 280px;
    }

    .launch-card {
        min-height: 520px;
        padding: 38px 24px;
    }

    .launch-word {
        right: 18px;
        bottom: 34px;
        font-size: clamp(3.2rem, 17vw, 5rem);
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 460px) {
    .hero-description {
        font-size: .95rem;
    }

    .primary-btn {
        width: 100%;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .mini-card .story-image {
        height: 110px;
    }

    .badge-one {
        display: none;
    }

    .section-heading h2,
    .launch-content h2 {
        font-size: 2.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
