:root {
    --bg: #050711;
    --panel: rgba(255,255,255,.07);
    --border: rgba(255,255,255,.13);
    --text: #fff;
    --muted: rgba(255,255,255,.72);
    --pink: #ff2e73;
    --orange: #ff9f1c;
    --yellow: #ffd60a;
    --purple: #9b5cff;
    --green: #2ee68a;
    --shadow: 0 25px 80px rgba(0,0,0,.45);
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 15%, rgba(255,46,115,.18), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(255,159,28,.13), transparent 34%),
        radial-gradient(circle at 50% 90%, rgba(155,92,255,.16), transparent 28%),
        var(--bg);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}

#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    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: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,46,115,.22), transparent 65%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: .65;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    background: #050711;
    transition: opacity .7s ease, visibility .7s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-size: 34px;
    font-weight: 900;
}

.preloader-logo span {
    color: var(--pink);
}

.loader-ring {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,.1);
    border-top-color: var(--pink);
    border-right-color: var(--yellow);
    animation: spin .8s linear infinite;
}

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

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 5%;
    background: rgba(5,7,17,.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1;
}

.logo span,
.logo sup,
.gradient-text,
.section-title span,
.waitlist-copy span {
    background: linear-gradient(135deg, var(--pink), var(--orange), var(--yellow));
    -webkit-background-clip: text;
    color: transparent;
}

.logo small {
    display: block;
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-links a {
    position: relative;
    font-weight: 700;
    opacity: .9;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    height: 3px;
    border-radius: 99px;
    background: var(--pink);
}

.nav-cta,
.btn,
.waitlist-form button,
.comment-input button,
.signal-console button {
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink), #ff6348, var(--yellow));
    color: white;
    padding: 15px 24px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(255,46,115,.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta:hover,
.btn:hover,
.waitlist-form button:hover,
.comment-input button:hover,
.signal-console button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(255,46,115,.36);
}

.menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: white;
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 20px;
}

.hero {
    width: min(1180px, 92%);
    margin: 0 auto;
    min-height: 720px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 50px;
    padding: 55px 0 30px;
}

.pill {
    width: fit-content;
    border: 1px solid rgba(255,46,115,.5);
    background: rgba(255,46,115,.11);
    color: #ff6ca0;
    padding: 9px 18px;
    border-radius: 99px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pill.small {
    font-size: 11px;
    padding: 7px 16px;
}

.pulse {
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.08;
    margin: 24px 0 18px;
    letter-spacing: -2px;
}

.split-title .line {
    display: block;
    opacity: 0;
    transform: translateY(28px);
    animation: titleIn .75s ease forwards;
}

.split-title .line:nth-child(2) { animation-delay: .16s; }
.split-title .line:nth-child(3) { animation-delay: .32s; }

.hero p,
.section-title p,
.waitlist-copy p,
.waitlist-form p,
.comment-input p,
.glimpse-card p,
.footer p,
.signal-output p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-copy > p {
    font-size: 18px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn.ghost {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    box-shadow: none;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.mini-faces {
    display: flex;
}

.mini-faces span {
    width: 38px;
    height: 38px;
    margin-right: -10px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.13);
    border: 2px solid rgba(255,255,255,.3);
}

.hero-visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
    perspective: 1100px;
}

.holo-ring {
    position: absolute;
    width: 490px;
    height: 490px;
    border-radius: 50%;
    background: conic-gradient(from 90deg, var(--pink), var(--purple), var(--yellow), var(--green), var(--pink));
    filter: blur(36px);
    opacity: .28;
    animation: spin 16s linear infinite;
}

.avatar-card {
    position: relative;
    width: min(420px, 80vw);
    height: 500px;
    border: 1px solid rgba(255,46,115,.65);
    border-radius: 32px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(255,159,28,.18), transparent 38%),
        rgba(255,255,255,.04);
    box-shadow: 0 0 50px rgba(255,46,115,.2);
    overflow: hidden;
    transform-style: preserve-3d;
}

.orbit {
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--yellow)) border-box;
    mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 12s linear infinite;
}

.avatar-head {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #1d2230, #0a0c13);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: inset 0 0 35px rgba(255,255,255,.06), 0 25px 55px rgba(0,0,0,.35);
}

.eye {
    position: absolute;
    top: 52px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    animation: blink 4s infinite;
}

.eye.left { left: 45px; }
.eye.right { right: 45px; }

.avatar-body {
    position: absolute;
    bottom: 100px;
    width: 120px;
    height: 145px;
    border-radius: 40px 40px 28px 28px;
    background: #10172a;
    border: 1px solid rgba(255,255,255,.12);
}

