
        :root {
            --orange: #F04E1F;
            --black: #1b3c70;
            --white: #FAFAF8;
            --grey-50: #F5F5F2;
            --grey-100: #EBEBЕ7;
            --grey-300: #C8C8C2;
            --grey-500: #888882;
            --grey-700: #444440;
            --blue: #1A6EBF;
            --blue-lt: #EBF3FC;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .06);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, .10), 0 4px 12px rgba(0, 0, 0, .06);
            --radius: 12px;
            --radius-sm: 6px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--white);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2.5rem;
            height: 64px;
            background: rgba(250, 250, 248, .88);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, .07);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: .75rem;
            text-decoration: none;
        }

        .nav-logo img {
            height: 36px;
            border-radius: 4px;
        }

        .nav-logo span {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: .04em;
            color: var(--black);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-links a {
            font-size: .875rem;
            font-weight: 500;
            color: var(--grey-700);
            text-decoration: none;
            transition: color .2s;
        }

        .nav-links a:hover {
            color: var(--black);
        }

        .btn-nav {
            padding: .45rem 1.1rem;
            background: var(--black);
            color: var(--white) !important;
            border-radius: var(--radius-sm);
            font-weight: 600 !important;
            font-size: .85rem !important;
            transition: background .2s, transform .15s !important;
        }

        .btn-nav:hover {
            background: var(--orange) !important;
            transform: translateY(-1px);
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding-top: 64px;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5rem 4rem 5rem 5rem;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            font-family: 'DM Mono', monospace;
            font-size: .75rem;
            font-weight: 500;
            color: var(--orange);
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero-eyebrow::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 2px;
            background: var(--orange);
        }

        h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3.5rem, 6vw, 5.5rem);
            line-height: .95;
            letter-spacing: .02em;
            color: var(--black);
            margin-bottom: 1.5rem;
        }

        h1 em {
            font-style: normal;
            color: var(--orange);
        }

        .hero-sub {
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--grey-500);
            line-height: 1.65;
            max-width: 420px;
            margin-bottom: 2.5rem;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .85rem 1.8rem;
            background: var(--orange);
            color: var(--white);
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            font-size: .95rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform .2s, box-shadow .2s, background .2s;
            box-shadow: 0 4px 20px rgba(240, 78, 31, .3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(240, 78, 31, .4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .85rem 1.8rem;
            background: transparent;
            color: var(--black);
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--grey-300);
            font-family: 'DM Sans', sans-serif;
            font-size: .95rem;
            font-weight: 500;
            text-decoration: none;
            transition: border-color .2s, transform .2s;
        }

        .btn-secondary:hover {
            border-color: var(--black);
            transform: translateY(-2px);
        }

        .hero-right {
            position: relative;
            background: var(--black);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 3.5rem;
            overflow: hidden;
        }

        /* Motif vagues SVG en fond */
        .hero-right::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q20 20 40 40 Q60 60 80 40' stroke='%23ffffff08' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0 60 Q20 40 40 60 Q60 80 80 60' stroke='%23ffffff05' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
            background-size: 80px 80px;
        }

        .hero-right::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(240, 78, 31, .15) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Stats dans la hero-right */
        .hero-stats {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .stat-pill {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--radius);
            backdrop-filter: blur(4px);
            transition: background .2s;
        }

        .stat-pill:hover {
            background: rgba(255, 255, 255, .09);
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            background: var(--orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .stat-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            line-height: 1;
            color: var(--white);
        }

        .stat-label {
            font-size: .78rem;
            color: rgba(255, 255, 255, .45);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: .06em;
        }

        /* Logo flottant */
        .hero-logo-float {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, .08);
        }

        .hero-logo-float img {
            height: 48px;
            opacity: .9;
        }

        .hero-logo-float span {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--white);
            letter-spacing: .04em;
        }

        /* ── SECTION RÉGATES ── */
        .section {
            padding: 6rem 5rem;
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 2.5rem;
        }

        .section-label {
            font-family: 'DM Mono', monospace;
            font-size: .72rem;
            font-weight: 500;
            color: var(--orange);
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: .5rem;
        }

        h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            letter-spacing: .02em;
            color: var(--black);
            line-height: 1;
        }

        .see-all {
            font-size: .875rem;
            font-weight: 500;
            color: var(--grey-500);
            text-decoration: none;
            border-bottom: 1px solid var(--grey-300);
            padding-bottom: 1px;
            transition: color .2s, border-color .2s;
            white-space: nowrap;
        }

        .see-all:hover {
            color: var(--orange);
            border-color: var(--orange);
        }

        .regates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.25rem;
        }

        .regate-card {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, .07);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            box-shadow: var(--shadow-sm);
            transition: transform .22s, box-shadow .22s, border-color .22s;
            position: relative;
            overflow: hidden;
        }

        .regate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease;
        }

        .regate-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .regate-card:hover::before {
            transform: scaleX(1);
        }

        .card-date {
            display: flex;
            align-items: center;
            gap: .75rem;
        }

        .date-block {
            text-align: center;
            background: var(--grey-50);
            border-radius: var(--radius-sm);
            padding: .4rem .7rem;
            min-width: 52px;
            flex-shrink: 0;
        }

        .date-block .day {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.6rem;
            line-height: 1;
            color: var(--black);
        }

        .date-block .month {
            font-size: .65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--grey-500);
        }

        .date-separator {
            color: var(--grey-300);
            font-size: 1rem;
        }

        .card-club {
            font-size: .72rem;
            font-weight: 600;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .card-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--black);
            line-height: 1.3;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: .78rem;
            color: var(--grey-500);
        }

        .card-meta svg {
            width: 13px;
            height: 13px;
            opacity: .6;
        }

        .badge-open {
            margin-left: auto;
            font-size: .68rem;
            font-weight: 600;
            background: #E8F8F0;
            color: #1A7A42;
            padding: .2rem .55rem;
            border-radius: 20px;
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 3rem;
            color: var(--grey-500);
            font-size: .95rem;
        }

        /* ── SECTION BOURSE ── */
        .bourse-section {
            background: var(--black);
            padding: 6rem 5rem;
            position: relative;
            overflow: hidden;
        }

        .bourse-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(240, 78, 31, .12) 0%, transparent 65%);
        }

        .bourse-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: 10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(26, 110, 191, .1) 0%, transparent 65%);
        }

        .bourse-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .bourse-section .section-label {
            color: var(--orange);
        }

        .bourse-section h2 {
            color: var(--white);
        }

        .bourse-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, .5);
            line-height: 1.7;
            margin-top: 1rem;
            font-weight: 300;
        }

        .bourse-cta {
            margin-top: 2rem;
        }

        .bourse-visual {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .bourse-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--radius);
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: background .2s;
        }

        .bourse-card:hover {
            background: rgba(255, 255, 255, .08);
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.1rem;
            color: var(--white);
            flex-shrink: 0;
        }

        .bourse-card-info {
            flex: 1;
        }

        .bourse-card-name {
            font-weight: 600;
            color: var(--white);
            font-size: .9rem;
        }

        .bourse-card-role {
            font-size: .75rem;
            color: rgba(255, 255, 255, .4);
            margin-top: .15rem;
        }

        .tag {
            font-size: .68rem;
            font-weight: 600;
            padding: .2rem .6rem;
            border-radius: 20px;
            background: rgba(240, 78, 31, .2);
            color: var(--orange);
        }

        /* ── FOOTER ── */
        footer {
            border-top: 1px solid rgba(0, 0, 0, .06);
            padding: 2rem 5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: .8rem;
            color: var(--grey-500);
        }

        footer a {
            color: var(--grey-500);
            text-decoration: none;
        }

        footer a:hover {
            color: var(--black);
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-up {
            animation: fadeUp .6s ease both;
        }

        .fade-up-1 {
            animation-delay: .1s;
        }

        .fade-up-2 {
            animation-delay: .22s;
        }

        .fade-up-3 {
            animation-delay: .34s;
        }

        .fade-up-4 {
            animation-delay: .46s;
        }

        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stat-pill {
            animation: floatIn .5s ease both;
        }

        .stat-pill:nth-child(1) {
            animation-delay: .2s;
        }

        .stat-pill:nth-child(2) {
            animation-delay: .35s;
        }

        .stat-pill:nth-child(3) {
            animation-delay: .5s;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .hero-left {
                padding: 4rem 2rem 3rem;
            }

            .hero-right {
                padding: 3rem 2rem 4rem;
            }

            .bourse-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .section {
                padding: 4rem 1.5rem;
            }

            .bourse-section {
                padding: 4rem 1.5rem;
            }

            nav {
                padding: 0 1.5rem;
            }

            footer {
                padding: 1.5rem;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            .nav-links .hide-mobile {
                display: none;
            }

            h1 {
                font-size: 3rem;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
  .footer-ycib { background: #f8fafc; }
.footer-ycib .small-muted:hover { color: var(--marine); }