/*
 * Styles de la page d'accueil (/).
 * Extraits des deux blocs <style> de l'ancien index.html, concaténés sans
 * modification. La home est désormais rendue par app/page.tsx (JSX).
 */

:root {
      --white: #fff;
      --gray-btn: #333;
      --radius: 30px;
      --green: #00c100;
      --green-rgb: 0, 193, 0;
      --light-green: #4bde5a;
      --dark-purple: #0a0014;
      --black: #000;
    }

    @font-face {
      font-family: "Roboto Variable";
      src: url("/assets/font/Roboto-VariableFont_wdth,wght-subset.woff2") format("woff2"),
        url("/assets/font/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
      font-weight: 100 900;
      font-stretch: 75% 100%;
      font-display: swap;
    }

    @font-face {
      font-family: "Trivia Sans Book";
      src: url("/assets/font/TriviaSansBook-subset.woff2") format("woff2"),
        url("/assets/font/TriviaSansBook.ttf") format("truetype");
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "The Glorious";
      src: url("/assets/font/TheGlorious-Regular.woff2") format("woff2"),
        url("/assets/font/TheGlorious-Regular.otf") format("opentype"),
        local("The Glorious"), local("TheGlorious");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    html {
      overflow-x: hidden;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      height: 100%;
      background-color: var(--black);
      font-family: "Trivia Sans Book", serif;
      scroll-behavior: smooth;
    }

    .site-navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 137px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
      z-index: 1500;
      pointer-events: none;
    }

    .navbar-brand {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(227.615px, 82vw);
      min-height: 35px;
      text-decoration: none;
      pointer-events: auto;
    }

    .navbar-logo {
      display: block;
      height: auto;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .navbar-logo-default {
      width: min(113.113px, 60vw);
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .navbar-logo-scrolled {
      position: absolute;
      width: min(227.615px, 82vw);
      opacity: 0;
      transform: translate(0.38px, -7.63px) scale(0.9567, 0.9583);
    }

    .site-navbar.is-scrolled .navbar-logo-default {
      opacity: 0;
      transform: translateY(0) scale(1);
    }

    .site-navbar.is-scrolled .navbar-logo-scrolled {
      opacity: 1;
      transform: translate(0.38px, 0.37px) scale(0.9966, 0.9983);
    }

    .navbar-contact-btn {
      position: absolute;
      right: 32px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: auto;
      padding: 8px 20px;
      border: 1.5px solid var(--green);
      border-radius: var(--radius);
      background: transparent;
      color: var(--green);
      font-family: "Trivia Sans Book", serif;
      font-size: 14px;
      letter-spacing: 0.04em;
      text-decoration: none;
      opacity: 0;
      pointer-events: none;
      transition: background 0.2s ease, color 0.2s ease, opacity 0.35s ease;
    }

    .site-navbar.is-scrolled .navbar-contact-btn {
      opacity: 1;
      pointer-events: auto;
    }

    .navbar-contact-btn:hover {
      background: var(--green);
      color: #000;
    }

    @media (pointer: fine) and (hover: hover) {

      html.has-custom-cursor,
      html.has-custom-cursor body {
        cursor: none !important;
      }

      html.has-custom-cursor *,
      html.has-custom-cursor *::before,
      html.has-custom-cursor *::after {
        cursor: none !important;
      }

      html.has-custom-cursor *::-webkit-scrollbar,
      html.has-custom-cursor *::-webkit-scrollbar-track,
      html.has-custom-cursor *::-webkit-scrollbar-thumb,
      html.has-custom-cursor *::-webkit-scrollbar-corner,
      html.has-custom-cursor *::-webkit-resizer {
        cursor: none !important;
      }

      html.has-custom-cursor .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--white);
        pointer-events: none;
        z-index: 999999;
        opacity: 0;
        transform: translate(-50%, -50%);
        will-change: top, left, width, height, background, box-shadow;
        transition:
          background 140ms ease,
          width 140ms ease,
          height 140ms ease,
          box-shadow 220ms ease,
          opacity 180ms ease;
      }

      html.has-custom-cursor .cursor-dot.is-hover {
        background: var(--green);
        width: 10px;
        height: 10px;
      }

      html.has-custom-cursor .cursor-dot.pulse {
        animation: cursor-vibe 420ms ease-out;
      }

      @keyframes cursor-vibe {
        0% {
          transform: translate(-50%, -50%) scale(0.85);
          box-shadow:
            0 0 0 0 rgba(var(--green-rgb), 0),
            0 0 0 0 rgba(var(--green-rgb), 0);
        }

        35% {
          transform: translate(-50%, -50%) scale(1.7);
          box-shadow:
            0 0 0 10px rgba(var(--green-rgb), 0.18),
            0 0 18px 6px rgba(var(--green-rgb), 0.35);
        }

        100% {
          transform: translate(-50%, -50%) scale(1);
          box-shadow:
            0 0 0 0 rgba(var(--green-rgb), 0),
            0 0 0 0 rgba(var(--green-rgb), 0);
        }
      }
    }

    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #121212;
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, var(--green), var(--light-green));
      border-radius: 10px;
      border: 2px solid #121212;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(45deg, var(--green), var(--light-green));
    }

    .bottom-text {
      position: absolute;
      bottom: 14%;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 40px);
      color: var(--white);
      font-size: 1.01rem;
      font-family: "Trivia Sans Book", serif;
      text-align: center;
      line-height: 1.2;
      margin: 0;
    }

    .head {
      height: 100%;
      min-height: 100svh;
      position: relative;
    }

    .head .hero-logo-container {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      min-height: 100svh;
      z-index: 0;
      isolation: isolate;
    }

    .logo {
      display: block;
      width: 240px;
      height: auto;
      margin: 0 auto;
      z-index: 1;
    }

    .cta-btn {
      display: inline-block;
      width: 260px;
      margin-top: 60px;
      padding: 19px 0;
      font-size: 1rem;
      color: var(--white);
      background-color: var(--gray-btn);
      border: 1px solid var(--white);
      border-radius: var(--radius);
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      z-index: 2;
    }

    .qui-sommes-nous-section {
      text-align: center;
      padding: 300px 20px 50px;
      background-color: var(--black);
      color: var(--white);
      position: relative;
    }

    .qui-sommes-nous-titre {
      color: var(--white);
      font-size: 1.8rem;
      font-family: "Roboto Variable", serif;
      font-weight: 480;
      line-height: 1.15;
      text-transform: uppercase;
      margin: 0 0 8px;
    }

    .qui-sommes-nous-sous-titre {
      color: var(--white);
      font-size: 1.1rem;
      font-family: "Trivia Sans Book", serif;
      font-weight: 100;
      line-height: 1.5;
      text-transform: uppercase;
      margin: 0 0 40px;
    }

    .equipe-container {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .membre-section {
      display: grid;
      grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
      align-items: center;
      gap: clamp(28px, 6vw, 86px);
      width: 100%;
      padding: clamp(34px, 5vw, 58px) 0;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      text-align: left;
    }

    .membre-section:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .membre-profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .membre-photo-container,
    .membre-photo-container picture {
      display: block;
    }

    .membre-photo {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--green);
    }

    .membre-socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .membre-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      color: var(--green);
      opacity: 0.95;
    }

    .membre-social-link svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .membre-value {
      max-width: 690px;
      min-width: 0;
    }

    .membre-name {
      font-family: "The Glorious", "Roboto Variable", serif;
      font-size: clamp(2rem, 3.4vw, 3.2rem);
      color: var(--white);
      margin: 0;
      font-weight: 500;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: 0.01em;
    }

    .membre-point {
      color: var(--green);
    }

    .membre-role {
      font-family: "Trivia Sans Book", serif;
      font-size: clamp(0.92rem, 1.25vw, 1.2rem);
      color: var(--white);
      margin: 8px 0 22px 0;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .membre-pain {
      font-family: "Roboto Variable", serif;
      font-size: clamp(1.2rem, 2.15vw, 2rem);
      font-weight: 560;
      line-height: 1.12;
      color: var(--white);
      text-transform: uppercase;
      margin: 0 0 12px;
    }

    .membre-description {
      font-family: "Trivia Sans Book", serif;
      font-size: clamp(0.88rem, 1.12vw, 1.05rem);
      color: var(--white);
      line-height: 1.45;
      margin: 0;
      text-transform: uppercase;
    }

    .membre-project-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 178px;
      min-height: 42px;
      padding: 0 18px;
      border: 1px solid var(--green);
      border-radius: var(--radius);
      color: var(--white);
      background: var(--black);
      font-family: "Trivia Sans Book", serif;
      font-size: 0.82rem;
      line-height: 1;
      text-decoration: none;
      text-transform: none;
      margin-top: 22px;
    }

    .desktop-view {
      display: block;
    }

    .mobile-view {
      display: none;
    }

    .idv {
      color: white;
      font-family: "Roboto Variable", serif;
      margin: 12% 16%;
      display: flex;
      flex-direction: row;
      padding: 50px;
      gap: 50px;
    }

    .idv p {
      font-family: "Trivia Sans Book", serif;
      max-width: 600px;
    }

    .sidebar-content {
      display: none;
    }

    .sidebar-content.active {
      display: block;
    }

    .gallery-section {
      display: none;
      scroll-margin-top: 100px;
    }

    .gallery-section.active {
      display: grid;
    }

    .content-wrapper {
      display: flex;
      flex-direction: column;
      gap: 50px;
      flex: 1;
    }

    .sidebar {
      width: 45%;
    }

    button {
      display: inline-block;
      width: 165px;
      margin-top: 19px;
      padding: 12px 3px;
      font-size: 0.8rem;
      color: white;
      background-color: var(--black);
      border: 1px solid var(--green);
      border-radius: var(--radius);
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      z-index: 2;
      transition: .4s;
      font-family: "Trivia Sans Book", serif;
    }

    button:hover {
      border-color: var(--light-green);
    }

    .idv .fix {
      position: sticky;
      top: 30%;
      align-self: flex-start;
    }

    .titre {
      font-size: 2.5rem;
      font-weight: 600;
      font-stretch: 1%;
      display: block;
      cursor: pointer;
      transition: color 0.3s;
      margin-bottom: 1rem;
      font-family: "Roboto Variable", serif;
    }

    .titre:hover {
      color: var(--green);
    }

    .titre.active::after {
      color: var(--green);
    }

    .titre.active::after:hover {
      color: var(--black);
    }

    .titre::after {
      content: ".";
      color: white;
      font-weight: bold;
      margin-left: -1px;
    }

    .section-description {
      display: none;
      margin-bottom: 2rem;
    }

    .section-description.active {
      display: block;
      animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .gallery {
      width: 100%;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 2rem;
      row-gap: 2rem;
      min-height: 500px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 2rem;
      row-gap: 2rem;
    }

    .gallery .item:nth-child(2) {
      margin-top: 5rem;
    }

    .gallery .item:nth-child(4) {
      margin-top: 5rem;
    }

    .pwin {
      font-weight: 700;
      white-space: nowrap;
    }

    .pwin::after {
      content: ".";
      color: var(--green);
    }

    .tagline {
      display: block;
      font-size: 0.75rem;
      margin-top: 0.2rem;
    }

    .item {
      padding: 15px 0;
    }

    .item span {
      display: block;
      font-size: 1.8rem;
      font-weight: 600;
      color: white;
      line-height: 1.2;
      font-family: "Roboto Variable", serif;
    }

    .item small {
      display: block;
      font-size: 0.9rem;
      font-weight: 300;
      color: #aaaaaa;
      margin-top: 4px;
      font-family: "Trivia Sans Book", serif;
    }

    .image.double-layer {
      position: relative;
      overflow: hidden;
    }

    .image.double-layer picture {
      display: block;
      width: 100%;
      height: 100%;
    }

    .image.double-layer img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      border-radius: 40px;
      transition: transform 0.4s ease;
    }

    .image.double-layer .bg-image {
      z-index: 1;
      filter: brightness(0.8);
    }

    .image.double-layer .fg-image {
      z-index: 2;
    }

    .image.double-layer:hover .fg-image {
      transform: scale(1.08);
    }

    .image {
      background: #333;
      border-radius: 40px;
      width: 238px;
      height: 356px;
      margin-bottom: 4px;
      margin-left: 6px;
      border: 1px solid #444;
      transition: .4s;
    }

    .image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 40px;
      display: block;
    }

    .image:hover {
      border-color: var(--green);
    }

    .scroll-indicator {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 100;
    }

    .scroll-dot {
      position: relative;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .scroll-dot::after {
      content: "";
      position: absolute;
      inset: -8px -12px;
    }

    .scroll-dot::before {
      content: attr(data-label);
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) translateX(6px);
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(0, 0, 0, 0.86);
      color: var(--white);
      font-family: "Trivia Sans Book", serif;
      font-size: 0.78rem;
      line-height: 1;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .scroll-dot:hover {
      background-color: rgba(0, 193, 0, 0.5);
    }

    .scroll-dot:hover::before {
      opacity: 1;
      visibility: visible;
      transform: translateY(-50%) translateX(0);
    }

    .scroll-dot.active {
      background-color: var(--green);
      transform: scale(1.3);
    }

    @media (max-width: 900px) {
      .navbar-logo-default {
        width: min(94px, 60vw);
      }

      .navbar-logo-scrolled {
        width: min(180px, 80vw);
      }

      .navbar-brand {
        transition: transform 0.35s ease;
      }

      .site-navbar.is-scrolled .navbar-brand {
        transform: translateX(calc(-45vw + 94px));
      }

      .navbar-contact-btn {
        right: 20px;
      }

      .desktop-view {
        display: none;
      }

      .mobile-view {
        display: block;
        padding: 20px;
        margin: 30px 0;
      }

      .desktop-only {
        display: none;
      }

      .mobile-section {
        background-color: var(--dark-purple);
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 30px;
      }

      .mobile-section .titre {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-family: "Roboto Variable", serif;
      }

      .mobile-section .titre::after {
        color: var(--green);
      }

      .mobile-section p {
        margin-bottom: 25px;
        line-height: 1.5;
        font-size: 0.95rem;
        color: white;
        font-family: "Trivia Sans Book", serif;
      }

      .mobile-section .gallery {
        display: flex;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        min-height: auto;
        margin-bottom: 20px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        padding-bottom: 1rem;
      }

      .mobile-section .item {
        padding: 0;
        scroll-snap-align: center;
      }

      .mobile-section .image {
        width: 10rem;
        height: auto;
        aspect-ratio: 2 / 3;
        margin-left: 0;
      }

      .mobile-section .item span {
        font-size: 1.4rem;
        font-family: "Roboto Variable", serif;
      }

      .mobile-section .item small {
        font-size: 0.8rem;
        font-family: "Trivia Sans Book", serif;
      }

      .mobile-section button {
        width: 165px;
        margin-top: 19px;
        padding: 12px 3px;
        font-size: 0.8rem;
        display: inline-block;
      }

      .mobile-section .gallery .item:nth-child(2),
      .mobile-section .gallery .item:nth-child(4) {
        margin-top: 0;
      }

      .qui-sommes-nous-titre {
        font-size: 2rem;
      }

      .qui-sommes-nous-sous-titre {
        font-size: 1.4rem;
        margin-bottom: 28px;
      }

      .landing-cta {
        padding: 64px 20px 12px;
      }

      .landing-cta .landing-cta-title {
        font-size: 2rem;
      }

      .landing-cta .landing-cta-subtitle {
        font-size: 1.4rem;
      }

      .landing-cta-gap {
        height: 120px;
      }

      .landing-cta .landing-cta-subtitle-secondary {
        margin-bottom: 16px;
      }

      .landing-cta-badge {
        width: min(176px, 62vw);
        --badge-size: 176px;
      }

      .landing-cta-badge-text {
        font-size: 19px;
      }

      .membre-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 34px 0;
      }

      .membre-name {
        font-size: 1.75rem;
        line-height: 1;
      }

      .membre-photo {
        width: 132px;
        height: 132px;
      }

      .membre-role {
        font-size: 0.9rem;
        margin: 6px 0 14px;
      }

      .membre-pain {
        font-size: 1.05rem;
        line-height: 1.18;
        margin-bottom: 10px;
      }

      .membre-description {
        font-size: 0.84rem;
        line-height: 1.4;
      }

      .membre-socials {
        gap: 14px;
      }

      .membre-social-link {
        width: 30px;
        height: 30px;
      }

      .membre-social-link svg {
        width: 21px;
        height: 21px;
      }

      .membre-project-link {
        min-width: 165px;
        min-height: 40px;
        font-size: 0.8rem;
      }
    }

    .footer {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      margin-top: 20px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      padding: 40px 20px;
    }

    .footer-linkedin {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      margin: 4px auto 10px;
      color: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.02);
      transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    }

    .footer-linkedin:hover {
      color: var(--green);
      border-color: rgba(var(--green-rgb), 0.55);
      background: rgba(var(--green-rgb), 0.08);
    }

    .footer-linkedin svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: none;
      stroke: currentColor;
    }

    a {
      text-decoration: none;
      color: #0daf0d;
    }

    .sr-only {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important
    }

    img {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-user-drag: none
    }