.voice-wave {
    position: absolute;
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.voice-wave i {
    display: block;
    width: 5px;
    height: 24px;
    border-radius: 99px;
    background: linear-gradient(var(--purple), var(--pink));
    animation: wave 1.2s infinite ease-in-out alternate;
}

.voice-wave i:nth-child(2n) { animation-delay: .2s; height: 45px; }
.voice-wave i:nth-child(3n) { animation-delay: .4s; height: 32px; }

.bubble {
    position: absolute;
    padding: 15px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    font-weight: 800;
}

.b1 { top: 105px; left: 20px; border-color: rgba(255,46,115,.5); }
.b2 { top: 250px; left: -20px; border-color: rgba(155,92,255,.5); }
.b3 { top: 135px; right: -10px; border-color: rgba(255,214,10,.5); }
.b4 { top: 290px; right: -20px; border-color: rgba(46,230,138,.45); }

.float-one { animation: float 4.5s ease-in-out infinite; }
.float-two { animation: float 5.3s ease-in-out infinite .4s; }
.float-three { animation: float 4.9s ease-in-out infinite .8s; }
.float-four { animation: float 5.6s ease-in-out infinite .2s; }

.glass {
    width: min(1180px, 92%);
    margin: 0 auto 34px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.features,
.signal-demo {
    padding: 34px;
}

.section-title {
    text-align: center;
    margin-bottom: 28px;
}

.eyebrow {
    color: #ff7aa9 !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.section-title h2,
.waitlist h2,
.community h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 10px 0;
}

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

.feature-card {
    min-height: 230px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(0,0,0,.18);
    transition: .3s ease;
    transform-style: preserve-3d;
}

.feature-card:hover {
    border-color: rgba(255,46,115,.45);
    box-shadow: 0 25px 55px rgba(255,46,115,.12);
}

.icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.signal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.signal-console,
.signal-output {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(0,0,0,.22);
    padding: 22px;
}

.console-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
}

.console-header span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.console-header span:nth-child(1) { background: #ff5f57; }
.console-header span:nth-child(2) { background: #ffbd2e; }
.console-header span:nth-child(3) { background: #28c840; }

.console-header b {
    margin-left: 10px;
}

.signal-console textarea {
    width: 100%;
    min-height: 170px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
}

.signal-console button {
    margin-top: 16px;
    width: 100%;
}

.signal-output {
    position: relative;
    overflow: hidden;
}

.signal-output::before {
    content: "";
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle, rgba(255,46,115,.14), transparent 45%);
    animation: pulse 3s infinite;
}

.signal-output > * {
    position: relative;
    z-index: 1;
}

.signal-status {
    width: fit-content;
    color: #ffd60a;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,214,10,.1);
    border: 1px solid rgba(255,214,10,.22);
    font-size: 13px;
    font-weight: 800;
}

.waitlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    padding: 44px;
}

.benefit-row {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.benefit-row div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 18px;
    background: rgba(255,46,115,.1);
    border: 1px solid rgba(255,46,115,.18);
}

.benefit-row span {
    color: white;
    background: none;
    -webkit-background-clip: initial;
}

.waitlist-form {
    padding-left: 34px;
    border-left: 1px solid rgba(255,255,255,.09);
}

.waitlist-form label,
.footer-form {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    background: rgba(0,0,0,.26);
    border-radius: 16px;
    padding: 14px 16px;
    margin: 22px 0;
}

.checkline {
    align-items: flex-start !important;
}

.checkline input {
    width: auto;
    margin-top: 5px;
}

.checkline span {
    color: rgba(255,255,255,.72);
    line-height: 1.5;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    color: white;
    font: inherit;
}

textarea {
    resize: vertical;
}

.waitlist-form button,
.comment-input button {
    width: 100%;
}

.waitlist-form small,
.comment-input small {
    display: block;
    color: rgba(255,255,255,.55);
    text-align: center;
    margin-top: 14px;
}

.community {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 34px;
    padding: 44px;
    overflow: hidden;
    min-height: 500px;
}

.comment-input {
    position: relative;
    z-index: 2;
}

.comment-form-box {
    position: relative;
    margin-top: 28px;
    padding-top: 160px;
}

.comment-avatar-on-box {
    position: absolute;
    left: 12px;
    top: -18px;
    width: 285px;
    z-index: 4;
    pointer-events: none;
}

.comment-avatar-on-box video {
    width: 100%;
    display: block;
    object-fit: contain;
    border-radius: 26px;
    filter: drop-shadow(0 0 28px rgba(255, 46, 115, .35));
}

.comment-input input {
    border: 1px solid var(--border);
    background: rgba(0,0,0,.22);
    border-radius: 16px;
    padding: 15px 18px;
    margin-bottom: 14px;
}

.comment-box-real {
    position: relative;
    min-height: 160px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.13);
    overflow: hidden;
    box-shadow: inset 0 0 35px rgba(255,46,115,.05);
}

.comment-box-real textarea {
    min-height: 130px;
    padding: 16px 16px 56px;
    border: 0;
    background: transparent;
    color: white;
}

.comment-box-real button {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 13px 20px;
}

.community-feed {
    position: relative;
    z-index: 2;
    padding: 22px;
    border-radius: 22px;
    background: rgba(0,0,0,.16);
    border: 1px solid var(--border);
}

.vibe-card {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.vibe-card:last-child {
    border-bottom: 0;
}

.vibe-card .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.vibe-card p {
    margin: 4px 0;
    color: rgba(255,255,255,.8);
}

.vibe-card small {
    color: rgba(255,255,255,.45);
}

.like-form {
    margin: 0;
}

.like-btn {
    border: 0;
    border-radius: 999px;
    padding: 9px 12px;
    color: white;
    cursor: pointer;
    font-weight: 900;
    background: rgba(255,46,115,.13);
    border: 1px solid rgba(255,46,115,.3);
    transition: .25s ease;
}

.like-btn:hover {
    transform: translateY(-2px) scale(1.04);
    background: rgba(255,46,115,.24);
}

.empty-comments {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px dashed rgba(255,255,255,.16);
    color: rgba(255,255,255,.72);
}

.glimpse {
    width: min(1180px, 92%);
    margin: 45px auto;
}

.glimpse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.glimpse-card {
    padding: 24px;
    min-height: 260px;
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
    text-align: center;
}

.mock-avatar {
    height: 120px;
    display: grid;
    place-items: center;
    font-size: 72px;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(255,46,115,.28), rgba(155,92,255,.08));
}

.mock-list {
    text-align: left;
    display: grid;
    gap: 12px;
    padding: 20px;
    height: 120px;
    border-radius: 18px;
    background: rgba(0,0,0,.25);
}

.mock-list span {
    color: rgba(255,255,255,.68);
    font-size: 14px;
}

.footer {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 34px;
    padding: 50px 5%;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.24);
}

