:root {
      --blue: #006186;
      --orange: #E84E24;
      --emerald: #38B5AA;
      --fuchsia: #E5006A;
      --brand-primary: #E84E24;
      --brand-cyan: #36ACC0;
      --brand-lime: #DDDE33;
      --brand-green: #20A078;
      --brand-pink: #F4ACBC;
      --dark: #071C28;
      --text: #0f172a;
      --muted: #64748b;
      --light: #f8fafc;
      --border: #e2e8f0;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background: #fff;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-mark {
      position: relative;
      width: 48px;
      height: 48px;
      border-radius: 18px;
      background: white;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      border: 1px solid var(--border);
    }

    .brand-mark span {
      position: absolute;
      display: block;
      border-radius: 999px;
    }

    .brand-mark .dot-orange {
      width: 15px;
      height: 15px;
      background: var(--orange);
      left: 27px;
      top: 8px;
    }

    .brand-mark .dot-emerald {
      width: 13px;
      height: 13px;
      background: var(--emerald);
      left: 12px;
      top: 27px;
    }

    .brand-mark .dot-fuchsia {
      width: 13px;
      height: 13px;
      background: var(--fuchsia);
      left: 28px;
      top: 29px;
    }

    .brand-title {
      font-weight: 950;
      line-height: 0.82;
      color: var(--blue);
      letter-spacing: -0.04em;
      font-size: 21px;
    }

    .brand-subtitle {
      margin-top: 8px;
      font-size: 9px;
      font-weight: 800;
      color: var(--muted);
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 14px;
      font-weight: 750;
      color: #334155;
      margin-left: auto;
    }

    .menu a {
      white-space: nowrap;
      position: relative;
      padding-bottom: 6px;
    }

    .menu a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--orange);
      transition: width 0.2s ease;
    }

    .menu a:hover::after {
      width: 100%;
    }

    .menu a:hover {
      color: var(--blue);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      background: none;
      border: none;
      font-size: 14px;
      font-weight: 750;
      color: #334155;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0;
      font-family: inherit;
    }

    .nav-dropdown-toggle:hover {
      color: var(--blue);
    }

    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
      padding: 8px;
      padding-top: 24px;
      min-width: 230px;
      z-index: 30;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      display: flex;
      flex-direction: column;
    }

    .nav-dropdown-menu a {
      padding: 10px 16px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 750;
      color: #334155;
      transition: background 0.15s ease, color 0.15s ease;
      white-space: nowrap;
    }

    .nav-dropdown-menu a:hover {
      background: var(--light);
      color: var(--blue);
    }

    .nav-actions {
      display: flex;
      gap: 12px;
    }

    .site-switcher {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    .site-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px 6px;
      transition: opacity 0.2s ease, transform 0.15s ease;
    }

    .site-pill img {
      height: 40px;
      width: 40px;
      object-fit: contain;
      display: block;
    }

    .site-pill:hover {
      opacity: 0.7;
      transform: translateY(-1px);
    }
    .brand-logo {

  height: 72px;

  width: auto;

  object-fit: contain;

}

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 850;
      border: 1px solid transparent;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--blue);
      color: white;
      box-shadow: 0 16px 30px rgba(0, 97, 134, 0.2);
    }

    .btn-outline {
      background: white;
      color: var(--text);
      border-color: var(--border);
    }

    .mobile-menu {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: white;
      font-size: 22px;
    }

    section {
      scroll-margin-top: 90px;
    }

    .section {
      padding: 110px 0;
    }

    .home-hero {
      padding: 126px 0 36px;
      background:
        radial-gradient(circle at 12% 28%, rgba(244, 172, 188, 0.42), transparent 24%),
        radial-gradient(circle at 86% 10%, rgba(221, 222, 51, 0.34), transparent 22%),
        linear-gradient(180deg, rgba(232, 78, 36, 0.08) 0%, rgba(255, 255, 255, 0) 72%);
    }

    .home-hero-media {
      position: relative;
      min-height: clamp(360px, 54vw, 620px);
      overflow: hidden;
      border-radius: 18px;
      background:
        radial-gradient(circle at 18% 18%, rgba(244, 172, 188, 0.9), transparent 24%),
        linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-lime) 30%, var(--brand-cyan) 62%, var(--brand-green) 100%);
      box-shadow: 0 28px 90px rgba(232, 78, 36, 0.18);
      isolation: isolate;
    }

    /*.home-hero-media::before {
      content: "";
      position: absolute;
      inset: auto 34px 34px auto;
      z-index: 2;
      width: min(34%, 360px);
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-lime), var(--brand-pink), var(--brand-cyan));
      opacity: 0.95;
    }*/

    .home-hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(7, 28, 40, 0.76) 0%, rgba(7, 28, 40, 0.32) 45%, rgba(7, 28, 40, 0.04) 100%),
        linear-gradient(180deg, rgba(232, 78, 36, 0.18), rgba(32, 160, 120, 0.14)),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 44px);
    }

    .home-hero-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.72;
      filter: saturate(1.08) contrast(1.02);
      mix-blend-mode: multiply;
    }

    .home-hero-overlay {
      position: absolute;
      left: clamp(28px, 7vw, 82px);
      bottom: clamp(30px, 7vw, 86px);
      z-index: 2;
      max-width: 660px;
      color: white;
    }

    .home-hero-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 16px;
      padding: 0 14px;
      border-radius: 999px;
      background: var(--brand-primary);
      box-shadow: 0 10px 24px rgba(232, 78, 36, 0.28);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: white;
    }

    .home-hero h1 {
      font-size: 112px;
      line-height: 0.86;
      letter-spacing: 0;
      font-weight: 950;
      text-shadow: 0 14px 36px rgba(7, 28, 40, 0.34);
    }

    .home-hero p:not(.home-hero-kicker) {
      max-width: 520px;
      margin-top: 22px;
      padding-left: 18px;
      border-left: 6px solid var(--brand-lime);
      font-size: 21px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.92);
      font-weight: 700;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 0;
      padding: 0 14px;
      border-radius: 999px;
      background: var(--brand-primary);
      box-shadow: 0 10px 24px rgba(232, 78, 36, 0.18);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: white;
    }

    .competitions, .services {
      position: relative;
      padding: 110px 0;
      background: var(--blue);
      color: white;
      overflow: hidden;
    }

    .services::before {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 420px;
      height: 420px;
      background: rgba(56, 181, 170, 0.18);
      border-radius: 999px;
      filter: blur(50px);
    }

    .services-grid {
      position: relative;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .services .section-label {
      color: rgba(255,255,255,0.5);
    }

    .services p {
      margin-top: 28px;
      color: rgba(255,255,255,0.66);
      font-size: 18px;
      line-height: 1.8;
      max-width: 560px;
    }

    .services-box {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 28px;
      padding: 38px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 48px;
    }

    .service-item {
      text-align: center;
    }

    .service-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
      font-size: 24px;
    }

    .service-item span {
      display: block;
      color: rgba(255,255,255,0.78);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 800;
    }

    .figures-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 34px;
    }

    .figure {
      border-top: 1px solid var(--border);
      padding-top: 32px;
    }

    .figure strong {
      display: block;
      color: #ffffff,
      font-size: 52px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -0.05em;
    }

    .figure span {
      display: block;
      margin-top: 14px;
      color: var(--muted);
      font-weight: 800;
    }

    .news {
      background: var(--light);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 30px;
      margin-bottom: 52px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .news-card {
      overflow: hidden;
      border-radius: 34px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
      transition: 0.25s ease;
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    }

    .news-image {
      height: 220px;
      background-size: cover;
      background-position: center;
      /*filter: grayscale(1);*/
      transition: 0.3s ease;
    }

    .news-card:hover .news-image {
      filter: grayscale(0);
      transform: scale(1.03);
    }

    .news-content {
      padding: 26px;
    }

    .tag {
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      color: white;
      font-size: 11px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .news-card h3 {
      margin-top: 18px;
      font-size: 23px;
      line-height: 1.15;
      letter-spacing: -0.03em;
      font-weight: 950;
    }

    .news-card time {
      display: block;
      margin-top: 18px;
      color: #94a3b8;
      font-size: 14px;
      font-weight: 700;
    }

    .club-search {
      position: relative;
      padding: 120px 0;
      color: white;
      overflow: hidden;
      background: linear-gradient(rgba(7,28,40,0.72), rgba(7,28,40,0.72)), url("https://images.unsplash.com/photo-1622163642998-1ea32b0bbc67?auto=format&fit=crop&w=1800&q=80") center/cover;
    }

    .club-search .section-label {
      color: rgba(255,255,255,0.55);
    }

    .club-search p {
      margin-top: 24px;
      max-width: 560px;
      color: rgba(255,255,255,0.74);
      font-size: 18px;
      line-height: 1.8;
    }

    .search-box {
      margin-top: 38px;
      max-width: 480px;
      display: flex;
      align-items: center;
      gap: 10px;
      background: white;
      border-radius: 999px;
      padding: 8px;
    }

    .search-box input {
      flex: 1;
      border: 0;
      outline: 0;
      padding: 0 16px;
      font-size: 15px;
      color: var(--text);
    }

    .footer {
      padding: 70px 0 34px;
      background: white;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 48px;
    }

    .footer p {
      max-width: 360px;
      color: var(--muted);
      line-height: 1.8;
      margin-top: 24px;
    }

    .footer h4 {
      margin-bottom: 20px;
      color: var(--blue);
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .footer ul {
      list-style: none;
    }

    .footer li {
      margin-bottom: 12px;
      color: #475569;
      font-weight: 700;
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .socials a {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-weight: 900;
    }

    .copyright {
      margin-top: 52px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #94a3b8;
      font-size: 13px;
      font-weight: 700;
    }

    /* ── Sections homepage ── */

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 16px;
      margin-top: 40px;
      background: var(--light);
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .downloads-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

    .download-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 18px 24px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: white;
      color: var(--text);
      font-weight: 700;
      font-size: 15px;
      transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    }

    .download-link:hover {
      border-color: var(--blue);
      box-shadow: 0 8px 24px rgba(0, 97, 134, 0.1);
      transform: translateY(-2px);
    }

    @media (max-width: 1024px) {
      .menu,
      .nav-actions {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .header.menu-open .menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 24px 28px;
        gap: 20px;
        z-index: 19;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
      }

      .header.menu-open .nav-actions {
        display: flex;
        padding: 0 28px 24px;
        position: absolute;
        top: auto;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        z-index: 19;
      }

      .nav-dropdown .nav-dropdown-menu {
        display: none;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light);
        border-radius: 12px;
        padding: 8px;
        margin-top: 4px;
        min-width: unset;
        width: 100%;
      }

      .nav-dropdown.dropdown-open .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
      }

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

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

      .services-box {
        grid-template-columns: repeat(2, 1fr);
      }

      .home-hero h1 {
        font-size: 86px;
      }

     


      .figures-grid,
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .home-hero {
        padding-top: 110px;
      }

      .home-hero-media {
        min-height: 460px;
        border-radius: 14px;
      }

      .home-hero-media::before {
        left: 24px;
        right: 24px;
        bottom: 22px;
        width: auto;
        height: 7px;
      }

      .home-hero-media::after {
        background:
          linear-gradient(180deg, rgba(7, 28, 40, 0.18) 0%, rgba(7, 28, 40, 0.88) 100%),
          linear-gradient(180deg, rgba(232, 78, 36, 0.18), rgba(32, 160, 120, 0.16)),
          repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 38px);
      }

      .home-hero-image {
        object-fit: cover;
        object-position: center 28%;
        opacity: 0.7;
      }

      .home-hero-overlay {
        left: 24px;
        right: 24px;
        bottom: 48px;
      }

      .home-hero h1 {
        font-size: 58px;
      }

      .home-hero p:not(.home-hero-kicker) {
        font-size: 17px;
      }

      .copyright {
        align-items: flex-start;
        flex-direction: column;
      }

      .services-box,
      .figures-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .search-box {
        border-radius: 28px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-box input {
        min-height: 48px;
      }

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

    /* Pages internes — commun */

    .page-hero {
      padding: 155px 0 90px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 34px;
    }

    .breadcrumbs a { color: var(--blue); }

    .page-title {
      max-width: 820px;
      font-size: clamp(52px, 7vw, 96px);
      line-height: 0.92;
      letter-spacing: -0.07em;
      font-weight: 950;
      margin-bottom: 24px;
    }

    .page-title span { color: var(--blue); }

    .page-intro {
      max-width: 620px;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.8;
    }

    .cta-section {
      padding: 80px 0;
      background: var(--light);
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      padding: 52px;
      border-radius: 44px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    }

    .cta-box h2 {
      font-size: clamp(32px, 4vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.05em;
      font-weight: 950;
      color: var(--blue);
    }

    .cta-box p {
      max-width: 560px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }

    /* Page de contenu */

    .content-section {
      padding: 90px 0 110px;
    }

    .article {
      max-width: 780px;
      margin: 0 auto;
    }

    .article h2 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -0.05em;
      font-weight: 950;
      margin-top: 64px;
      margin-bottom: 20px;
    }

    .article h2:first-child { margin-top: 0; }

    .article p {
      color: #475569;
      font-size: 18px;
      line-height: 1.85;
      margin-bottom: 22px;
    }

    .article ul {
      display: grid;
      gap: 12px;
      margin: 20px 0 30px;
      list-style: none;
    }

    .article li {
      position: relative;
      padding-left: 28px;
      color: #475569;
      font-size: 17px;
      line-height: 1.65;
      font-weight: 650;
    }

    .article li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--emerald);
    }

    .highlight-box {
      margin: 52px 0;
      padding: 38px;
      border-radius: 36px;
      background: var(--dark);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .highlight-box::after {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 240px;
      height: 240px;
      border-radius: 999px;
      background: rgba(56, 181, 170, 0.22);
      filter: blur(36px);
    }

    .highlight-box strong {
      position: relative;
      z-index: 1;
      display: block;
      font-size: 28px;
      line-height: 1.2;
      letter-spacing: -0.04em;
      font-weight: 950;
      margin-bottom: 14px;
    }

    .highlight-box p {
      position: relative;
      z-index: 1;
      color: rgba(255,255,255,0.72);
      margin-bottom: 0;
    }

    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 56px 0;
    }

    /* Page partenaires */

    .partners-section {
      padding: 90px 0 110px;
    }

    .partners-category {
      margin-bottom: 72px;
    }

    .category-label {
      color: var(--blue);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-weight: 950;
      margin-bottom: 36px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .logo-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 36px 28px;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: white;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .logo-card:hover {
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
      transform: translateY(-3px);
    }

    .logo-card img {
      max-height: 52px;
      max-width: 140px;
      width: auto;
      object-fit: contain;
      filter: grayscale(1);
      opacity: 0.7;
      transition: filter 0.2s ease, opacity 0.2s ease;
    }

    .logo-card:hover img {
      filter: grayscale(0);
      opacity: 1;
    }

    .logo-card-name {
      margin-top: 16px;
      font-size: 13px;
      font-weight: 800;
      color: var(--muted);
      text-align: center;
    }

    @media (max-width: 1024px) {
      .cta-box { grid-template-columns: 1fr; }
      .logo-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 640px) {
      .cta-box { padding: 30px; }
      .logo-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* Reference-inspired Mon Tennis homepage */

    body {
      background:
        radial-gradient(circle at 8% 76%, rgba(232, 78, 36, 0.16), transparent 26%),
        radial-gradient(circle at 88% 73%, rgba(32, 160, 120, 0.18), transparent 28%),
        #ffffff;
    }

    .container {
      width: min(1120px, calc(100% - 48px));
    }

    .header {
      top: 16px;
      left: 0;
      right: 0;
      background: transparent;
      border-bottom: 0;
      backdrop-filter: none;
      pointer-events: none;
    }

    .nav {
      height: 76px;
      padding: 0 18px 0 12px;
      gap: 18px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.78);
      box-shadow: 0 18px 50px rgba(7, 28, 40, 0.16);
      pointer-events: auto;
    }

    .nav > a:first-child {
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: stretch;
      min-width: 222px;
      padding: 0 20px;
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 10px 24px rgba(7, 28, 40, 0.08);
    }

    .brand-logo {
      height: 68px;
    }

    .menu {
      gap: 18px;
      color: #111827;
      font-size: 12px;
      font-weight: 800;
    }

    .menu a {
      padding-bottom: 0;
    }

    .menu a::after {
      display: none;
    }

    .menu a:hover {
      color: var(--brand-primary);
    }

    .nav-actions {
      margin-left: 2px;
    }

    .site-switcher {
      gap: 4px;
    }

    .contact-icon-button {
      display: grid;
      width: 46px;
      height: 46px;
      margin-left: 8px;
      place-items: center;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.12);
      box-shadow: 0 8px 20px rgba(7, 28, 40, 0.12);
      color: #111827;
      transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
      flex: 0 0 auto;
    }

    .contact-icon-button svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-icon-button:hover {
      color: var(--brand-primary);
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(7, 28, 40, 0.16);
    }

    .btn {
      min-height: 42px;
      padding: 0 26px;
      border-radius: 999px;
      font-size: 13px;
      text-transform: none;
      box-shadow: none;
    }

    .btn-outline {
      min-width: 112px;
      background: #ffffff;
      border-color: rgba(15, 23, 42, 0.12);
      box-shadow: 0 8px 20px rgba(7, 28, 40, 0.12);
    }

    .btn-primary {
      margin-top: 24px;
      min-height: 56px;
      padding: 0 34px;
      background: #f26f22;
      color: #ffffff;
      font-size: 15px;
      font-weight: 950;
      text-transform: uppercase;
      box-shadow: 0 16px 30px rgba(232, 78, 36, 0.26);
    }

    .home-hero {
      padding: 18px 0 54px;
      background: transparent;
    }

    .home-hero-media {
      min-height: 632px;
      border-radius: 18px;
      background: #06251f;
      box-shadow: none;
    }

    .home-hero-media::after {
      background:
        linear-gradient(90deg, rgba(3, 17, 15, 0.78) 0%, rgba(3, 17, 15, 0.44) 43%, rgba(3, 17, 15, 0.06) 72%),
        linear-gradient(180deg, rgba(3, 17, 15, 0.18), rgba(3, 17, 15, 0.08));
    }

    .home-hero-image {
      opacity: 1;
      mix-blend-mode: normal;
      filter: saturate(1.04) contrast(1.04);
      object-position: center center;
    }

    .home-hero-overlay {
      left: 78px;
      bottom: 105px;
      max-width: 610px;
    }

    .home-hero h1 {
      max-width: 520px;
      font-size: 94px;
      line-height: 0.92;
      letter-spacing: 0;
      text-transform: uppercase;
      text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    }

    .home-hero p:not(.home-hero-kicker) {
      max-width: 480px;
      margin-top: 18px;
      padding-left: 0;
      border-left: 0;
      font-size: 20px;
      line-height: 1.35;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.96);
    }

    .resources-section {
      padding: 58px 0 72px;
      background:
        radial-gradient(circle at 8% 92%, rgba(232, 78, 36, 0.18), transparent 28%),
        radial-gradient(circle at 96% 88%, rgba(32, 160, 120, 0.2), transparent 28%),
        #ffffff;
    }

    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 52px 32px;
      max-width: 940px;
    }

    .resource-card {
      position: relative;
      padding: 12px 12px 22px;
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.14);
      scroll-margin-top: 112px;
    }

    .section-label {
      position: absolute;
      left: 0;
      top: -35px;
      z-index: 2;
      min-height: 36px;
      padding: 0 18px 0 54px;
      border-radius: 0 12px 0 0;
      background: #ed6b23;
      box-shadow: none;
      color: #ffffff;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: none;
      clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 0 100%);
    }

    .section-label span {
      position: absolute;
      left: 0;
      top: 0;
      display: grid;
      width: 42px;
      height: 36px;
      place-items: center;
      background: #16804f;
      font-size: 24px;
      font-weight: 950;
      line-height: 1;
      clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }

    .resource-card .video-wrapper {
      margin-top: 0;
      border-radius: 8px;
      background: #08251f;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .resource-content {
      padding: 18px 14px 0;
    }

    .resource-content h2 {
      font-size: 21px;
      line-height: 1.2;
      font-weight: 950;
      color: #111111;
    }

    .resource-card .downloads-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 14px;
    }

    .download-link {
      min-height: 39px;
      padding: 0;
      gap: 10px;
      border: 0;
      border-radius: 0;
      border-bottom: 1px solid #e5e7eb;
      background: transparent;
      color: #111111;
      font-size: 14px;
      font-weight: 650;
      box-shadow: none;
    }

    .download-link:hover {
      border-color: #e5e7eb;
      color: var(--brand-primary);
      box-shadow: none;
      transform: none;
    }

    .download-link span {
      position: relative;
      width: 18px;
      height: 18px;
      border: 2px solid #c76c28;
      border-radius: 4px;
      flex: 0 0 auto;
    }

    .download-link span::before,
    .download-link span::after {
      content: "";
      position: absolute;
      left: 3px;
      right: 3px;
      height: 2px;
      background: #c76c28;
    }

    .download-link span::before {
      top: 5px;
    }

    .download-link span::after {
      top: 10px;
    }

    .footer {
      padding: 42px 0 28px;
      background: #ffffff;
    }

    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 54px;
    }

    .footer h4 {
      margin-bottom: 16px;
      color: #111111;
      font-size: 14px;
      font-weight: 950;
      letter-spacing: 0;
    }

    .footer li {
      margin-bottom: 10px;
      color: #111111;
      font-size: 14px;
      font-weight: 550;
    }

    .socials {
      margin-top: 0;
    }

    .socials a {
      width: 26px;
      height: 26px;
      border: 0;
      background: #111111;
      color: #ffffff;
      font-size: 10px;
      text-transform: uppercase;
    }

    .copyright {
      margin-top: 44px;
      color: #111111;
      font-weight: 500;
    }

    @media (max-width: 1024px) {
      .header {
        top: 12px;
      }

      .nav {
        height: 68px;
        gap: 16px;
      }

      .nav > a:first-child {
        min-width: 190px;
        padding: 0 14px;
      }

      .brand-logo {
        height: 58px;
      }

      .header.menu-open .menu {
        top: 80px;
        left: 24px;
        right: 24px;
        border-radius: 14px;
      }

      .header.menu-open .nav-actions {
        display: none;
      }

      .home-hero {
        padding-top: 12px;
      }

      .home-hero-media {
        min-height: 560px;
      }

      .home-hero-overlay {
        left: 56px;
        bottom: 78px;
      }

      .home-hero h1 {
        font-size: 78px;
      }

      .resources-grid {
        max-width: 780px;
        gap: 52px 24px;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      .nav {
        height: 60px;
        padding: 0 8px;
        gap: 8px;
        border-radius: 14px;
      }

      .nav > a:first-child {
        min-width: 126px;
        padding: 0 8px;
        border-radius: 10px;
      }

      .brand-logo {
        height: 40px;
      }

      .site-switcher {
        gap: 2px;
      }

      .site-pill {
        padding: 1px;
      }

      .site-pill img {
        width: 32px;
        height: 32px;
      }

      .contact-icon-button {
        width: 38px;
        height: 38px;
        margin-left: 4px;
      }

      .contact-icon-button svg {
        width: 19px;
        height: 19px;
      }

      .mobile-menu {
        width: 38px;
        height: 38px;
        font-size: 19px;
      }

      .header.menu-open .menu {
        top: 72px;
        left: 14px;
        right: 14px;
      }

      .home-hero-media {
        min-height: 520px;
        border-radius: 14px;
      }

      .home-hero-media::after {
        background:
          linear-gradient(180deg, rgba(3, 17, 15, 0.18) 0%, rgba(3, 17, 15, 0.84) 74%),
          linear-gradient(180deg, rgba(3, 17, 15, 0.08), rgba(3, 17, 15, 0.12));
      }

      .home-hero-image {
        object-position: 62% center;
      }

      .home-hero-overlay {
        left: 24px;
        right: 24px;
        bottom: 42px;
      }

      .home-hero h1 {
        max-width: 330px;
        font-size: 58px;
      }

      .home-hero p:not(.home-hero-kicker) {
        font-size: 17px;
      }

      .btn-primary {
        min-height: 50px;
        padding: 0 28px;
      }

      .resources-section {
        padding-top: 48px;
      }

      .resources-grid {
        grid-template-columns: 1fr;
        max-width: 430px;
        gap: 52px;
      }

      .section-label {
        max-width: calc(100% - 20px);
        font-size: 14px;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    }

    @media (max-width: 480px) {
      .nav {
        gap: 6px;
      }

      .nav > a:first-child {
        min-width: 112px;
        padding: 0 6px;
      }

      .brand-logo {
        height: 37px;
      }

      .site-pill img {
        width: 30px;
        height: 30px;
      }

      .contact-icon-button,
      .mobile-menu {
        width: 36px;
        height: 36px;
      }

      .home-hero h1 {
        font-size: 48px;
      }

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

    @media (max-width: 360px) {
      .nav {
        padding: 0 6px;
        gap: 4px;
      }

      .nav > a:first-child {
        min-width: 96px;
        padding: 0 4px;
      }

      .brand-logo {
        height: 32px;
      }

      .site-switcher {
        gap: 1px;
      }

      .site-pill {
        padding: 0;
      }

      .site-pill img {
        width: 28px;
        height: 28px;
      }

      .contact-icon-button {
        width: 32px;
        height: 32px;
        margin-left: 2px;
      }

      .contact-icon-button svg {
        width: 17px;
        height: 17px;
      }

      .mobile-menu {
        width: 32px;
        height: 32px;
        font-size: 17px;
      }
    }