/* ── bloc suivant ── */

.footer-dropdown {
      position: relative;
      display: block;
      width: max-content;
      margin: 0 0 12px auto;
      text-align: left;
    }

    .footer-dropdown summary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      list-style: none;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.6);
      user-select: none;
      line-height: 1;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 999px;
      padding: 8px 12px;
      background: rgba(255, 255, 255, 0.02);
    }

    .footer-dropdown summary::-webkit-details-marker {
      display: none;
    }

    .footer-dropdown-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .footer-dropdown-label {
      display: inline-flex;
      align-items: center;
      line-height: 1;
    }

    .footer-dropdown-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 10px);
      margin: 0;
      padding: 10px 14px;
      list-style: none;
      border: 1px solid rgba(var(--green-rgb), 0.5);
      border-radius: 14px;
      background: rgba(9, 9, 9, 0.95);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
      min-width: 260px;
      z-index: 20;
    }

    .footer-dropdown-menu li+li {
      margin-top: 8px;
      padding-top: 8px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-dropdown-menu a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.9rem;
    }

    .footer-dropdown-menu a:hover {
      color: var(--green);
      text-decoration: none;
    }

    .landing-cta {
      max-width: 1320px;
      margin: 0 auto;
      padding: 90px 20px 20px;
      text-align: center;
      background-color: var(--black);
    }

    .landing-cta-inner {
      max-width: 980px;
      margin: 0 auto;
      padding: clamp(8px, 1.5vw, 18px) 0 clamp(34px, 5vw, 64px);
    }

    .landing-cta .landing-cta-title {
      color: var(--white);
      font-size: 1.8rem;
      font-family: "Roboto Variable", serif;
      font-weight: 480;
      line-height: 1.15;
      text-transform: uppercase;
      margin: 0 0 8px;
    }

    #qui-derriere-ecran-title,
    #landing-date-title {
      scroll-margin-top: 190px;
    }

    .landing-cta .landing-cta-subtitle {
      color: var(--white);
      font-size: 1.1rem;
      font-family: "Trivia Sans Book", serif;
      font-weight: 100;
      line-height: 1.5;
      text-transform: uppercase;
      margin: 0;
    }

    .landing-cta-gap {
      height: clamp(1030px, 18vw, 240px);
    }

    .landing-cta .landing-cta-subtitle-secondary {
      margin: 0 0 22px;
    }

    .landing-cta-badge {
      width: min(290px, 64vw);
      margin: clamp(16%, 1.6vw, 24px) auto 0;
      position: relative;
      display: block;
      cursor: pointer;
      --badge-center-x: 50vw;
      --badge-center-y: 50vh;
      --badge-size: 290px;
      z-index: 2902;
    }

    .landing-cta-badge:focus-visible {
      outline: 2px solid rgba(255, 255, 255, 0.8);
      outline-offset: 8px;
      border-radius: 999px;
    }

    .landing-cta-burst-layer {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 2900;
    }

    .landing-cta-burst {
      position: fixed;
      left: var(--badge-center-x);
      top: var(--badge-center-y);
      width: var(--badge-size);
      height: var(--badge-size);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0.96);
      opacity: 0;
      pointer-events: none;
      will-change: transform, opacity;
    }

    .landing-cta-burst-a {
      background: rgba(30, 174, 44, 0.95);
      z-index: 2898;
    }

    .landing-cta-burst-b {
      background: rgba(92, 214, 78, 0.84);
      z-index: 2899;
    }

    .landing-cta-burst-c {
      background: rgba(0, 148, 63, 0.76);
      z-index: 2900;
    }

    .landing-cta-badge:hover .landing-cta-burst-a,
    .landing-cta-badge:focus-visible .landing-cta-burst-a {
      animation: cta-burst-a 1120ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .landing-cta-badge:hover .landing-cta-burst-b,
    .landing-cta-badge:focus-visible .landing-cta-burst-b {
      animation: cta-burst-b 1250ms cubic-bezier(0.2, 1, 0.34, 1) 35ms forwards;
    }

    .landing-cta-badge:hover .landing-cta-burst-c,
    .landing-cta-badge:focus-visible .landing-cta-burst-c {
      animation: cta-burst-c 1380ms cubic-bezier(0.18, 1, 0.32, 1) 85ms forwards;
    }

    .landing-cta-badge:hover svg,
    .landing-cta-badge:focus-visible svg {
      animation: cta-badge-bounce 750ms cubic-bezier(0.23, 1.35, 0.38, 1);
    }

    .landing-cta-badge:hover .landing-cta-badge-text,
    .landing-cta-badge:focus-visible .landing-cta-badge-text {
      animation: cta-text-bounce 760ms cubic-bezier(0.23, 1.3, 0.36, 1);
    }

    .landing-cta-badge svg {
      width: 100%;
      height: auto;
      display: block;
      position: relative;
      z-index: 2902;
    }

    .landing-cta-badge-text {
      fill: #ffffff;
      font-family: "Roboto Variable", serif;
      font-size: 23px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    @keyframes cta-burst-a {
      0% {
        opacity: 0.96;
        transform: translate(-50%, -50%) scale(1);
      }

      28% {
        opacity: 0.96;
        transform: translate(-50%, -50%) scale(1.2);
      }

      52% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(14.8);
      }

      70% {
        transform: translate(-50%, -50%) scale(17.8);
      }

      100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(16.6);
      }
    }

    @keyframes cta-burst-b {
      0% {
        opacity: 0.78;
        transform: translate(-50%, -50%) scale(1);
      }

      30% {
        opacity: 0.84;
        transform: translate(-50%, -50%) scale(1.16);
      }

      58% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(15.8);
      }

      76% {
        transform: translate(-50%, -50%) scale(18.7);
      }

      100% {
        opacity: 0.88;
        transform: translate(-50%, -50%) scale(17.2);
      }
    }

    @keyframes cta-burst-c {
      0% {
        opacity: 0.64;
        transform: translate(-50%, -50%) scale(1);
      }

      32% {
        opacity: 0.72;
        transform: translate(-50%, -50%) scale(1.14);
      }

      60% {
        opacity: 0.78;
        transform: translate(-50%, -50%) scale(16.7);
      }

      80% {
        transform: translate(-50%, -50%) scale(19.4);
      }

      100% {
        opacity: 0.76;
        transform: translate(-50%, -50%) scale(17.8);
      }
    }

    @keyframes cta-badge-bounce {
      0% {
        transform: scale(1);
      }

      26% {
        transform: scale(0.88);
      }

      58% {
        transform: scale(1.07);
      }

      100% {
        transform: scale(1);
      }
    }

    @keyframes cta-text-bounce {
      0% {
        transform: translateY(0);
      }

      30% {
        transform: translateY(-5px);
      }

      62% {
        transform: translateY(2px);
      }

      100% {
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .landing-cta-burst,
      .landing-cta-badge svg,
      .landing-cta-badge-text {
        animation: none !important;
      }

      .landing-cta-badge:hover .landing-cta-burst,
      .landing-cta-badge:focus-visible .landing-cta-burst {
        opacity: 1;
        transform: translate(-50%, -50%) scale(16);
      }
    }
