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

        :root {
            --void:         #06060F;
            --deep:         #0D0B1E;
            --purple:       #7C3AED;
            --violet:       #8B5CF6;
            --pink:         #EC4899;
            --pink-light:   #F472B6;
            --blue:         #3B82F6;
            --sky:          #38BDF8;
            --white:        #FFFFFF;
            --muted:        rgba(255,255,255,0.52);
            --glass-bg:     rgba(255,255,255,0.04);
            --glass-border: rgba(255,255,255,0.08);
            --input-bg:     rgba(255,255,255,0.05);
            --input-border: rgba(255,255,255,0.12);
            --error:        #F87171;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--void);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ─── NAV ──────────────────────────────────────── */
        nav {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 200;
            height: 68px;
            padding: 0 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(6,6,15,0.55);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--glass-border);
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.35rem;
            letter-spacing: -0.02em;
            text-decoration: none;
            background: linear-gradient(135deg, var(--violet) 0%, var(--sky) 55%, var(--pink-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 2.25rem;
            list-style: none;
        }

        .nav-center a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.01em;
            transition: color 0.2s;
            cursor: pointer;
        }

        .nav-center a:hover { color: var(--white); }

        .btn-register {
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: #fff;
            border: none;
            padding: 0.55rem 1.4rem;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 0 22px rgba(139,92,246,0.45);
            font-family: 'Inter', sans-serif;
        }

        .btn-register:hover {
            opacity: 0.9;
            transform: translateY(-1px);
            box-shadow: 0 0 36px rgba(139,92,246,0.65);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }
        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: rgba(255,255,255,0.75);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 68px; left: 0; right: 0;
            background: rgba(13,11,30,0.97);
            backdrop-filter: blur(20px);
            z-index: 199;
            padding: 1.5rem 2rem 2rem;
            border-bottom: 1px solid var(--glass-border);
            flex-direction: column;
            gap: 1.25rem;
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            color: var(--muted);
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: color 0.2s;
            cursor: pointer;
        }

        .mobile-menu a:hover { color: var(--white); }
        .mobile-menu .btn-register { align-self: flex-start; margin-top: 0.5rem; }

        /* ─── LOGIN DRAWER ─────────────────────────────── */

        /* dim backdrop — visible but NOT a click-to-close target */
        .drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
            z-index: 300;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .drawer-backdrop.open {
            opacity: 1;
            pointer-events: none; /* intentionally never intercepts clicks */
        }

        /* the panel itself */
        .login-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 400px;
            max-width: 100vw;
            background: rgba(13,11,30,0.97);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            border-left: 1px solid var(--glass-border);
            z-index: 301;
            transform: translateX(100%);
            transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .login-drawer.open {
            transform: translateX(0);
        }

        /* gradient top accent line */
        .login-drawer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg,
                var(--purple) 0%,
                var(--sky) 50%,
                var(--pink) 100%);
            flex-shrink: 0;
        }

        /* drawer inner padding */
        .drawer-inner {
            padding: 2rem 2.25rem 2.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* close button */
        .drawer-close {
            position: absolute;
            top: 1.1rem;
            right: 1.25rem;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--glass-border);
            color: var(--muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            line-height: 1;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
        }

        .drawer-close:hover {
            background: rgba(255,255,255,0.12);
            color: var(--white);
            border-color: rgba(255,255,255,0.2);
        }

        /* drawer logo */
        .drawer-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--violet) 0%, var(--sky) 55%, var(--pink-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 2rem;
            margin-top: 0.25rem;
            text-decoration: none;
        }

        .drawer-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 0.35rem;
        }

        .drawer-sub {
            font-size: 0.875rem;
            color: var(--muted);
            margin-bottom: 2rem;
        }

        /* Google button */
        .btn-google {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            width: 100%;
            padding: 0.8rem 1.25rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.06);
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.22s;
            text-decoration: none;
            margin-bottom: 1.5rem;
        }

        .btn-google:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.24);
            transform: translateY(-1px);
        }

        /* divider */
        .divider {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .div-line {
            flex: 1;
            height: 1px;
            background: var(--glass-border);
        }

        .div-txt {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.28);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        /* form fields */
        .d-field {
            margin-bottom: 1rem;
        }

        .d-field label {
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255,255,255,0.68);
            margin-bottom: 0.45rem;
        }

        .d-input-wrap {
            position: relative;
        }

        .d-icon {
            position: absolute;
            left: 0.875rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255,255,255,0.26);
            pointer-events: none;
            display: flex;
            align-items: center;
        }

        .d-field input {
            width: 100%;
            padding: 0.78rem 0.875rem 0.78rem 2.5rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.11);
            border-radius: 10px;
            color: var(--white);
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
            -webkit-appearance: none;
        }

        .d-field input::placeholder { color: rgba(255,255,255,0.22); }

        .d-field input:focus {
            border-color: rgba(139,92,246,0.55);
            background: rgba(139,92,246,0.06);
            box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
        }

        /* password toggle */
        .pw-toggle {
            position: absolute;
            right: 0.875rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: rgba(255,255,255,0.28);
            padding: 0;
            display: flex;
            align-items: center;
            transition: color 0.2s;
        }

        .pw-toggle:hover { color: rgba(255,255,255,0.7); }

        /* forgot link */
        .forgot {
            text-align: right;
            margin-top: 0.45rem;
        }

        .forgot a {
            font-size: 0.78rem;
            color: var(--violet);
            text-decoration: none;
            transition: color 0.2s;
        }

        .forgot a:hover { color: var(--pink-light); }

        /* sign in button */
        .btn-signin {
            width: 100%;
            padding: 0.875rem;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 0.975rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.25s;
            box-shadow: 0 0 38px rgba(139,92,246,0.42), 0 0 75px rgba(236,72,153,0.16);
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .btn-signin:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 58px rgba(139,92,246,0.62), 0 0 95px rgba(236,72,153,0.28);
        }

        /* register nudge at bottom */
        .drawer-register {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid var(--glass-border);
            text-align: center;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .drawer-register a {
            color: var(--violet);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .drawer-register a:hover { color: var(--pink-light); }

        /* ─── HERO ─────────────────────────────────────── */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 9rem 2rem 5rem;
            overflow: hidden;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
        }
        .blob-1 {
            width: 500px; height: 500px;
            background: rgba(124,58,237,0.18);
            top: -10%; left: -8%;
            animation: drift 14s ease-in-out infinite;
        }
        .blob-2 {
            width: 420px; height: 420px;
            background: rgba(236,72,153,0.14);
            bottom: 5%; right: -5%;
            animation: drift 11s ease-in-out infinite reverse;
        }
        .blob-3 {
            width: 360px; height: 360px;
            background: rgba(56,189,248,0.1);
            top: 55%; left: 12%;
            animation: drift 9s ease-in-out infinite 3s;
        }
        @keyframes drift {
            0%,100% { transform: translate(0,0); }
            50%      { transform: translate(30px,-25px); }
        }

        .orb-wrap {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -52%);
            width: min(880px, 130vw);
            height: min(880px, 130vw);
            pointer-events: none;
            z-index: 0;
        }

        .orb {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(ellipse at 38% 34%,
                rgba(139,92,246,0.58) 0%,
                rgba(59,130,246,0.46) 28%,
                rgba(236,72,153,0.32) 52%,
                transparent 68%
            );
            animation: orbBreath 9s ease-in-out infinite;
        }

        .orb-rim {
            position: absolute;
            inset: 2%;
            border-radius: 50%;
            border: 1.5px solid rgba(139,92,246,0.22);
            animation: spin 22s linear infinite;
        }

        .orb-rim-2 {
            position: absolute;
            inset: 10%;
            border-radius: 50%;
            border: 1px solid rgba(56,189,248,0.12);
            animation: spin 32s linear infinite reverse;
        }

        @keyframes orbBreath {
            0%,100% {
                transform: scale(1);
                background: radial-gradient(ellipse at 38% 34%,
                    rgba(139,92,246,0.58) 0%,
                    rgba(59,130,246,0.46) 28%,
                    rgba(236,72,153,0.32) 52%,
                    transparent 68%);
            }
            35% {
                transform: scale(1.06);
                background: radial-gradient(ellipse at 56% 40%,
                    rgba(59,130,246,0.62) 0%,
                    rgba(139,92,246,0.44) 28%,
                    rgba(236,72,153,0.36) 52%,
                    transparent 68%);
            }
            68% {
                transform: scale(0.97);
                background: radial-gradient(ellipse at 32% 58%,
                    rgba(236,72,153,0.52) 0%,
                    rgba(139,92,246,0.50) 32%,
                    rgba(56,189,248,0.28) 56%,
                    transparent 68%);
            }
        }

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

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 840px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 1rem;
            border-radius: 100px;
            border: 1px solid rgba(139,92,246,0.38);
            background: rgba(139,92,246,0.1);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--violet);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 0.7s 0.15s forwards;
        }

        .dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--violet);
            animation: blink 2.2s ease-in-out infinite;
        }

        @keyframes blink {
            0%,100% { opacity: 1; }
            50%      { opacity: 0.25; }
        }

        h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.6rem, 6.5vw, 4.8rem);
            font-weight: 700;
            line-height: 1.06;
            letter-spacing: -0.035em;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 0.7s 0.35s forwards;
        }

        .grad {
            background: linear-gradient(135deg, var(--violet) 0%, var(--sky) 50%, var(--pink-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--muted);
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto 2.75rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeUp 0.7s 0.55s forwards;
        }

        .ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
            opacity: 0;
            animation: fadeUp 0.7s 0.75s forwards;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: #fff;
            border: none;
            padding: 0.9rem 2.1rem;
            border-radius: 100px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            transition: all 0.25s;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 0 44px rgba(139,92,246,0.55), 0 0 90px rgba(236,72,153,0.22);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 70px rgba(139,92,246,0.75), 0 0 110px rgba(236,72,153,0.35);
        }

        .btn-ghost {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--glass-border);
            padding: 0.9rem 2.1rem;
            border-radius: 100px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.25s;
            font-family: 'Inter', sans-serif;
            backdrop-filter: blur(10px);
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.22);
            transform: translateY(-2px);
        }

        .stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2.75rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.7s 0.95s forwards;
        }

        .stat-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .stat-lbl {
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 0.2rem;
        }

        .stat-div {
            width: 1px;
            height: 36px;
            background: var(--glass-border);
        }

        .scroll-cue {
            position: absolute;
            bottom: 2.25rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.45rem;
            opacity: 0;
            animation: fadeIn 0.6s 1.5s forwards;
        }

        .scroll-line {
            width: 1px;
            height: 42px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
            animation: scrollPulse 2.2s ease-in-out infinite;
        }

        .scroll-txt {
            font-size: 0.65rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
        }

        @keyframes scrollPulse {
            0%,100% { opacity: 0.45; }
            50%      { opacity: 0.9; }
        }

        /* ─── FEATURES ─────────────────────────────────── */
        .features {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-tag {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--violet);
            margin-bottom: 0.75rem;
        }

        .rule {
            width: 52px;
            height: 2px;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            border-radius: 2px;
            margin: 0 auto 1.5rem;
        }

        .section-h {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.8rem, 4.5vw, 2.9rem);
            font-weight: 700;
            text-align: center;
            letter-spacing: -0.03em;
            line-height: 1.12;
            margin-bottom: 1rem;
        }

        .section-p {
            text-align: center;
            color: var(--muted);
            max-width: 500px;
            margin: 0 auto 3.5rem;
            font-size: 1rem;
            line-height: 1.7;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 1.4rem;
        }

        .card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s, background 0.3s, transform 0.3s;
            opacity: 0;
            transform: translateY(18px);
        }

        .card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, background 0.3s;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .card:hover::before { opacity: 1; }
        .card:hover {
            border-color: rgba(139,92,246,0.32);
            background: rgba(255,255,255,0.06);
            transform: translateY(-5px);
        }

        .icon-box {
            width: 48px; height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            font-size: 1.35rem;
        }

        .icon-v { background: rgba(124,58,237,0.2); }
        .icon-p { background: rgba(236,72,153,0.2); }
        .icon-b { background: rgba(59,130,246,0.2); }

        .card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            margin-bottom: 0.6rem;
        }

        .card p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.68;
        }

        /* ─── CTA BANNER ───────────────────────────────── */
        .cta-wrap {
            padding: 4.5rem 2rem 5.5rem;
            text-align: center;
        }

        .cta-box {
            max-width: 740px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(124,58,237,0.14) 0%, rgba(236,72,153,0.09) 100%);
            border: 1px solid rgba(139,92,246,0.28);
            border-radius: 28px;
            padding: 4rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .cta-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.1) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta-box h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 0.9rem;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2.25rem;
            position: relative;
            z-index: 1;
        }

        .cta-box .btn-primary { position: relative; z-index: 1; }

        /* ─── FOOTER ───────────────────────────────────── */
        footer {
            border-top: 1px solid var(--glass-border);
            padding: 2rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .foot-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            background: linear-gradient(135deg, var(--violet), var(--pink-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .foot-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .foot-links a {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.35);
            text-decoration: none;
            transition: color 0.2s;
        }

        .foot-links a:hover { color: var(--white); }

        .foot-copy {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.28);
        }

        /* ─── ANIMATIONS ───────────────────────────────── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(18px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn { to { opacity: 0.45; } }

        /* ─── RESPONSIVE ───────────────────────────────── */
        @media (max-width: 720px) {
            nav { padding: 0 1.25rem; }
            .nav-center { display: none; }
            .hamburger  { display: flex; }
            .orb-wrap { width: 520px; height: 520px; }
            .stat-div { display: none; }
            .stats { gap: 1.8rem; }
            .cta-box { padding: 2.5rem 1.5rem; }
            footer { flex-direction: column; align-items: flex-start; }
            .login-drawer { width: 100vw; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; }
        }

        /* ═══════════════════════════════════════════════════
           REGISTER PAGE — rules merged from sayitfast-register.html
           (exact duplicates skipped; .card renamed to .register-card
            to avoid collision with the landing feature card)
           ═══════════════════════════════════════════════════ */

        .nav-login {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-login:hover { color: var(--white); }

        /* ─── BACKGROUND ORBS ──────────────────────────── */
        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
            z-index: 0;
        }

        .orb-1 {
            width: 600px; height: 600px;
            background: rgba(124,58,237,0.16);
            top: -15%; left: -10%;
            animation: drift 16s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px; height: 500px;
            background: rgba(236,72,153,0.12);
            bottom: -10%; right: -8%;
            animation: drift 12s ease-in-out infinite reverse;
        }

        .orb-3 {
            width: 350px; height: 350px;
            background: rgba(56,189,248,0.08);
            top: 50%; right: 15%;
            animation: drift 10s ease-in-out infinite 2s;
        }

        /* ─── PAGE LAYOUT ──────────────────────────────── */
        .page {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 1.5rem 3rem;
        }

        /* ─── REGISTER CARD ────────────────────────────── */
        .register-card {
            width: 100%;
            max-width: 480px;
            background: rgba(255,255,255,0.035);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2.75rem 2.5rem;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            animation: cardIn 0.6s ease both;
        }

        /* top glow line */
        .register-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                transparent,
                rgba(139,92,246,0.5) 40%,
                rgba(236,72,153,0.4) 60%,
                transparent);
        }

        @keyframes cardIn {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* card header */
        .card-head {
            text-align: center;
            margin-bottom: 2rem;
        }

        .card-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--violet) 0%, var(--sky) 55%, var(--pink-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 1.25rem;
            text-decoration: none;
        }

        .card-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 0.4rem;
        }

        .card-sub {
            font-size: 0.875rem;
            color: var(--muted);
        }

        .btn-google svg {
            flex-shrink: 0;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: var(--glass-border);
        }

        .divider-txt {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.3);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* ─── FORM ─────────────────────────────────────── */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .field {
            margin-bottom: 1rem;
        }

        label {
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255,255,255,0.7);
            margin-bottom: 0.45rem;
            letter-spacing: 0.01em;
        }

        .input-wrap {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 0.875rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255,255,255,0.28);
            pointer-events: none;
            display: flex;
            align-items: center;
        }

        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="tel"] {
            width: 100%;
            padding: 0.75rem 0.875rem 0.75rem 2.5rem;
            background: var(--input-bg);
            border: 1px solid var(--input-border);
            border-radius: 10px;
            color: var(--white);
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
            -webkit-appearance: none;
        }

        input::placeholder { color: rgba(255,255,255,0.22); }

        input:focus {
            border-color: rgba(139,92,246,0.55);
            background: rgba(139,92,246,0.06);
            box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
        }

        input.error {
            border-color: rgba(248,113,113,0.55);
            background: rgba(248,113,113,0.05);
        }

        input.error:focus {
            box-shadow: 0 0 0 3px rgba(248,113,113,0.12);
        }

        .field-error {
            display: none;
            font-size: 0.75rem;
            color: var(--error);
            margin-top: 0.35rem;
        }

        .field-error.show { display: block; }

        /* password toggle */
        .toggle-pw {
            position: absolute;
            right: 0.875rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: rgba(255,255,255,0.3);
            padding: 0;
            display: flex;
            align-items: center;
            transition: color 0.2s;
        }

        .toggle-pw:hover { color: rgba(255,255,255,0.7); }

        /* password strength bar */
        .strength-wrap {
            margin-top: 0.5rem;
            display: none;
        }

        .strength-wrap.show { display: block; }

        .strength-bar {
            height: 3px;
            border-radius: 2px;
            background: var(--glass-border);
            margin-bottom: 0.3rem;
            overflow: hidden;
        }

        .strength-fill {
            height: 100%;
            border-radius: 2px;
            width: 0%;
            transition: width 0.3s, background 0.3s;
        }

        .strength-txt {
            font-size: 0.72rem;
            color: var(--muted);
        }

        /* checkbox */
        .check-field {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            margin-bottom: 1.5rem;
        }

        .check-field input[type="checkbox"] {
            width: 16px;
            height: 16px;
            min-width: 16px;
            padding: 0;
            border-radius: 4px;
            accent-color: var(--violet);
            margin-top: 1px;
            cursor: pointer;
        }

        .check-label {
            font-size: 0.8rem;
            color: var(--muted);
            line-height: 1.55;
            cursor: pointer;
        }

        .check-label a {
            color: var(--violet);
            text-decoration: none;
            transition: color 0.2s;
        }

        .check-label a:hover { color: var(--pink-light); }

        /* ─── SUBMIT BUTTON ────────────────────────────── */
        .btn-submit {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.25s;
            box-shadow: 0 0 40px rgba(139,92,246,0.45), 0 0 80px rgba(236,72,153,0.18);
            position: relative;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 60px rgba(139,92,246,0.65), 0 0 100px rgba(236,72,153,0.3);
        }

        .btn-submit:active { transform: translateY(0); }

        .btn-submit .btn-text { display: block; }
        .btn-submit .btn-loading { display: none; }

        .btn-submit.loading .btn-text    { display: none; }
        .btn-submit.loading .btn-loading { display: block; }

        /* ─── LOGIN LINK ───────────────────────────────── */
        .login-link {
            text-align: center;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .login-link a {
            color: var(--violet);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .login-link a:hover { color: var(--pink-light); }

        /* ─── SUCCESS STATE ────────────────────────────── */
        .success-state {
            display: none;
            text-align: center;
            padding: 1rem 0;
        }

        .success-state.show { display: block; }

        .success-icon {
            width: 64px; height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.75rem;
            box-shadow: 0 0 40px rgba(139,92,246,0.5);
            animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
        }

        @keyframes popIn {
            from { transform: scale(0); opacity: 0; }
            to   { transform: scale(1); opacity: 1; }
        }

        .success-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

        .success-sub {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.65;
        }

        /* ─── LOGIN DRAWER (register-only additions) ───── */
        .btn-google-d {
            display: flex; align-items: center; justify-content: center; gap: 0.65rem;
            width: 100%; padding: 0.8rem 1.25rem; border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.06); color: var(--white);
            font-size: 0.9rem; font-weight: 500; font-family: 'Inter', sans-serif;
            cursor: pointer; transition: all 0.22s; text-decoration: none; margin-bottom: 1.5rem;
        }
        .btn-google-d:hover {
            background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.24);
            transform: translateY(-1px);
        }
        .d-divider { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
        .d-div-line { flex: 1; height: 1px; background: var(--glass-border); }
        .d-div-txt {
            font-size: 0.72rem; color: rgba(255,255,255,0.28);
            letter-spacing: 0.06em; text-transform: uppercase;
        }
        .d-pw-toggle {
            position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%);
            background: none; border: none; cursor: pointer;
            color: rgba(255,255,255,0.28); padding: 0; display: flex; align-items: center;
            transition: color 0.2s;
        }
        .d-pw-toggle:hover { color: rgba(255,255,255,0.7); }
        .d-forgot { text-align: right; margin-top: 0.45rem; }
        .d-forgot a { font-size: 0.78rem; color: var(--violet); text-decoration: none; transition: color 0.2s; }
        .d-forgot a:hover { color: var(--pink-light); }
        .drawer-footer-note {
            margin-top: auto; padding-top: 1.5rem;
            border-top: 1px solid var(--glass-border);
            text-align: center; font-size: 0.85rem; color: var(--muted);
        }
        .drawer-footer-note a {
            color: var(--violet); text-decoration: none; font-weight: 500; transition: color 0.2s;
        }
        .drawer-footer-note a:hover { color: var(--pink-light); }

        /* ─── RESPONSIVE (register-only additions) ─────── */
        @media (max-width: 720px) {
            .register-card { padding: 2rem 1.5rem; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
        }

        /* ═══════════════════════════════════════════════════
           CONTENT / ABOUT PAGE — rules merged from
           sayitfast-content-page.html (exact duplicates and
           subset shared-component rules skipped)
           ═══════════════════════════════════════════════════ */

        /* active nav link (content page adds .active alongside :hover) */
        .nav-center a.active { color: var(--white); }

        /* ─── PAGE HEADER ──────────────────────────────── */
        .page-header {
            position: relative;
            padding: 9rem 2rem 4rem;
            text-align: center;
            overflow: hidden;
        }

        /* subtle ambient glow behind header */
        .page-header::before {
            content: '';
            position: absolute;
            top: -20%; left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 400px;
            background: radial-gradient(ellipse at center,
                rgba(139,92,246,0.18) 0%,
                rgba(236,72,153,0.1) 40%,
                transparent 70%);
            pointer-events: none;
            filter: blur(40px);
        }

        .page-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 1rem;
            border-radius: 100px;
            border: 1px solid rgba(139,92,246,0.38);
            background: rgba(139,92,246,0.1);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--violet);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .page-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 700;
            letter-spacing: -0.035em;
            line-height: 1.08;
            margin-bottom: 1.25rem;
            position: relative;
        }

        .page-subtitle {
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 540px;
            margin: 0 auto;
            font-weight: 300;
            position: relative;
        }

        /* thin gradient rule below header */
        .header-rule {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg,
                transparent,
                rgba(139,92,246,0.35) 30%,
                rgba(236,72,153,0.3) 70%,
                transparent);
            margin-top: 3.5rem;
        }

        /* ─── CONTENT LAYOUT ───────────────────────────── */
        .content-wrap {
            max-width: 1100px;
            margin: 0 auto;
            padding: 4rem 2rem 6rem;
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* ─── SIDEBAR TOC ──────────────────────────────── */
        .toc {
            position: sticky;
            top: 90px;
        }

        .toc-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            margin-bottom: 1rem;
        }

        .toc ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .toc a {
            display: block;
            padding: 0.45rem 0.75rem;
            font-size: 0.85rem;
            color: var(--muted);
            text-decoration: none;
            border-left: 2px solid transparent;
            transition: all 0.2s;
            border-radius: 0 6px 6px 0;
        }

        .toc a:hover {
            color: var(--white);
            border-left-color: var(--violet);
            background: rgba(139,92,246,0.08);
        }

        .toc a.active {
            color: var(--violet);
            border-left-color: var(--violet);
            background: rgba(139,92,246,0.1);
        }

        /* ─── MAIN CONTENT ─────────────────────────────── */
        .content {
            min-width: 0;
        }

        /* last-updated badge */
        .updated {
            display: inline-block;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.3);
            margin-bottom: 2.5rem;
            padding: 0.3rem 0.75rem;
            border: 1px solid var(--glass-border);
            border-radius: 6px;
            background: var(--glass-bg);
        }

        /* content sections */
        .content-section {
            margin-bottom: 3.5rem;
            scroll-margin-top: 90px;
        }

        .content-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.45rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--glass-border);
        }

        .content-section h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            margin: 1.75rem 0 0.65rem;
            color: rgba(255,255,255,0.9);
        }

        .content-section p {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .content-section ul,
        .content-section ol {
            padding-left: 1.25rem;
            margin-bottom: 1rem;
        }

        .content-section li {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 0.35rem;
        }

        .content-section li::marker {
            color: var(--violet);
        }

        /* highlight callout box */
        .callout {
            background: rgba(139,92,246,0.08);
            border: 1px solid rgba(139,92,246,0.22);
            border-left: 3px solid var(--violet);
            border-radius: 0 12px 12px 0;
            padding: 1.1rem 1.25rem;
            margin: 1.5rem 0;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
        }

        .callout strong {
            color: var(--violet);
            font-weight: 600;
        }

        /* info callout variant */
        .callout.info {
            background: rgba(56,189,248,0.07);
            border-color: rgba(56,189,248,0.2);
            border-left-color: var(--sky);
        }

        .callout.info strong { color: var(--sky); }

        /* ─── RESPONSIVE (content-only additions) ──────── */
        @media (max-width: 860px) {
            .content-wrap {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .toc {
                position: static;
                background: var(--glass-bg);
                border: 1px solid var(--glass-border);
                border-radius: 14px;
                padding: 1.25rem;
            }
        }

/* ─── MEETINGS PAGE ────────────────────────────────── */
.meetings-page {
    position: relative;
    min-height: calc(100vh - 68px);
    padding: 9rem 2rem 5rem;
    overflow: hidden;
}

.meetings-wrap {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.meetings-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.9rem, 4.5vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.meetings-sub {
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 3.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
    text-align: left;
}

.meeting-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.meeting-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.meeting-card > p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.m-field {
    margin-bottom: 1.25rem;
}

.m-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.68);
    margin-bottom: 0.45rem;
}

.m-field input,
.link-row input {
    width: 100%;
    padding: 0.78rem 0.875rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.m-field input::placeholder { color: rgba(255,255,255,0.22); }

.m-field input:focus {
    border-color: rgba(139,92,246,0.55);
    background: rgba(139,92,246,0.06);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}

.btn-block {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.meeting-result {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.meeting-result.show { display: block; }

.meeting-result label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.68);
    margin-bottom: 0.45rem;
}

.link-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.link-row input {
    flex: 1;
    color: var(--muted);
}

.btn-copy {
    padding: 0.78rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-copy:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.24);
}

.join-error {
    margin-top: 0.9rem;
    font-size: 0.82rem;
    color: var(--error, #F87171);
    min-height: 1.1rem;
}

/* ─── ERROR PAGE ───────────────────────────────────── */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 68px - 120px);
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.error-wrap {
    max-width: 520px;
}

.error-code {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--violet), var(--pink-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.error-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

.error-msg {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

/* ─── PRE-JOIN PAGE ────────────────────────────────── */
.prejoin-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    overflow: hidden;
}

.prejoin-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    text-align: center;
}

.prejoin-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    background: linear-gradient(135deg, var(--violet) 0%, var(--sky) 55%, var(--pink-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 2rem;
}

.prejoin-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
}

.prejoin-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.prejoin-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    text-align: left;
    align-items: start;
}