.footer a {
    display: block;
    color: rgba(255,255,255,.7);
    margin: 12px 0;
}

.footer-logo {
    color: white !important;
}

.footer-form {
    padding: 0 0 0 14px;
    overflow: hidden;
}

.footer-form button {
    width: 48px;
    height: 48px;
    border: 0;
    color: white;
    font-size: 20px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.toast-wrap {
    position: fixed;
    right: 24px;
    top: 100px;
    z-index: 99;
    display: grid;
    gap: 12px;
}

.toast {
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(0,0,0,.75);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.toast.success { border-color: rgba(46,230,138,.45); }
.toast.error { border-color: rgba(255,46,115,.45); }

.reveal {
    opacity: 0;
    transform: translateY(34px) scale(.985);
    transition: .85s cubic-bezier(.2,.75,.25,1);
}

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

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

@keyframes titleIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes wave {
    from { transform: scaleY(.45); opacity: .55; }
    to { transform: scaleY(1.2); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

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

@keyframes blink {
    0%, 92%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(.1); }
}

@media (max-width: 980px) {
    .cursor-glow {
        display: none;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-links.open {
        position: absolute;
        top: 80px;
        left: 5%;
        right: 5%;
        display: grid;
        gap: 16px;
        padding: 22px;
        background: rgba(5,7,17,.96);
        border: 1px solid var(--border);
        border-radius: 22px;
    }

    .hero,
    .waitlist,
    .community,
    .footer,
    .glimpse-grid,
    .signal-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 38px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .waitlist-form {
        border-left: 0;
        padding-left: 0;
    }

    .comment-form-box {
        padding-top: 145px;
    }

    .comment-avatar-on-box {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
        width: 230px;
    }

    .comment-box-real {
        min-height: 175px;
    }

    .comment-box-real button {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 18px 4%;
    }

    .logo {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .avatar-card {
        height: 430px;
    }

    .bubble {
        font-size: 12px;
        padding: 11px 12px;
    }

    .b1 { left: 5px; }
    .b2 { left: 0; }
    .b3 { right: 0; }
    .b4 { right: 0; }

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

    .glass,
    .features,
    .waitlist,
    .community,
    .signal-demo {
        padding: 24px;
    }

    .comment-avatar-on-box {
        width: 205px;
    }

    .footer {
        padding: 38px 6%;
    }
}
