@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Outfit:wght@100..900&display=swap');
:root {
    --bg: #0A0613;
    --bg2: #120B26;
    --bg3: #1A1136;
    --accent: #4100FF;
    /* couleur principale R65 V0 B255 */
    --accent-light: #7C5CFF;
    /* variante claire lisible sur fond sombre */
    --mint: #00FFB7;
    /* couleur secondaire R0 V255 B183 */
    --cream: #F3FFCD;
    /* couleur tertiaire R243 V255 B205 */
    --white: #F0F0F5;
    --muted: #6E6A82;
    --border: rgba(240, 240, 245, 0.08);
    --border-hover: rgba(0, 255, 183, 0.35);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.65;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .35s, border-color .35s;
  }

  nav.scrolled {
    background: rgba(7, 7, 15, 0.88);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .logo-img {
    height: 30px;
    width: auto;
    display: block;
  }

  .nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: .6rem 1.5rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, transform .2s;
  }

  .nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: clamp(5rem, 14vh, 9rem);
    overflow: hidden;
    text-align: center;
  }

  /* Hero background video */
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
  }

  /* floating sport pills */
  .tag {
    position: absolute;
    bottom: -60px;
    background: rgba(240, 240, 245, .05);
    border: 1px solid rgba(240, 240, 245, .11);
    border-radius: 50px;
    padding: .35rem .9rem;
    font-family: 'DM Mono', monospace;
    font-size: .78rem;
    color: var(--muted);
    pointer-events: none;
    white-space: nowrap;
    -webkit-animation: rise linear infinite;
            animation: rise linear infinite;
  }

  @-webkit-keyframes rise {
    0% {
      transform: translateY(0) rotate(var(--r));
      opacity: 0;
    }

    8% {
      opacity: 1;
    }

    92% {
      opacity: .7;
    }

    100% {
      transform: translateY(-110vh) rotate(var(--r));
      opacity: 0;
    }
  }

  @keyframes rise {
    0% {
      transform: translateY(0) rotate(var(--r));
      opacity: 0;
    }

    8% {
      opacity: 1;
    }

    92% {
      opacity: .7;
    }

    100% {
      transform: translateY(-110vh) rotate(var(--r));
      opacity: 0;
    }
  }

  .hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
      linear-gradient(to bottom, rgba(10, 6, 19, .55) 0%, rgba(10, 6, 19, .85) 100%),
      radial-gradient(ellipse 70% 50% at 50% 20%, rgba(65, 0, 255, .35) 0%, transparent 65%),
      radial-gradient(ellipse 60% 45% at 80% 75%, rgba(0, 255, 183, .12) 0%, transparent 60%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 0 2rem;
  }

  .scroll-down {
    z-index: 2;
  }

  .hero-over {
    font-size: clamp(.85rem, 2vw, 1.05rem);
    color: var(--cream);
    font-weight: 500;
    letter-spacing: .02em;
    margin-bottom: .9rem;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
  }

  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(65, 0, 255, .1);
    border: 1px solid rgba(65, 0, 255, .28);
    border-radius: 50px;
    padding: .4rem 1.2rem;
    font-family: 'DM Mono', monospace;
    font-size: .75rem;
    color: var(--mint);
    margin-bottom: 2rem;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    -webkit-animation: blink 2s ease-in-out infinite;
            animation: blink 2s ease-in-out infinite;
  }

  @-webkit-keyframes blink {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: .4;
      transform: scale(.7);
    }
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: .4;
      transform: scale(.7);
    }
  }

  h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4.5rem, 13vw, 10.5rem);
    line-height: .88;
    letter-spacing: .025em;
    margin-bottom: 1.6rem;
  }

  h1 em {
    font-style: normal;
    color: var(--mint);
    display: block;
  }

  .hero-sub {
    font-size: clamp(1rem, 2.3vw, 1.2rem);
    color: rgba(240, 240, 245, .68);
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
  }

  /* inline signup */
  .signup-row {
    display: flex;
    gap: .7rem;
    max-width: 480px;
    margin: 0 auto 1.3rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .signup-row input {
    flex: 1;
    min-width: 210px;
    padding: .85rem 1.3rem;
    background: rgba(240, 240, 245, .06);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border .2s;
  }

  .signup-row input::-webkit-input-placeholder {
    color: var(--muted);
  }

  .signup-row input::-moz-placeholder {
    color: var(--muted);
  }

  .signup-row input:-ms-input-placeholder {
    color: var(--muted);
  }

  .signup-row input::-ms-input-placeholder {
    color: var(--muted);
  }

  .signup-row input::placeholder {
    color: var(--muted);
  }

  .signup-row input:focus {
    border-color: rgba(65, 0, 255, .4);
  }

  .btn {
    background: var(--accent);
    color: var(--white);
    padding: .85rem 1.9rem;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .2s;
  }

  .btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
  }

  .hero-note {
    font-family: 'DM Mono', monospace;
    font-size: .78rem;
    color: var(--muted);
  }

  /* scroll arrow */
  .scroll-down {
    position: relative;
    margin-top: 1.8rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    letter-spacing: .12em;
    -webkit-animation: bob 2.2s ease-in-out infinite;
            animation: bob 2.2s ease-in-out infinite;
  }

  .scroll-down::after {
    content: '';
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--muted), transparent);
  }

  @-webkit-keyframes bob {

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

    50% {
      transform: translateY(7px);
    }
  }

  @keyframes bob {

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

    50% {
      transform: translateY(7px);
    }
  }

  /* ── SECTIONS ── */
  section {
    padding: 6rem 2.5rem;
  }

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

  .label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: .75rem;
    color: var(--mint);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: .02em;
    margin-bottom: 3rem;
  }

  /* ── STATEMENT ── */
  #statement {
    background: var(--bg2);
    text-align: center;
    padding: 7rem 2.5rem;
  }

  .big-stmt {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    line-height: 1.08;
    max-width: 900px;
    margin: 0 auto 4.5rem;
    letter-spacing: .025em;
  }

  .big-stmt span {
    color: var(--mint);
  }

  .stmt-sub {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(240, 240, 245, .6);
    font-weight: 300;
    margin-top: 1.5rem;
    letter-spacing: .01em;
  }

  .stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .stat-n {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--mint);
    display: block;
    line-height: 1;
  }

  .stat-l {
    font-family: 'DM Mono', monospace;
    font-size: .78rem;
    color: var(--muted);
    margin-top: .4rem;
    letter-spacing: .06em;
  }

  /* ── FOR WHO ── */
  #for-who {
    background: var(--bg);
  }

  .duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  @media(max-width:680px) {
    .duo {
      grid-template-columns: 1fr;
    }
  }

  .aud-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
  }

  .aud-card:hover {
    border-color: var(--border-hover);
  }

  .aud-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
  }

  .aud-card:hover::before {
    transform: scaleX(1);
  }

  .aud-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 1.2rem;
  }

  .aud-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: .05em;
    margin-bottom: .7rem;
  }

  .aud-desc {
    font-size: .92rem;
    color: rgba(240, 240, 245, .6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
  }

  .perks li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .88rem;
    color: rgba(240, 240, 245, .78);
  }

  .perks li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── HOW ── */
  #how {
    background: var(--bg2);
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
  }

  @media(max-width:680px) {
    .steps {
      grid-template-columns: 1fr;
    }
  }

  .step {
    background: var(--bg);
    border: 1px solid rgba(240, 240, 245, .12);
    border-left: 3px solid var(--mint);
    border-radius: 20px;
    padding: 2rem;
  }

  .step-n {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: rgba(0, 255, 183, .35);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
  }

  .step-t {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--white);
  }

  .step-d {
    font-size: .92rem;
    color: rgba(240, 240, 245, .75);
    line-height: 1.7;
  }

  /* ── EXPERIENCES ── */
  #xp {
    background: var(--bg);
  }

  .xp-sub {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    color: rgba(240, 240, 245, .5);
    font-style: italic;
    margin-bottom: .6rem;
    font-weight: 300;
  }

  .xp-note {
    font-size: .88rem;
    color: rgba(240, 240, 245, .4);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .xp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }

  /* ── XP CARDS FLIP ── */
  .xp-card {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    overflow: visible;
    perspective: 1000px;
    cursor: pointer;
    height: 220px;
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .xp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(65, 0, 255, .22), 0 0 0 1px rgba(0, 255, 183, .18);
  }

  .xp-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
    border-radius: 16px;
    overflow: visible;
  }

  .xp-card:hover .xp-card-inner {
    transform: rotateY(180deg);
  }

  .xp-card-front,
  .xp-card-back {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(240, 240, 245, .1);
  }

  .xp-card-back {
    transform: rotateY(180deg);
    background: var(--bg3);
    border-color: rgba(0, 255, 183, .3);
  }

  /* Photo layer (both faces) */
  .card-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  .card-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 6, 19, .5), rgba(10, 6, 19, .82));
  }

  /* Front content */
  .xp-front-content {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 1;
  }

  .xp-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: .5rem;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  }

  .xp-card:hover .xp-icon {
    transform: scale(1.35) rotate(5deg);
  }

  .xp-sport-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
  }

  /* Back content */
  .xp-back-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    overflow: hidden;
  }

  .badges-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .35rem;
    margin-bottom: .6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  .xp-icon-back {
    font-size: 1.5rem;
    margin-bottom: .4rem;
    flex-shrink: 0;
  }

  .xp-title {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .35rem;
    color: var(--white);
  }

  .xp-by {
    font-size: .76rem;
    color: var(--mint);
    font-family: 'DM Mono', monospace;
  }

  .xp-bg {
    display: none;
  }

  .soon {
    display: inline-block;
    background: rgba(0, 255, 183, .1);
    border: 1px solid rgba(0, 255, 183, .3);
    color: var(--mint);
    font-family: 'DM Mono', monospace;
    font-size: .66rem;
    padding: .18rem .38rem;
    border-radius: 50px;
    letter-spacing: .02em;
    flex-shrink: 0;
  }

  .mode-badge {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: .66rem;
    padding: .18rem .38rem;
    border-radius: 50px;
    letter-spacing: .02em;
    flex-shrink: 0;
  }

  .mode-badge.distance {
    background: rgba(120, 80, 255, .15);
    border: 1px solid rgba(120, 80, 255, .4);
    color: #b09fff;
  }

  .mode-badge.presentiel {
    background: rgba(255, 160, 50, .12);
    border: 1px solid rgba(255, 160, 50, .35);
    color: #ffb84d;
  }

  /* ── WAITLIST ── */
  #waitlist {
    background: var(--bg2);
    text-align: center;
  }

  .wl-inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .wl-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(65, 0, 255, .07);
    border: 1px solid rgba(65, 0, 255, .2);
    border-radius: 50px;
    padding: .4rem 1.2rem;
    font-family: 'DM Mono', monospace;
    font-size: .74rem;
    color: var(--mint);
    margin-bottom: 2rem;
    letter-spacing: .06em;
  }

  .wl-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(240, 240, 245, .62);
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }

  /* role toggle */
  .roles {
    display: flex;
    gap: .7rem;
    justify-content: center;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
  }

  .role {
    padding: .6rem 1.4rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-size: .88rem;
    cursor: pointer;
    transition: all .2s;
  }

  .role.on {
    background: rgba(65, 0, 255, .11);
    border-color: rgba(65, 0, 255, .38);
    color: var(--white);
  }

  /* form */
  .wl-form {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    max-width: 400px;
    margin: 0 auto 1.3rem;
  }

  .wl-form input {
    padding: .9rem 1.35rem;
    background: rgba(240, 240, 245, .06);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border .2s;
  }

  .wl-form input:focus {
    border-color: rgba(65, 0, 255, .4);
  }

  .wl-form input::-webkit-input-placeholder {
    color: var(--muted);
  }

  .wl-form input::-moz-placeholder {
    color: var(--muted);
  }

  .wl-form input:-ms-input-placeholder {
    color: var(--muted);
  }

  .wl-form input::-ms-input-placeholder {
    color: var(--muted);
  }

  .wl-form input::placeholder {
    color: var(--muted);
  }

  .wl-form .btn {
    border-radius: 12px;
    padding: .9rem 2rem;
    font-size: 1rem;
  }

  .wl-note {
    font-family: 'DM Mono', monospace;
    font-size: .76rem;
    color: var(--muted);
  }

  /* success */
  .ok {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem;
    background: rgba(65, 0, 255, .05);
    border: 1px solid rgba(65, 0, 255, .18);
    border-radius: 20px;
  }

  .ok.show {
    display: flex;
  }

  .ok-icon {
    font-size: 2.8rem;
  }

  .ok-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: .05em;
  }

  .ok-desc {
    font-size: .9rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.65;
    max-width: 440px;
  }

  /* referral */
  .ref-rewards {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    width: 100%;
    max-width: 440px;
    margin: .4rem 0;
  }

  .ref-reward {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .8rem 1rem;
    text-align: left;
  }

  .ref-count {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--mint);
    line-height: 1;
    flex-shrink: 0;
    min-width: 24px;
  }

  .ref-text {
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    color: var(--muted);
    flex-shrink: 0;
  }

  .ref-arrow {
    color: var(--muted);
    flex-shrink: 0;
  }

  .ref-gain {
    font-size: .9rem;
    color: var(--white);
    font-weight: 500;
  }

  .ref-link-box {
    display: flex;
    gap: .5rem;
    width: 100%;
    max-width: 440px;
    margin-top: .6rem;
  }

  .ref-link-box input {
    flex: 1;
    min-width: 0;
    padding: .8rem 1rem;
    background: rgba(240, 240, 245, .06);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--mint);
    font-family: 'DM Mono', monospace;
    font-size: .82rem;
    outline: none;
  }

  .ref-link-box .btn {
    border-radius: 12px;
    padding: .8rem 1.4rem;
    font-size: .9rem;
  }

  .ref-share {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: .3rem;
  }

  .ref-share-btn {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .55rem 1.2rem;
    color: rgba(240, 240, 245, .8);
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    cursor: pointer;
    transition: all .2s;
  }

  .ref-share-btn:hover {
    border-color: rgba(65, 0, 255, .38);
    color: var(--white);
  }

  /* ── FAQ ── */
  #faq {
    background: var(--bg);
  }

  .faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  @media(max-width:680px) {
    .faq-cols {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  .faq-aud {
    font-family: 'DM Mono', monospace;
    font-size: .82rem;
    color: var(--mint);
    letter-spacing: .06em;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    text-align: left;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: .98rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .faq-ic {
    color: var(--mint);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform .3s;
    line-height: 1;
  }

  .faq-item.open .faq-ic {
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.1rem;
  }

  .faq-a p {
    font-size: .9rem;
    color: rgba(240, 240, 245, .62);
    line-height: 1.7;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 2.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  footer .logo-img {
    height: 24px;
  }

  footer p {
    font-family: 'DM Mono', monospace;
    font-size: .78rem;
    color: var(--muted);
  }

  /* ── HONEYPOT ── */
  .wl-trap {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
  }

  /* ── FADE-IN ── */
  .fi {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .fi.on {
    opacity: 1;
    transform: none;
  }