@media (max-width: 860px) {
    .prejoin-grid { grid-template-columns: 1fr; }
}

.preview-box {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
}

.preview-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.preview-box video.active { display: block; }

.preview-off {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.9rem;
}

.preview-box video.active + .preview-off { display: none; }

.prejoin-controls {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.75rem;
}

.m-field select {
    width: 100%;
    padding: 0.7rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.mic-meter {
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    overflow: hidden;
}

.mic-meter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--violet), var(--pink));
    border-radius: 100px;
    transition: width 0.08s linear;
}

.toggle-row {
    display: flex;
    gap: 0.6rem;
    margin: 1.4rem 0;
}

.toggle-btn {
    flex: 1;
    padding: 0.65rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: var(--muted);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: rgba(139,92,246,0.16);
    border-color: rgba(139,92,246,0.45);
    color: var(--white);
}

.prejoin-status {
    font-size: 0.82rem;
    color: var(--muted);
    min-height: 1.2rem;
    margin-bottom: 1rem;
}

.prejoin-status.error { color: var(--error, #F87171); }

/* ─── INLINE FIELD VALIDATION ──────────────────────── */
.req {
    color: var(--pink-light);
    font-weight: 600;
}

.field-error {
    display: none;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--error, #F87171);
}

.field-error.show { display: block; }

.m-field input.error,
.m-field select.error {
    border-color: rgba(248,113,113,0.6);
    background: rgba(248,113,113,0.06);
}

/* ─── LOADING SPINNER ──────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    vertical-align: -2px;
    border: 2px solid rgba(255,255,255,0.18);
    border-top-color: var(--violet);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
