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

        :root {
            --navy: #0D2B5E;
            --pink: #e82987;
            --saffron: #FF9933;
            --green: #138808;
            --bg: #f4f7f6;
            --card: rgba(255, 255, 255, 0.85);
            --text: #2d3748;
            --muted: #718096;
            --glass-border: rgba(255, 255, 255, 0.4);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
            color: var(--text);
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }

        .top-bar {
            background: var(--navy);
            padding: 18px 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px
        }

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

        .top-bar .brand-text {
            font-size: 9px;
            font-weight: 700;
            color: rgba(255, 255, 255, .8);
            letter-spacing: 1.6px;
            text-transform: uppercase;
            line-height: 1.7
        }

        .top-bar .pitch-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--saffron);
            background: rgba(255, 153, 51, .12);
            padding: 6px 14px;
            border-radius: 4px
        }

        .hero-stats {
            background: linear-gradient(135deg, var(--navy) 0%, #162d5c 100%);
            padding: 50px 2rem 55px;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .hero-stats::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--saffron) 33.3%, #fff 33.3%, #fff 66.6%, var(--green) 66.6%)
        }

        .hero-stats h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px
        }

        .hero-stats .sub {
            font-size: 15px;
            color: rgba(255, 255, 255, .7);
            margin-bottom: 36px
        }

        .stat-row {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap
        }

        .stat-item {
            text-align: center
        }

        .stat-item .num {
            font-size: 38px;
            font-weight: 700;
            color: #fff;
            line-height: 1
        }

        .stat-item .num .accent {
            color: var(--saffron)
        }

        .stat-item .label {
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, .5);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 6px
        }

        .controls {
            max-width: 1140px;
            margin: 0 auto;
            padding: 28px 20px 0;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap
        }

        .search-box {
            flex: 1;
            min-width: 250px;
            position: relative
        }

        .search-box input {
            width: 100%;
            padding: 14px 18px 14px 48px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            outline: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            border-color: var(--pink);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(232, 41, 135, 0.15);
        }

        .search-box svg {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            stroke: #999;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

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

        .pill {
            padding: 10px 20px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--muted);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: inherit;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        .pill:hover {
            background: #fff;
            color: var(--navy);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(13, 43, 94, 0.08);
        }

        .pill.active {
            background: linear-gradient(135deg, var(--navy), #1a3f7a);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(13, 43, 94, 0.2);
        }

        .result-count {
            font-size: 13px;
            color: var(--muted);
            padding: 12px 20px 0;
            max-width: 1140px;
            margin: 0 auto
        }

        .grid {
            max-width: 1140px;
            margin: 20px auto 60px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px
        }

        .card {
            background: var(--card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 24px 24px 20px;
            position: relative;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: cardIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255,255,255,0.5);
            overflow: hidden;
            /* Fix button position */
            display: flex;
            flex-direction: column;
            will-change: transform;
        }

        .card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(13, 43, 94, 0.12), inset 0 0 0 1px rgba(255,255,255,0.8);
            border-color: rgba(232, 41, 135, 0.3);
        }

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

        .card .badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, #0D2B5E, #1a3f7a);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .8px;
            padding: 5px 10px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 5px
        }

        .card .badge .flag {
            font-size: 13px
        }

        .card .initials {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
            color: #fff
        }

        .card .name {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
            padding-right: 70px
        }

        .card .meta {
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
        }

        .card .meta-row {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            line-height: 1.4
        }

        .card .meta-row svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            margin-top: 1px;
            stroke: var(--pink);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

        .card .tribar {
            display: flex;
            height: 3px;
            width: 40px;
            border-radius: 2px;
            overflow: hidden;
            margin-top: 14px
        }

        .card .tribar span {
            flex: 1
        }

        .card .tribar .a {
            background: var(--saffron)
        }

        .card .tribar .b {
            background: #ccc
        }

        .card .tribar .c {
            background: var(--green)
        }

        .card .register-btn {
            width: 100%;
            margin-top: 16px;
            padding: 10px 16px;
            background: transparent;
            color: var(--navy);
            border: 1.5px solid var(--navy);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            letter-spacing: 0.3px;
            will-change: transform;
        }

        .card .register-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .card .register-btn:hover {
            background: var(--navy);
            color: #fff;
            border-color: var(--navy);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(13, 43, 94, 0.2);
        }

        .card .register-btn:hover::after {
            transform: translateX(4px);
        }

        .card .register-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(13, 43, 94, 0.15);
        }

        .no-results {
            grid-column: 1/-1;
            text-align: center;
            padding: 60px 20px;
            color: var(--muted);
            font-size: 15px
        }

        .pitch-note {
            max-width: 700px;
            margin: 0 auto 50px;
            padding: 24px 28px;
            background: #fff;
            border: 1.5px dashed #d0cec8;
            border-radius: 10px;
            text-align: center
        }

        .pitch-note h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px
        }

        .pitch-note p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7
        }

        .pitch-note .tag {
            display: inline-block;
            background: rgba(232, 41, 135, .08);
            color: var(--pink);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: 12px
        }

        .sync-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 8px 20px;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            z-index: 100;
            transition: transform .4s, opacity .4s;
            font-family: inherit
        }

        .sync-bar.syncing {
            background: #FFF3CD;
            color: #856404;
            transform: translateY(0)
        }

        .sync-bar.synced {
            background: #D4EDDA;
            color: #155724;
            transform: translateY(0)
        }

        .sync-bar.hidden {
            transform: translateY(100%);
            opacity: 0
        }

        @media(max-width:640px) {
            .hero-stats h1 {
                font-size: 30px
            }

            .stat-row {
                gap: 28px
            }

            .stat-item .num {
                font-size: 30px
            }

            .controls {
                flex-direction: column
            }

            .search-box {
                min-width: 100%
            }

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

            .top-bar {
                padding: 14px 1rem
            }
        }

        /* ═══ REGISTRATION VERIFICATION MODAL ═══ */
        .reg-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .reg-modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .reg-modal {
            background: #fff;
            border-radius: 16px;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 20px 60px rgba(13, 43, 94, 0.25);
            position: relative;
            animation: regModalSlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        @keyframes regModalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .reg-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border: none;
            background: transparent;
            font-size: 24px;
            color: var(--muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s ease;
            z-index: 10;
        }

        .reg-modal-close:hover {
            color: var(--navy);
        }

        .reg-modal-content {
            padding: 40px 32px;
            text-align: center;
            animation: regContentFadeIn 0.3s ease;
        }

        @keyframes regContentFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .reg-modal-content h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .reg-registering-as {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 24px;
            padding: 12px;
            background: rgba(255, 153, 51, 0.05);
            border-radius: 8px;
        }

        .reg-registering-as strong {
            color: var(--navy);
            font-weight: 600;
        }

        .reg-form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .reg-form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        .reg-form-group input {
            width: 100%;
            padding: 12px 14px;
            border: 1.5px solid rgba(13, 43, 94, 0.2);
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .reg-form-group input:focus {
            outline: none;
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(13, 43, 94, 0.1);
        }

        .reg-btn-primary {
            width: 100%;
            padding: 12px 16px;
            background: linear-gradient(135deg, var(--navy) 0%, #1a3f7a 100%);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .reg-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(13, 43, 94, 0.25);
        }

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

        .reg-help-text {
            font-size: 12px;
            color: var(--muted);
            margin-top: 16px;
        }

        .reg-loader {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .reg-spinner {
            width: 48px;
            height: 48px;
            border: 3px solid rgba(13, 43, 94, 0.1);
            border-top-color: var(--navy);
            border-radius: 50%;
            animation: regSpin 0.8s linear infinite;
        }

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

        .reg-loading-text {
            font-size: 14px;
            color: var(--muted);
            font-weight: 500;
        }

        .reg-status-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 32px;
        }

        .reg-status-icon.success {
            background: linear-gradient(135deg, rgba(19, 136, 8, 0.15) 0%, rgba(19, 136, 8, 0.05) 100%);
            color: var(--green);
            animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes slideInScale {
            0% {
                transform: scale(0.5) translateY(-20px);
                opacity: 0;
            }
            100% {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .animated-checkmark svg {
            width: 48px;
            height: 48px;
        }

        .animated-checkmark .circle-bg {
            animation: circleGrow 0.6s ease-out forwards;
        }

        .animated-checkmark .checkmark-path {
            animation: checkmarkDraw 0.6s ease-out 0.3s forwards;
            stroke-dasharray: 8;
            stroke-dashoffset: 8;
        }

        @keyframes circleGrow {
            0% {
                stroke-dasharray: 60;
                stroke-dashoffset: 60;
            }
            100% {
                stroke-dasharray: 60;
                stroke-dashoffset: 0;
            }
        }

        @keyframes checkmarkDraw {
            0% {
                stroke-dashoffset: 8;
            }
            100% {
                stroke-dashoffset: 0;
            }
        }

        .reg-status-icon.error {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }

        .reg-status-icon svg {
            width: 32px;
            height: 32px;
        }

        .reg-success-title {
            animation: fadeInDown 0.6s ease-out 0.2s both;
        }

        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-15px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reg-success-details {
            background: linear-gradient(135deg, rgba(13, 43, 94, 0.08) 0%, rgba(19, 136, 8, 0.04) 100%);
            border-radius: 12px;
            padding: 18px;
            margin: 22px 0;
            text-align: left;
            border-left: 4px solid var(--green);
            animation: slideInUp 0.6s ease-out 0.3s both;
        }

        @keyframes slideInUp {
            0% {
                opacity: 0;
                transform: translateY(15px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reg-detail-row {
            font-size: 13px;
            color: var(--text);
            margin: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(13, 43, 94, 0.06);
            animation: fadeInLeft 0.6s ease-out both;
        }

        .reg-detail-row:last-child {
            border-bottom: none;
        }

        .reg-detail-row:nth-child(1) {
            animation-delay: 0.4s;
        }

        .reg-detail-row:nth-child(2) {
            animation-delay: 0.5s;
        }

        .reg-detail-row:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes fadeInLeft {
            0% {
                opacity: 0;
                transform: translateX(-10px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .reg-label {
            font-weight: 700;
            color: var(--navy);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .reg-value {
            font-weight: 500;
            color: #1a1a1a;
            text-align: right;
            flex: 1;
            margin-left: 12px;
        }

        .pulse-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            margin-right: 6px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        .reg-btn-success {
            width: 100%;
            padding: 13px 16px;
            background: linear-gradient(135deg, var(--saffron) 0%, #d97e1f 100%);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            animation: fadeInUp 0.6s ease-out 0.7s both;
            box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
            transition: all 0.3s ease;
            transition: all 0.3s ease;
            margin: 16px 0;
        }

        .reg-btn-success:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 153, 51, 0.3);
        }

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

        .reg-btn-secondary {
            width: 100%;
            padding: 12px 16px;
            background: transparent;
            color: var(--navy);
            border: 1.5px solid var(--navy);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s ease;
            margin-top: 12px;
        }

        .reg-btn-secondary:hover {
            background: var(--navy);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(13, 43, 94, 0.2);
        }

        .reg-error-message {
            font-size: 13px;
            color: var(--text);
            margin: 16px 0;
            line-height: 1.6;
        }

        .reg-free-text {
            font-size: 12px;
            color: var(--green);
            margin-top: 16px;
            font-weight: 500;
            text-align: center;
            animation: fadeInUp 0.6s ease-out 0.8s both;
        }

        .reg-hidden {
            display: none !important;
        }

        @media (max-width: 640px) {
            .reg-modal {
                max-width: calc(100% - 40px);
            }

            .reg-modal-content {
                padding: 32px 20px;
            }

            .reg-modal-content h2 {
                font-size: 18px;
            }
        }
