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

        :root {
            --red: #E82B2B;
            --red2: #ff5252;
            --purple: #9B3FA0;
            --dark: #111114;
            --card: #1a1a1f;
            --border: rgba(255, 255, 255, 0.07);
            --text: #f0eee8;
            --muted: rgba(240, 238, 232, 0.45);
            --gold: #d4a94a;
        }

        html,
        body {
            height: 100%;
            font-family: 'DM Sans', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ── BACKGROUND ── */
        .bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            background:
                radial-gradient(ellipse 70% 60% at 80% 20%, rgba(155, 63, 160, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232, 43, 43, 0.14) 0%, transparent 55%),
                var(--dark);
        }

        .bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        /* ── LAYOUT ── */
        .page {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        /* ── LEFT: HERO ── */
        .hero {
            padding: 60px 64px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-right: 1px solid var(--border);
            animation: fadeUp 0.8s ease both;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-mark {
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, var(--red), var(--purple));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(90deg, var(--red), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 0 40px;
        }

        .tagline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 58px);
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        .tagline em {
            font-style: italic;
            color: var(--red2);
        }

        .sub {
            font-size: 16px;
            line-height: 1.7;
            color: var(--muted);
            max-width: 420px;
            margin-bottom: 40px;
        }



        /* ── HONEST EARLY STAGE ── */
        .early-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            border: 1px solid rgba(212, 169, 74, 0.35);
            background: rgba(212, 169, 74, 0.07);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 0.4px;
            margin-bottom: 28px;
        }

        .honest-block {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 36px;
        }

        .honest-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .honest-item svg {
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--red2);
            opacity: 0.8;
        }

        .honest-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 3px;
        }

        .honest-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.55;
        }

        .pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .pill {
            padding: 7px 16px;
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 12px;
            color: var(--muted);
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 6px;
            backdrop-filter: blur(8px);
        }

        .pill-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--red2);
        }

        /* ── RIGHT: FORM ── */
        .form-side {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 64px;
            animation: fadeUp 0.8s 0.15s ease both;
        }

        .form-header {
            margin-bottom: 36px;
        }

        .form-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-header p {
            font-size: 14px;
            color: var(--muted);
        }

        .tab-switch {
            display: flex;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 4px;
            margin-bottom: 32px;
            border: 1px solid var(--border);
        }

        .tab-btn {
            flex: 1;
            padding: 10px;
            border: none;
            background: none;
            color: var(--muted);
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border-radius: 9px;
            transition: all 0.25s;
        }

        .tab-btn.active {
            background: linear-gradient(135deg, var(--red), var(--purple));
            color: #fff;
        }

        .form-group {
            margin-bottom: 18px;
        }

        label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: var(--muted);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .input-wrap {
            position: relative;
        }

        .input-wrap svg {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.4;
        }

        input[type=email],
        input[type=password],
        input[type=text] {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 13px 14px 13px 42px;
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
        }

        input:focus {
            border-color: var(--red);
            background: rgba(232, 43, 43, 0.05);
        }

        input::placeholder {
            color: rgba(240, 238, 232, 0.25);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .extras {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .checkbox-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .checkbox-wrap input[type=checkbox] {
            width: auto;
            accent-color: var(--red);
            cursor: pointer;
        }

        .checkbox-wrap span {
            font-size: 13px;
            color: var(--muted);
        }

        .forgot {
            font-size: 13px;
            color: var(--red2);
            text-decoration: none;
        }

        .forgot:hover {
            text-decoration: underline;
        }

        .btn-primary {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--red) 0%, var(--purple) 100%);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.15s;
            letter-spacing: 0.3px;
        }

        .btn-primary:hover {
            opacity: 0.92;
            transform: translateY(-1px);
        }

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

        .divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 24px 0;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .divider span {
            font-size: 12px;
            color: var(--muted);
        }

        .social-btns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .btn-social {
            padding: 11px 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--muted);
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.2s, color 0.2s;
        }

        .btn-social:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text);
        }

        .switch-link {
            text-align: center;
            margin-top: 24px;
            font-size: 13px;
            color: var(--muted);
        }

        .switch-link a {
            color: var(--red2);
            text-decoration: none;
            font-weight: 500;
        }

        .switch-link a:hover {
            text-decoration: underline;
        }

        .text-red {
            color: var(--red2);
            font-size: 12px;
            display: block;
            margin-top: 5px;
        }

        .trust-box {
            background: rgba(232, 43, 43, 0.06);
            border: 1px solid rgba(232, 43, 43, 0.15);
            border-radius: 10px;
            padding: 12px 14px;
            margin-bottom: 20px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .trust-box svg {
            margin-top: 2px;
            flex-shrink: 0;
            color: var(--red2);
        }

        .trust-box p {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.5;
        }

        .trust-box strong {
            color: var(--text);
        }

        /* ── TOP NAV ── */
        .topnav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
            padding: 16px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(16px);
            background: rgba(17, 17, 20, 0.7);
        }

        .nav-links {
            display: flex;
            gap: 28px;
        }

        .nav-links a {
            font-size: 14px;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-register {
            padding: 9px 22px;
            background: transparent;
            border: 1px solid var(--red);
            border-radius: 8px;
            color: var(--red);
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }

        .nav-register:hover {
            background: var(--red);
            color: #fff;
        }

        #register-panel {
            display: none;
        }

        #login-panel {
            display: block;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

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

        @media (max-width: 900px) {
            .topnav {
                padding: 14px 20px;
            }

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

            .hero {
                display: none;
            }

            .form-side {
                padding: 100px 32px 48px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }