        .hero-wordmark,
        .logo-wordmark {
            visibility: hidden;
        }

        html.fonts-ready .hero-wordmark,
        html.fonts-ready .logo-wordmark {
            visibility: visible;
        }

        body.landing {
            background: #050507;
            overflow-x: hidden;
        }

        .landing-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
            transform: translateZ(0);
            contain: style;
        }

        .landing-bg::before,
        .landing-bg::after {
            content: '';
            position: absolute;
            border-radius: 50%;
        }

        .landing-bg::before {
            width: 900px;
            height: 900px;
            top: -280px;
            left: -220px;
            background: radial-gradient(circle, rgba(91,33,182,0.38) 0%, rgba(76,29,149,0.15) 45%, transparent 70%);
        }

        .landing-bg::after {
            width: 1000px;
            height: 1000px;
            top: 30%;
            right: -300px;
            background: radial-gradient(circle, rgba(59,7,100,0.30) 0%, rgba(49,10,101,0.10) 45%, transparent 70%);
        }

        .landing-vignette {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background: radial-gradient(ellipse 90% 75% at 50% 35%, transparent 35%, rgba(0, 0, 0, 0.55) 80%, rgba(0, 0, 0, 0.85) 100%);
            transform: translateZ(0);
        }

        .landing-grid {
            position: fixed;
            inset: 0;
            z-index: -1;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
            background-size: 56px 56px;
            mask-image: radial-gradient(ellipse 65% 55% at 50% 30%, black 25%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 30%, black 25%, transparent 75%);
            pointer-events: none;
            transform: translateZ(0);
        }

        .hero-landing {
            min-height: calc(100vh - var(--header-h));
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 24px 100px;
            position: relative;
        }

        .hero-inner {
            max-width: 900px;
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 28px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(124, 58, 237, 0.35);
            background: rgba(124, 58, 237, 0.08);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-c2);
        }

        .hero-eyebrow .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-v2);
            box-shadow: 0 0 10px var(--accent-v);
            animation: pulse 1.6s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        .hero-wordmark {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 0.28em;
            line-height: 1;
        }

        .hero-wordmark .l {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(4.5rem, 14vw, 9rem);
            font-weight: 400;
            color: #fff;
            letter-spacing: 0.01em;
            background: linear-gradient(180deg, #ffffff 40%, #c4b5fd 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 60px rgba(124, 58, 237, 0.25);
        }

        .hero-tagline {
            font-size: clamp(1.05rem, 1.6vw, 1.25rem);
            color: var(--text-secondary);
            max-width: 560px;
            line-height: 1.5;
        }

        .hero-tagline strong {
            color: #fff;
            font-weight: 600;
        }

        .hero-search {
            width: 100%;
            max-width: 580px;
            position: relative;
            margin-top: 8px;
        }

        .hero-search input {
            width: 100%;
            padding: 18px 60px 18px 24px;
            background: rgba(15, 15, 15, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            outline: none;
            backdrop-filter: blur(8px);
            transition: var(--transition);
        }

        .hero-search input::placeholder {
            color: var(--text-secondary);
        }

        .hero-search input:focus {
            border-color: rgba(124, 58, 237, 0.6);
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
            background: rgba(15, 15, 15, 0.9);
        }

        .hero-search button {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--grad-accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .hero-search button:hover {
            transform: translateY(-50%) scale(1.06);
            box-shadow: 0 0 22px rgba(124, 58, 237, 0.5);
        }

        .landing-autocomplete {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            right: 0;
            background: rgba(15, 15, 22, 0.92);
            border: 1px solid rgba(124, 58, 237, 0.22);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 50;
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.98);
            pointer-events: none;
            max-height: min(440px, 70vh);
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(124, 58, 237, 0.4) transparent;
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
        }

        .landing-autocomplete::-webkit-scrollbar {
            width: 6px;
        }

        .landing-autocomplete::-webkit-scrollbar-thumb {
            background: rgba(124, 58, 237, 0.35);
            border-radius: 3px;
        }

        .landing-autocomplete.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
        }

        .landing-ac-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: background 0.18s ease;
        }

        .landing-ac-item:last-child {
            border-bottom: none;
        }

        .landing-ac-item:hover,
        .landing-ac-item.active {
            background: rgba(124, 58, 237, 0.14);
        }

        .landing-ac-poster {
            width: 44px;
            height: 64px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.05);
        }

        .landing-ac-body {
            flex: 1;
            min-width: 0;
            text-align: center;
        }

        .landing-ac-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .landing-ac-meta {
            font-size: 0.75rem;
            color: var(--text-muted, rgba(255, 255, 255, 0.5));
            margin-top: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .landing-ac-meta .dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: currentColor;
            opacity: 0.5;
        }

        .landing-ac-empty,
        .landing-ac-loading {
            padding: 18px 16px;
            text-align: center;
            color: var(--text-muted, rgba(255, 255, 255, 0.5));
            font-size: 0.88rem;
        }

        .landing-ac-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .landing-ac-spinner {
            width: 14px;
            height: 14px;
            border: 2px solid rgba(124, 58, 237, 0.3);
            border-top-color: #a78bfa;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @media (max-width: 600px) {
            .landing-autocomplete {
                border-radius: 14px;
                max-height: min(360px, 60vh);
            }

            .landing-ac-item {
                padding: 10px 12px;
                gap: 10px;
            }

            .landing-ac-poster {
                width: 38px;
                height: 56px;
            }

            .landing-ac-title {
                font-size: 0.88rem;
            }

            .landing-ac-meta {
                font-size: 0.7rem;
            }
        }

        .hero-chips-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            max-width: 660px;
        }

        .hero-chips-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .hero-chips {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            min-height: 34px;
            transition: opacity 0.3s ease;
        }

        .hero-chips.loading {
            opacity: 0.5;
        }

        .hero-chip {
            padding: 7px 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 999px;
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .hero-chip:hover {
            background: rgba(124, 58, 237, 0.12);
            border-color: rgba(124, 58, 237, 0.4);
            color: #fff;
        }

        .hero-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 8px;
        }

        .hero-cta-music {
            background: linear-gradient(135deg, #9d6ef8, #7c3aed 60%, #4c1d95);
            box-shadow: 0 10px 40px rgba(157, 110, 248, 0.35);
        }

        .hero-cta-music svg {
            width: 18px;
            height: 18px;
        }

        .hero-cta-music:hover {
            box-shadow: 0 14px 50px rgba(157, 110, 248, 0.55);
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 30px;
            border-radius: 999px;
            background: linear-gradient(135deg, #7c3aed, #4c1d95);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
            transition: var(--transition);
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 50px rgba(124, 58, 237, 0.55);
        }

        .hero-cta svg {
            transition: transform 0.25s ease;
        }

        .hero-cta:hover svg {
            transform: translateX(4px);
        }

        .hero-cta-alt {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: none;
            backdrop-filter: blur(5px);
        }

        .hero-cta-alt:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(124, 58, 237, 0.5);
            box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .hero-stat-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: #fff;
            line-height: 1;
            letter-spacing: 0.02em;
        }

        .hero-stat-label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            font-weight: 600;
        }

        .section-block {
            padding: 100px 24px;
            position: relative;
        }

        .section-block .inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-eyebrow {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent-c2);
            margin-bottom: 18px;
        }

        .section-h2 {
            font-size: clamp(2rem, 4vw, 3.4rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: #fff;
            margin-bottom: 18px;
        }

        .section-h2 .grad {
            background: linear-gradient(135deg, #c4b5fd 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-lead {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.6;
        }

        .section-head {
            margin-bottom: 56px;
            max-width: 760px;
        }

        .bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
        }

        .bento-card {
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 28px;
            padding: 36px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            min-height: 240px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(124, 58, 237, 0.12), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .bento-card:hover {
            border-color: rgba(124, 58, 237, 0.35);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-3px);
        }

        .bento-card:hover::before {
            opacity: 1;
        }

        .bento-card .glow {
            position: absolute;
            border-radius: 50%;
            opacity: 0.7;
            pointer-events: none;
        }

        .bento-card.purple .glow {
            width: 320px;
            height: 320px;
            top: -120px;
            right: -120px;
            background: radial-gradient(circle, rgba(124,58,237,0.55) 0%, rgba(76,29,149,0.20) 45%, transparent 70%);
        }

        .bento-card.violet .glow {
            width: 280px;
            height: 280px;
            bottom: -120px;
            left: -100px;
            background: radial-gradient(circle, rgba(157,110,248,0.42) 0%, rgba(124,58,237,0.14) 45%, transparent 70%);
        }

        .bento-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(124, 58, 237, 0.12);
            border: 1px solid rgba(124, 58, 237, 0.22);
            color: #c4b5fd;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
        }

        .bento-card.muted .bento-icon {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .bento-h {
            font-size: 1.55rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
            position: relative;
            z-index: 1;
        }

        .bento-card.large .bento-h {
            font-size: 1.9rem;
        }

        .bento-p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.55;
            max-width: 420px;
            position: relative;
            z-index: 1;
        }

        .bento .span-7 {
            grid-column: span 7;
        }

        .bento .span-5 {
            grid-column: span 5;
        }

        .bento .span-6 {
            grid-column: span 6;
        }

        .bento .span-4 {
            grid-column: span 4;
        }

        .bento .span-8 {
            grid-column: span 8;
        }

        .bento .span-12 {
            grid-column: span 12;
        }

        .bento-card.feature-wide,
        .bento-card.feature-compact {
            min-width: 0;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            transform: translateZ(0);
        }

        .bento-card.feature-wide {
            min-height: 330px;
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
            align-items: center;
            gap: 52px;
            padding: 42px;
            background:
                linear-gradient(120deg, rgba(124, 58, 237, 0.13), rgba(13, 15, 26, 0.45) 56%),
                rgba(255, 255, 255, 0.025);
        }

        .bento-card.feature-compact {
            min-height: 300px;
            justify-content: flex-start;
            padding: 28px;
        }

        .feature-copy {
            position: relative;
            z-index: 1;
        }

        .feature-copy .bento-icon {
            margin-bottom: 18px;
        }

        .bento-kicker {
            display: block;
            margin-bottom: 7px;
            color: #a78bfa;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .tracking-preview {
            position: relative;
            z-index: 1;
            width: 100%;
            min-width: 0;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 18px;
            background: rgba(6, 7, 14, 0.72);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
        }

        .tracking-preview-head,
        .tracking-show,
        .tracking-service {
            display: flex;
            align-items: center;
        }

        .tracking-preview-head {
            justify-content: space-between;
            gap: 14px;
            padding-bottom: 15px;
            color: #f4f4f5;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .tracking-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #86efac;
            white-space: nowrap;
        }

        .tracking-live i {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #4ade80;
        }

        .tracking-show {
            gap: 13px;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .tracking-poster {
            width: 44px;
            height: 54px;
            flex: 0 0 auto;
            border-radius: 8px;
            display: block;
            object-fit: cover;
            background: #171721;
        }

        .tracking-show-copy,
        .tracking-service > span:nth-child(2) {
            display: flex;
            min-width: 0;
            flex: 1;
            flex-direction: column;
        }

        .tracking-show-copy strong,
        .tracking-service strong {
            color: #fff;
            font-size: 0.82rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .tracking-show-copy span,
        .tracking-service small {
            margin-top: 3px;
            color: var(--text-muted);
            font-size: 0.7rem;
        }

        .tracking-services {
            display: grid;
            gap: 9px;
            padding-top: 14px;
        }

        .tracking-service {
            gap: 10px;
            min-width: 0;
        }

        .tracking-service b {
            color: #c4b5fd;
            font-size: 0.68rem;
            font-weight: 600;
        }

        .service-mark {
            width: 30px;
            height: 30px;
            flex: 0 0 auto;
            border-radius: 8px;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 0.72rem;
            font-weight: 800;
        }

        .service-mark img {
            display: block;
            width: 18px;
            height: 18px;
            object-fit: contain;
        }

        .anilist-mark {
            background: #111827;
            border: 1px solid #3db4f2;
        }

        .mal-mark {
            background: #fff;
            border: 1px solid rgba(46, 81, 162, 0.65);
        }

        .resume-preview,
        .conversation-preview,
        .profile-preview {
            position: relative;
            width: 100%;
            height: 76px;
            flex: 0 0 76px;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            overflow: hidden;
        }

        .resume-preview {
            padding: 17px 16px;
            background: linear-gradient(120deg, rgba(59, 130, 246, 0.13), rgba(255, 255, 255, 0.025));
        }

        .resume-episode,
        .resume-time {
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
        }

        .resume-time {
            float: right;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .resume-track {
            height: 4px;
            margin-top: 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .resume-track i {
            display: block;
            width: 68%;
            height: 100%;
            border-radius: inherit;
            background: #60a5fa;
        }

        .conversation-preview {
            display: grid;
            grid-template-columns: 34px minmax(0, 1fr);
            align-items: center;
            gap: 11px;
            padding: 14px;
            background: linear-gradient(120deg, rgba(34, 197, 94, 0.08), rgba(255, 255, 255, 0.025));
        }

        .comment-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            background: #166534;
        }

        .comment-lines {
            display: grid;
            gap: 7px;
        }

        .comment-lines i {
            display: block;
            height: 5px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.18);
        }

        .comment-lines i:last-child {
            width: 64%;
        }

        .spoiler-chip {
            position: absolute;
            right: 12px;
            bottom: 9px;
            color: #86efac;
            font-size: 0.58rem;
            font-weight: 600;
        }

        .profile-preview {
            background: rgba(255, 255, 255, 0.03);
        }

        .profile-banner-preview {
            height: 40px;
            background: linear-gradient(110deg, #7c3aed, #ec4899 58%, #f59e0b);
        }

        .profile-avatar-preview {
            position: absolute;
            left: 14px;
            bottom: 8px;
            width: 34px;
            height: 34px;
            border: 3px solid #12121b;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            background: #312e81;
        }

        .profile-swatches {
            position: absolute;
            right: 13px;
            bottom: 13px;
            display: flex;
            gap: 5px;
        }

        .profile-swatches i {
            width: 12px;
            height: 12px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            background: #7c3aed;
        }

        .profile-swatches i:nth-child(2) {
            background: #0ea5e9;
        }

        .profile-swatches i:nth-child(3) {
            background: #ec4899;
        }

        .profile-swatches i:nth-child(4) {
            background: #22c55e;
        }

        .feature-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .feature-mini {
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 22px;
            padding: 28px;
            transition: var(--transition);
        }

        .feature-mini:hover {
            border-color: rgba(124, 58, 237, 0.3);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-2px);
        }

        .feature-mini .bento-icon {
            width: 42px;
            height: 42px;
            margin-bottom: 16px;
        }

        .feature-mini h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .feature-mini p {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 760px;
            margin: 0 auto;
        }

        details.faq-item {
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 18px;
            overflow: hidden;
            transition: var(--transition);
        }

        details.faq-item[open] {
            border-color: rgba(124, 58, 237, 0.3);
            background: rgba(124, 58, 237, 0.04);
        }

        details.faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 22px 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 1.05rem;
            font-weight: 600;
            color: #fff;
        }

        details.faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(124, 58, 237, 0.12);
            border: 1px solid rgba(124, 58, 237, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c4b5fd;
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }

        details[open] .faq-icon {
            transform: rotate(45deg);
        }

        details.faq-item .faq-body {
            padding: 0 26px 24px;
            font-size: 0.96rem;
            color: var(--text-secondary);
            line-height: 1.65;
            overflow: hidden;
            box-sizing: border-box;
            will-change: height;
        }

        body footer {
            background: transparent !important;
            border-top: none !important;
        }

        body #header.scrolled {
            background: rgba(7, 7, 15, 0.55) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
            backdrop-filter: blur(22px) saturate(140%) !important;
            -webkit-backdrop-filter: blur(22px) saturate(140%) !important;
        }

        .landing-auth-nav .btn,
        .landing-auth-nav a {
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            background: rgba(124, 58, 237, 0.18);
            border: 1px solid rgba(167, 139, 250, 0.45);
            color: #fff;
            padding: 9px 20px;
            border-radius: 999px;
            font-weight: 700;
            transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
            box-shadow: 0 6px 18px rgba(124, 58, 237, 0.18);
        }
        .landing-auth-nav .btn:hover,
        .landing-auth-nav a:hover {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(167, 139, 250, 0.85));
            border-color: rgba(255, 255, 255, 0.45);
            transform: translateY(-1px);
            box-shadow: 0 10px 26px rgba(124, 58, 237, 0.45);
        }

        .faq-section {
            text-align: center;
        }

        .faq-section .section-head {
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section {
            text-align: center;
            padding: 80px 24px 120px;
            position: relative;
        }

        .cta-card {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(76, 29, 149, 0.06));
            border: 1px solid rgba(124, 58, 237, 0.25);
            border-radius: 32px;
            padding: 64px 40px;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, rgba(91,33,182,0.08) 40%, transparent 65%);
            pointer-events: none;
        }

        .cta-card h2 {
            position: relative;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .cta-card p {
            position: relative;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto 32px;
            line-height: 1.55;
        }

        .cta-card .hero-cta {
            position: relative;
        }

        .landing-disclaimer {
            text-align: center;
            font-size: 0.82rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 32px auto 0;
            line-height: 1.55;
            position: relative;
        }

        @media (max-width: 900px) {

            .bento .span-7,
            .bento .span-5,
            .bento .span-6,
            .bento .span-4,
            .bento .span-8,
            .bento .span-12 {
                grid-column: span 12;
            }

            .bento-card.feature-wide {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .feature-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-block {
                padding: 70px 20px;
            }

            .cta-card {
                padding: 48px 24px;
            }
        }

        @media (max-width: 520px) {
            .feature-row {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 24px;
            }

            .bento-card {
                padding: 28px;
                min-height: 200px;
            }

            .bento-card.feature-wide {
                min-height: 0;
                padding: 26px;
            }

            .bento-card.feature-compact {
                min-height: 275px;
                padding: 24px;
            }

            .tracking-preview {
                padding: 16px;
            }

            .tracking-preview-head {
                align-items: flex-start;
                flex-direction: column;
                gap: 5px;
            }

            .tracking-service b {
                display: none;
            }
        }

        /* ── Animated orbs ── */
        .orb {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
            will-change: transform;
            transform: translateZ(0);
        }
        .orb-1 {
            width: 900px; height: 900px;
            top: -380px; left: -320px;
            background: radial-gradient(circle, rgba(124,58,237,0.55) 0%, rgba(76,29,149,0.20) 40%, rgba(49,10,101,0.06) 65%, transparent 100%);
            opacity: 0.32;
            animation: orbDrift1 15s ease-in-out infinite;
        }
        .orb-2 {
            width: 720px; height: 720px;
            top: 25%; right: -310px;
            background: radial-gradient(circle, rgba(91,33,182,0.48) 0%, rgba(49,10,101,0.16) 40%, rgba(49,10,101,0.04) 65%, transparent 100%);
            opacity: 0.26;
            animation: orbDrift2 20s ease-in-out infinite;
        }
        .orb-3 {
            width: 560px; height: 560px;
            bottom: 8%; left: 3%;
            background: radial-gradient(circle, rgba(167,139,250,0.30) 0%, rgba(124,58,237,0.09) 40%, transparent 70%, transparent 100%);
            opacity: 0.20;
            animation: orbDrift3 25s ease-in-out infinite;
        }
        @keyframes orbDrift1 {
            0%,100% { transform: translate(0,0) scale(1); }
            30%     { transform: translate(60px,-80px) scale(1.07); }
            65%     { transform: translate(-38px,58px) scale(0.94); }
        }
        @keyframes orbDrift2 {
            0%,100% { transform: translate(0,0) scale(1); }
            40%     { transform: translate(-70px,88px) scale(1.05); }
            75%     { transform: translate(48px,-48px) scale(0.96); }
        }
        @keyframes orbDrift3 {
            0%,100% { transform: translate(0,0) scale(1); }
            50%     { transform: translate(80px,-60px) scale(1.08); }
        }

        /* ── Noise texture ── */
        .noise-layer {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            opacity: 0.036;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            transform: translateZ(0);
            contain: style;
        }

        /* ── Wordmark shimmer sweep ── */
        .hero-wordmark { position: relative; overflow: visible; }
        .hero-wordmark::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
            transform: translateX(-110%);
            animation: wordmarkSweep 5.5s ease-in-out infinite 1s;
            pointer-events: none;
            will-change: transform;
        }
        @keyframes wordmarkSweep {
            0%   { transform: translateX(-110%); }
            35%  { transform: translateX(140%); }
            100% { transform: translateX(140%); }
        }

        /* ── Hero eyebrow pill ── */
        .hero-eyebrow {
            background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(157,110,248,0.07)) !important;
            border-color: rgba(167,139,250,0.42) !important;
            box-shadow: 0 0 22px rgba(124,58,237,0.13), inset 0 1px 0 rgba(255,255,255,0.06);
        }

        /* ── Chip enhanced ── */
        .hero-chip {
            background: rgba(124,58,237,0.07) !important;
            border: 1px solid rgba(124,58,237,0.18) !important;
        }
        .hero-chip:hover {
            background: rgba(124,58,237,0.18) !important;
            border-color: rgba(167,139,250,0.5) !important;
            color: #fff !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(124,58,237,0.25);
        }

        /* ── Search glassy ── */
        .hero-search input {
            background: rgba(6,6,14,0.68) !important;
            box-shadow: 0 8px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04) !important;
        }
        .hero-search input:focus {
            box-shadow: 0 0 0 4px rgba(124,58,237,0.22), 0 0 50px rgba(124,58,237,0.12) !important;
        }

        /* ── Marquee section ── */
        .marquee-section {
            overflow: hidden;
            padding: 0 0 80px;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
            content-visibility: auto;
            contain-intrinsic-size: auto 400px;
        }
        .marquee-label-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 30px;
        }
        .marquee-label-row::before,
        .marquee-label-row::after {
            content: '';
            height: 1px;
            width: 72px;
            background: linear-gradient(90deg, transparent, rgba(124,58,237,0.4));
        }
        .marquee-label-row::after {
            background: linear-gradient(270deg, transparent, rgba(124,58,237,0.4));
        }
        .marquee-label {
            font-size: 0.67rem;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .marquee-rows { display: flex; flex-direction: column; gap: 14px; }
        .marquee-row {
            display: flex;
            gap: 14px;
            width: max-content;
            animation: mqLeft 55s linear infinite;
            will-change: transform;
            transform: translateZ(0);
        }
        .marquee-row.rev { animation: mqRight 62s linear infinite; }
        @keyframes mqLeft {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @keyframes mqRight {
            0%   { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        .marquee-card {
            flex-shrink: 0;
            width: 88px; height: 126px;
            border-radius: 12px;
            overflow: hidden;
            background: rgba(124,58,237,0.07);
            border: 1px solid rgba(255,255,255,0.07);
            display: block;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            cursor: pointer;
        }
        .marquee-card:hover {
            transform: scale(1.1) translateY(-7px);
            box-shadow: 0 18px 44px rgba(124,58,237,0.5);
            border-color: rgba(124,58,237,0.55);
            position: relative;
            z-index: 5;
        }
        .marquee-card img { width: 100%; height: 100%; object-fit: cover; }
        .marquee-card.skel { animation: mqSkel 1.6s ease-in-out infinite; }
        @keyframes mqSkel {
            0%,100% { opacity: 0.25; }
            50%     { opacity: 0.5; }
        }

        /* ── Scroll reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(38px);
            transition: opacity 0.78s cubic-bezier(0.22,1,0.36,1), transform 0.78s cubic-bezier(0.22,1,0.36,1);
        }
        .reveal.visible { opacity: 1; transform: none; }
        .reveal-d1 { transition-delay: 0.08s; }
        .reveal-d2 { transition-delay: 0.17s; }
        .reveal-d3 { transition-delay: 0.26s; }
        .reveal-d4 { transition-delay: 0.35s; }

        /* ── Bento enhanced ── */
        .bento-card {
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .bento-card.large.purple {
            background: linear-gradient(135deg, rgba(124,58,237,0.14) 0%, rgba(76,29,149,0.07) 100%) !important;
        }
        .bento-card.large.violet {
            background: linear-gradient(135deg, rgba(157,110,248,0.12) 0%, rgba(91,33,182,0.06) 100%) !important;
        }

        /* ── Bento notif preview ── */
        .bento-notif {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(124,58,237,0.1);
            border: 1px solid rgba(124,58,237,0.2);
            border-radius: 12px;
            padding: 10px 14px;
            margin-bottom: 22px;
            font-size: 0.82rem;
        }
        .bento-notif-icon {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: rgba(34,197,94,0.15);
            border: 1px solid rgba(34,197,94,0.3);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            color: #4ade80;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .bento-notif-body { flex: 1; min-width: 0; }
        .bento-notif-title { color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .bento-notif-sub { color: var(--text-secondary); font-size: 0.74rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .bento-notif-time { color: var(--text-muted); font-size: 0.7rem; white-space: nowrap; }

        /* ── Feature mini radial hover ── */
        .feature-mini { --mx: 50%; --my: 50%; position: relative; overflow: hidden; }
        .feature-mini::after {
            content: '';
            position: absolute; inset: 0;
            border-radius: 22px;
            background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,0.09), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .feature-mini:hover::after { opacity: 1; }

        /* ── CTA glow pulse ── */
        @keyframes ctaGlow {
            0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); border-color: rgba(124,58,237,0.25); }
            50%     { box-shadow: 0 0 80px rgba(124,58,237,0.2); border-color: rgba(167,139,250,0.52); }
        }
        .cta-card { animation: ctaGlow 5.5s ease-in-out infinite; transform: translateZ(0); }

        /* ── Section divider ── */
        .section-divider {
            width: 60px; height: 2px;
            background: linear-gradient(90deg, transparent, rgba(124,58,237,0.7), transparent);
            margin: 0 0 18px;
        }

        @media (max-width: 680px) {
            .marquee-section { padding-bottom: 50px; }
            .marquee-card { width: 72px; height: 104px; }
        }
        @media (hover: none) {
            .bento-card::before { display: none !important; }
            .feature-mini::after { display: none !important; }
            .hero-chip:hover { transform: none !important; }
        }
        .section-block { contain: layout style; }
        .bento-card { contain: layout style; }

