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

        :root {
            --blue: #4169E1;
            --blue-dark: #385DCF;
            --green: #8AE05E;
            --green-dark: #76C64E;
            --dark: #111111;
            --gray-700: #2a2a2a;
            --gray-600: #444444;
            --gray-500: #555555;
            --gray-400: #888888;
            --gray-200: #e0e0e0;
            --gray-100: #f4f5f7;
            --white: #ffffff;
            --site-gradient: linear-gradient(180deg,
                #E8EFFF 0%,
                rgba(255,255,255,0.98) 20%,
                #EAFFDF 40%,
                rgba(255,255,255,0.98) 60%,
                #E8EFFF 80%,
                #4169E1 100%);
        }

        html {
            scroll-behavior: smooth;
            min-height: 100%;
            background-color: #E8EFFF;
            background-image: var(--site-gradient);
            background-repeat: no-repeat;
            background-size: 100% 1600px;
            background-attachment: fixed;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-700);
            background: transparent;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }

        @media (max-width: 900px) {
            html {
                background-attachment: scroll;
                background-size: 100% 1400px;
            }
        }

        /* ── NAV ── */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 20px 0;
            transition: all 0.4s;
        }

        .nav.scrolled {
            background: rgba(232,239,255,0.7);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            text-decoration: none;
            color: var(--dark);
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
        }

        .logo img { width: 32px; height: 32px; }

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

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

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

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-toggle span {
            display: block;
            width: 20px;
            height: 1.5px;
            background: var(--dark);
            margin: 5px 0;
        }

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

        .hero-content {
            max-width: 1100px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-left {
            text-align: left;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-right-label {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gray-400);
            margin-bottom: 1.25rem;
        }

        .hero-right .hero-testimonial {
            background: var(--dark);
            border-radius: 18px;
            overflow: hidden;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .hero-testimonial img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
        }
        .hero-testimonial-text {
            padding: 1.5rem 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .hero-testimonial-role {
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(255,255,255,0.45);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .hero-testimonial-name {
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
        }
        .hero-testimonial-quote {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.65;
            font-style: italic;
            margin-top: 0.25rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 4.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.035em;
            color: var(--dark);
            margin-bottom: 1.25rem;
        }

        .hero .subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.7;
            max-width: 500px;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        /* ── CHOICE CARDS ── */
        .choices {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            max-width: 520px;
        }

        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-left { text-align: center; }
            .hero .subtitle { margin-left: auto; margin-right: auto; }
            .choices { margin: 0 auto; max-width: 520px; }
            .hero-right { margin-top: 1rem; }
        }

        .choice-card {
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 16px;
            padding: 2.25rem 1.75rem 2rem;
            text-decoration: none;
            color: inherit;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }

        .choice-card:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,0.9);
        }

        .choice-card.teams:hover {
            box-shadow: 0 20px 40px rgba(138,224,94,0.12), 0 0 0 1px rgba(138,224,94,0.15);
        }

        .choice-card.players:hover {
            box-shadow: 0 20px 40px rgba(65,105,225,0.12), 0 0 0 1px rgba(65,105,225,0.15);
        }

        .choice-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
        }

        .teams .choice-icon { background: rgba(138,224,94,0.15); }
        .players .choice-icon { background: rgba(65,105,225,0.1); }

        .choice-card h2 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
            letter-spacing: -0.01em;
        }

        .choice-card p {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.65;
            margin-bottom: 1.5rem;
        }

        .choice-cta {
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            transition: gap 0.25s;
        }

        .teams .choice-cta { color: var(--green-dark); }
        .players .choice-cta { color: var(--blue); }

        .choice-card:hover .choice-cta { gap: 0.65rem; }

        /* ── DEMO BUTTON ── */
        .demo-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2.5rem;
            padding: 0.8rem 1.75rem;
            background: var(--blue);
            color: white;
            border: none;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(65,105,225,0.25);
        }

        .demo-btn:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(65,105,225,0.3);
        }

        /* ── TESTIMONIAL BANNER ── */
        .testimonial-banner {
            max-width: 720px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
        }
        .testimonial-card {
            display: flex;
            align-items: stretch;
            background: var(--dark);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .testimonial-card img {
            width: 280px;
            min-height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }
        .testimonial-text {
            padding: 2rem 2.25rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.75rem;
        }
        .testimonial-name {
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
        }
        .testimonial-role {
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .testimonial-quote {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.7;
            font-style: italic;
        }
        @media (max-width: 700px) {
            .testimonial-card { flex-direction: column; }
            .testimonial-card img { width: 100%; height: 200px; }
            .testimonial-text { padding: 1.5rem; }
        }

        /* ── MODAL ── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal-overlay.open {
            display: flex;
        }

        .modal {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 520px;
            width: 100%;
            position: relative;
            box-shadow: 0 32px 64px rgba(0,0,0,0.2);
            animation: modalIn 0.25s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.95) translateY(10px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(0,0,0,0.08);
            background: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-500);
            font-size: 1.1rem;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--gray-100);
            color: var(--dark);
        }

        .modal h2 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
            color: var(--dark);
            letter-spacing: -0.02em;
        }

        .modal > p {
            color: var(--gray-500);
            margin-bottom: 1.75rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .inquiry-form {
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
        }

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

        .form-group {
            margin-bottom: 0.75rem;
        }

        .form-group.full { grid-column: 1 / -1; }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 0.35rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.65rem 0.85rem;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.9rem;
            color: var(--dark);
            background: var(--white);
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(65,105,225,0.08);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #bbb;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-submit {
            width: 100%;
            padding: 0.75rem;
            background: var(--blue);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            margin-top: 0.25rem;
        }

        .form-submit:hover {
            background: var(--blue-dark);
            transform: translateY(-1px);
        }

        .form-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--gray-400);
            margin-top: 1rem;
        }

        .modal-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--gray-400);
            margin-top: 1rem;
        }

        /* ── FOOTER ── */
        .footer {
            background: var(--gray-700);
            color: var(--white);
            padding: 3.5rem 2rem 2rem;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 0.75rem;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: #aaa;
            line-height: 1.65;
        }

        .footer-col h4 {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1rem;
            color: #ccc;
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.45rem; }

        .footer-col a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-col a:hover { color: var(--green); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            font-size: 0.8rem;
            color: #aaa;
        }

        /* ── MOBILE MENU ── */
        .mobile-menu {
            display: none;
            flex-direction: column;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0.5rem 0;
            border-top: 1px solid rgba(0,0,0,0.04);
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            padding: 0.9rem 2rem;
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s;
        }
        .mobile-menu a:hover { background: rgba(0,0,0,0.03); }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .hero { padding: 7rem 1.5rem 4rem; }
            .choices { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
            .form-row { grid-template-columns: 1fr; }
            .modal { padding: 1.75rem; margin: 1rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2.25rem; }
            .hero .subtitle { font-size: 1rem; margin-bottom: 3rem; }
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* ── FADE-IN ── */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.7s ease forwards;
        }

        .fade-up-d1 { animation-delay: 0.1s; }
        .fade-up-d2 { animation-delay: 0.25s; }
        .fade-up-d3 { animation-delay: 0.4s; }

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