@charset "UTF-8";

    .hero {
      position: relative;
      overflow: hidden;
      background: radial-gradient(1200px 800px at 10% -10%, rgba(0, 191, 255, 0.08) 0%, transparent 60%),
        radial-gradient(900px 600px at 110% 20%, rgba(228, 0, 124, 0.08) 0%, transparent 60%),
        var(--hero-surface);
      color: #fff;
      padding: clamp(4rem, 8vw, 8rem) 1.25rem;
      isolation: isolate;
    }

    .hero .container {
      max-width: 1100px;
      margin: 0 auto;
      text-align: left;
      position: relative;
      z-index: 2;
    }

    .hero-bg .grid {
      position: absolute;
      inset: -10% -5%;
      background: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0/32px 32px,
        linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0/32px 32px;
      mask: radial-gradient(80% 60% at 50% 40%, rgba(0, 0, 0, 0.9), transparent 80%);
      pointer-events: none;
    }

    .hero-bg .mesh {
      position: absolute;
      inset: -20% -10%;
      background:
        radial-gradient(60rem 30rem at 20% 10%, rgba(0, 191, 255, 0.15), transparent 60%),
        radial-gradient(50rem 28rem at 80% 0%, rgba(228, 0, 124, 0.14), transparent 60%),
        radial-gradient(40rem 24rem at 50% 70%, rgba(29, 209, 161, 0.1), transparent 60%);
      filter: blur(40px);
    }

    .hero-bg .glow {
      position: absolute;
      width: 48rem;
      height: 48rem;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.25;
    }

    .hero-bg .glow-1 {
      top: -12rem;
      left: -12rem;
      background: radial-gradient(circle, var(--gf-primary), transparent 60%);
    }

    .hero-bg .glow-2 {
      bottom: -14rem;
      right: -10rem;
      background: radial-gradient(circle, var(--gf-accent), transparent 60%);
    }

    .hero .eyebrow {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: rgba(229, 231, 235, 0.9);
      font-size: 0.95rem;
      margin-bottom: 1.25rem;
    }

    .hero .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      color: #fff;
      backdrop-filter: blur(6px);
    }

    .hero .eyebrow .sep {
      opacity: 0.5;
    }

    .hero .title {
      font-size: clamp(2.1rem, 3.6vw + 1rem, 4.2rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin: 0 0 1rem 0;
    }

    .hero .title-line {
      display: block;
    }

    .hero .title .accent {
      background: linear-gradient(90deg, var(--gf-primary), var(--gf-accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero .lead {
      font-size: clamp(1.05rem, 1.1vw + 0.8rem, 1.3rem);
      color: #e5e7eb;
      max-width: 70ch;
      margin: 0 0 1.8rem 0;
    }

    .hero .lead .hide-sm {
      display: none;
    }

    @media (min-width: 720px) {
      .hero .lead .hide-sm {
        display: inline;
      }
    }

    .hero .cta {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-bottom: 1.4rem;
    }

    .hero .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.9rem 1.15rem;
      border-radius: calc(var(--radius) + 8px);
      text-decoration: none;
      font-weight: 600;
      border: 1px solid transparent;
      box-shadow: var(--shadow);
      transform: translateZ(0);
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.3s ease, background-position 0.4s ease;
    }

    .hero .btn:hover {
      transform: translateY(-1px);
    }

    .hero .btn:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    .hero .btn-primary {
      background: linear-gradient(90deg, var(--gf-primary), var(--gf-cta));
      color: #0b0b0c;
      border-color: rgba(255, 255, 255, 0.08);
      background-size: 200% 200%;
      background-position: 0% 50%;
    }

    .hero .btn-primary .btn-label,
    .hero .btn-primary i {
      position: relative;
      z-index: 1;
    }

    .hero .btn-primary .btn-label {
      white-space: nowrap;
    }

    .hero .btn-primary .btn-shine {
      position: absolute;
      inset: -1px;
      background: linear-gradient(115deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.32) 50%, rgba(255, 255, 255, 0) 65%);
      transform: translateX(-140%);
      transition: transform 0.5s ease, opacity 0.4s ease;
      opacity: 0.7;
      pointer-events: none;
    }

    .hero .btn-primary:hover {
      background-position: 100% 50%;
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    }

    .hero .btn-primary:hover .btn-shine {
      transform: translateX(60%);
      opacity: 1;
    }

    .hero .btn-ghost {
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.14);
    }

    .hero .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .hero .trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      color: #d1d5db;
    }

    .hero .trust .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(8px);
      font-size: 0.9rem;
    }

    .hero .trust .dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: var(--gf-success);
      box-shadow: 0 0 12px rgba(29, 209, 161, 0.6);
    }

    .hero .scroll-cue {
      margin: 2rem auto 0;
      background: transparent;
      border: none;
      cursor: pointer;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
    }

    .hero .scroll-cue:hover {
      transform: translateY(2px);
    }

    .hero .scroll-cue .chevron {
      color: #fff;
      font-size: 1rem;
      display: inline-flex;
      animation: bob 1.8s ease-in-out infinite;
    }

    @keyframes bob {
      0%,
      100% {
        transform: translateY(-1px);
      }

      50% {
        transform: translateY(4px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero .scroll-cue .chevron {
        animation: none;
      }

      .hero-bg .mesh,
      .hero-bg .glow-1,
      .hero-bg .glow-2 {
        filter: blur(40px);
      }
    }

    
  #hero-club-experts .typing-text {
    display: inline;
  }

  #hero-club-experts .typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: currentColor;
    margin-left: 0.2rem;
    animation: heroTypingCursorBlink 1s steps(2, start) infinite;
    vertical-align: baseline;
  }

  @keyframes heroTypingCursorBlink {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }